Jump to content

Unlimited fuel and 110% protection

Fixed 1.0.6 1.0.7

Scalbox
Scalbox

Posted (edited)

Hi
there is a bug with the plugin that allows you to generate unlimited fuel.
Also if I wear heavy sheet metal and activate the miner hat, my protection reaches 110%, making me immortal from HS.

For now, for the unlimited fuel I made a quick change:
 

private void OnItemAddedToContainer(ItemContainer container, Item item)
{
    if (container.playerOwner == null || item.info == null || item.info.itemid != ITEMID_MINERS_HAT || item.skin != SKINID) return;
    var player = container.playerOwner;
    if (player == null) return;

    if (player.inventory.containerMain.itemList.Contains(item))
    {
        item.RemoveFromContainer();
        item.Remove();
    }

    if (player.inventory.containerBelt.itemList.Contains(item))
    {
        item.RemoveFromContainer();
        item.Remove();
    }
}


Here is an example video.
 

 

Edited by Scalbox
Scalbox

Posted

I did a test, even if it says 110% protection, in reality the protection remains at 90%.
Is there a way to not make it appear 110% but 90%?
But this is not a big problem, the biggest problem is the fuel, which allows you to generate fuel infinitely

beee

Posted

Miner's hat shouldn't pop out like that, something must have broke last rust patch. Will post a fix later today.

And yes protection for this miner's hat is ignored but the UI shows incorrect calculation, completely client side so can't alter that.

  • Like 1
beee

Posted

Posted fix, thanks for reporting.

beee

Posted

Changed Status from Pending to Fixed

Changed Fixed In to 1.0.7

1.7m

Downloads

Total number of downloads.

7.8k

Customers

Total customers served.

117.9k

Files Sold

Total number of files sold.

2.4m

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.