Hey I need a script which makes me a mana pot, with a delay of 9 seconds,
picks up 400 eyes of newt off the floor, and picks up 100 bottles
it makes 100 potions and once thats done,
it uses .massmove command to move the potions into a bag I have on me.
Once it mass moves, it drags the bag into a pouch which is on the floor
and repeats the process
please if someone can help me, im having problems I dont understand german and I would appreciate if someone would have a script for me.
this is what I have so far;
sub making_mana_pots()
VAR Eye = '0x0F87'
UO.FindType(EYe)
While UO.Count(Eye)>0
UO.exec ("usetype 0x0F87")
wait(9000)
Wend
end sub
Mana pots
Moderators: Murderator+, Murderator
-
- Posts: 36
- Joined: 2007-07-20 18:57:45
sylar take this good script made by me.
sub MixBottles()
REPEAT
UO.DeleteJournal()
UO.Exec("waitmenu 'What sort' 'NAME OF POTION'")
UO.Exec("usetype 'TYPE OF EYES'")
repeat
wait(50)
until (UO.InJournal("You put") || UO.InJournal("fail") || UO.InJournal("found") || UO.InJournal("You have no") || UO.InJournal("You can't"))
if (UO.InJournal("No item found") || UO.InJournal("You have no") || UO.InJournal("You can't")) then
Message("I'm finished to sort potions!")
end if
UNTIL UO.Life<1
Message("You was DIE! The script is terminated.")
end sub
sub MixBottles()
REPEAT
UO.DeleteJournal()
UO.Exec("waitmenu 'What sort' 'NAME OF POTION'")
UO.Exec("usetype 'TYPE OF EYES'")
repeat
wait(50)
until (UO.InJournal("You put") || UO.InJournal("fail") || UO.InJournal("found") || UO.InJournal("You have no") || UO.InJournal("You can't"))
if (UO.InJournal("No item found") || UO.InJournal("You have no") || UO.InJournal("You can't")) then
Message("I'm finished to sort potions!")
end if
UNTIL UO.Life<1
Message("You was DIE! The script is terminated.")
end sub