So @chaochaoq9 has pointed out that players can gather a full inventory worth of any item.
Demo on how to do it here:
I have tried to stop the plugin from gathering at all by doing:
But it still seems to increase the gather rate with every swing (The Youtube video shows you) silently in the background.
Now apparently this glitch works only modded servers with 3x + gather, is it possible that it may be just the server mod?
Demo on how to do it here:
I have tried to stop the plugin from gathering at all by doing:
JavaScript:
function On_PlayerGathering(Player, GatherEvent) {
switch (GatherEvent.Item) {
case 'Wood':
if (Player.Inventory.FreeSlots == 0) {
return;
}else if(Player.Inventory.FreeSlots > 0){
var Rate = parseInt(DataStore.Get("GatherRate", "Wood"));
var Gathered = (Math.round(GatherEvent.Quantity) * (Rate-1));
Player.Inventory.AddItem(GatherEvent.Item, Gathered);
Player.InventoryNotice(Gathered + " x " + GatherEvent.Item);
}
break;
}
}
Now apparently this glitch works only modded servers with 3x + gather, is it possible that it may be just the server mod?