Jump to content

Ryuk_

Creator
  • Posts

    446
  • Joined

  • Last visited

Everything posted by Ryuk_

  1. In order to purge "invisible inventory" you must do a full player inventory clear Create this plugin in your server: (this one will clear the invisible inventory of the player when: players joins, and for players that are in the server) clear_inventory.cs 1- if "containerMain" capacity is higher than 25, it means the player inventory capacity is modified by creative plugin 2- all items after slot 25 will be removed 3- player "containerMain" inventory capacity will be reduced to 25. clear_inventory.cs code in case you want to copy paste: // unmodified using System; using System.Collections.Generic; using Oxide.Core; using System.Linq; namespace Oxide.Plugins { [Info("Clear Inventory", "Ryuk_", "1.0.0")] [Description("Clear player extra inventory caused by creative plugin.")] public class clear_inventory : RustPlugin { void OnPlayerConnected(BasePlayer player) { ShrinkInventory(player); } void OnServerInitialized(bool initial) { foreach (var player in BasePlayer.activePlayerList) { ShrinkInventory(player); } } private void ShrinkInventory(BasePlayer player) { if (player == null) return; var container = player.inventory.containerMain; if (container == null) return; if (container.capacity > 25) { foreach (var item in container.itemList.ToList()) { if (item.position >= 25) { item.RemoveFromContainer(); item.Remove(); } } container.capacity = 25; } } } }
  2. Changed Status from Pending to Work in Progress Changed Fixed In to Next Version
  3. Changed Status from Pending to Work in Progress Changed Fixed In to Next Version
  4. Ryuk_

    Team Building is tempormental

    Changed Status from Fixed to Work in Progress Changed Fixed In from 2.1.0 to Next Version
  5. Ryuk_

    Plugin not loading

    1- Building grade has not "keybind" to toggle it, you must toggle it manually in the menu (Mouse middle button). By default you can't set a skin, but you can select which skin you want to use to build in the menu (see image) 2- Upgrade: SHIFT + HAMMER + ATTACK (Left mouse button) Downgrade: SHIFT + HAMMER + ATTACK1 (Right mouse button) 3- No, it will not work, these 2 buttons were disabled because they caused lag. I will try to add them again in the next update.
  6. Ryuk_

    Plugin not loading

    At the moment no, i will add that for a future feature implementation
  7. Ryuk_

    Plugin not loading

    Hi! are you using oxide? in that case, download it from here: Creative_Oxide_Fix (6).zip
  8. Ryuk_

    Plugin not loading

    Changed Status from Pending to Work in Progress Changed Fixed In to 2.1.0
  9. i will try to implement this soon
  10. Changed Status from Pending to Work in Progress Changed Fixed In to Next Version
  11. Changed Status from Work in Progress to Fixed
  12. Changed Status from Work in Progress to Fixed
  13. Ryuk_

    Team Building is tempormental

    Changed Status from Work in Progress to Fixed
  14. Changed Status from Work in Progress to Fixed
  15. Ryuk_

    Plugin won't work

    Changed Status from Work in Progress to Closed Changed Fixed In from 2.0.86A to 2.1.0
  16. Ryuk_

    auto electricity seems broken

    Changed Status from Work in Progress to Fixed Changed Fixed In from 2.0.86 to 2.1.0
  17. Changed Status from Work in Progress to Fixed Changed Fixed In from 2.0.86 to 2.1.0
  18. Changed Status from Pending to Work in Progress Changed Fixed In to Next Version
  19. Ryuk_

    error?

    Changed Status from Work in Progress to No Response Changed Fixed In from 2.0.86 to Next Version
  20. Changed Status from Pending to Work in Progress Changed Fixed In to Next Version
  21. Changed Status from Pending to Work in Progress Changed Fixed In to Next Version
  22. Ryuk_

    Team Building is tempormental

    Changed Status from Pending to Work in Progress Changed Fixed In to Next Version
  23. Changed Status from Pending to Not a Bug Changed Fixed In to Next Version
  24. It's possible to do this, but since we need to use a few "harmony" patches and "CanNetworkTo" will use a lot of resources on servers with high pop. It is not recommended.
  25. Ryuk_

    BGrade Does not work (Oxide)

    Changed Status from Pending to Closed Changed Fixed In to Next Version
2m

Downloads

Total number of downloads.

9.5k

Customers

Total customers served.

138.6k

Files Sold

Total number of files sold.

2.9m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.