Hi! i need script that will try to eat item ID: 10432 every 30sec.
Thanks in advance.
(PS: Yes, i tried to search xenobot eat food script, but i couldn't find.)
Hi! i need script that will try to eat item ID: 10432 every 30sec.
Thanks in advance.
(PS: Yes, i tried to search xenobot eat food script, but i couldn't find.)
lol just check function to use item with id.
Self.UseItem(10432)
and make some delay function
wait(30000)
thats all man, its not hard to find but u are just lazy
Last edited by [email protected]; 12-07-2015 at 02:19 PM.
lua code:Module.New("Eat Food", function(Module)
if Self.ItemCount(10432) > 0 then
Self.UseItem(10432)
end
Module:Delay(30000)
end)
Hope it works and helps you out.