Hello Xenobot Community,
i search for an Script like @shadowart Speedloot just so it doesnt loot to my Backpacks it has to throw it on ground so i can farm minos and throw out like shields,maces chain Armors
Slamdoc~
Hello Xenobot Community,
i search for an Script like @shadowart Speedloot just so it doesnt loot to my Backpacks it has to throw it on ground so i can farm minos and throw out like shields,maces chain Armors
Slamdoc~
I could suggest another way of accomplishing what you asked for.
You can loot everything, then you can have a script to throw out the "not needed" things, like with empty flasks for example.
@Slamdoc
THats what i use so far works okay but yea kinda shitty codeCode:local MinCap = 2000 local drop = {"mace", "plate shield", "sword", "Chain armor", "brass helmet", "battle shield"} Module.New("loot dropper", function(mod) local pos = Self.Position() for i = 1, #drop do if (Self.Cap() < MinCap) then Self.DropItem(pos.x, pos.y, pos.z, drop[i], 1) end end mod:Delay(math.random(500,1000)) end)![]()