Good afternoon. After the last forced update of Rust the plugin stopped working. Grateful for the attention.
Plugin is not working.
same just get a message in the server console saying .... Error while compiling: Pets.cs(448,36): error CS0030: Cannot convert type `ItemContainerId' to `int'
You must add: .Value in the line 448
Before
inventory = new ItemContainer();
inventory.ServerInitialize(null, 6);
if ((int)inventory.uid == 0)
inventory.GiveUID();After
inventory = new ItemContainer();
inventory.ServerInitialize(null, 6);
if ((int)inventory.uid.Value == 0)
inventory.GiveUID();It's a temporary fix until they update the plugin.
👍 tks...