Slamdoc
04-25-2016, 01:29 PM
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~
dinmamma
04-26-2016, 06:56 PM
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
Slamdoc
04-26-2016, 11:13 PM
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)
THats what i use so far works okay but yea kinda shitty code :D
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.