PDA

View Full Version : Food with specific id...



12-06-2015, 09:20 PM
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.)

kamilqq
12-06-2015, 11:53 PM
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

12-07-2015, 01:05 PM
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
I thought that it will be something more than 2 lines.

'cause as i see equip amulet/ring from Xbp is around 20 lines.

btw. is here something like

if itemIDonposx == IDID, PPPP, OOO, SSS, XYZ > then useItemIDonPOSX?

Foulwerp
12-08-2015, 06:50 PM
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.

12-10-2015, 11:07 PM
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.
Thanks :-)