MENU
Moderators: Murderator+, Murderator
-
- Posts: 17
- Joined: 2004-08-04 17:43:58
MENU
Hi, I want makro for travelling stone. It's not gump but classic [menu] How should I do it?
-
- Posts: 54
- Joined: 2004-05-11 12:27:22
- Contact:
-
- Posts: 17
- Joined: 2004-08-04 17:43:58
Well, when I dblclick on the stone, I get menu with caption "Choose a Destination", then there are few choices (I need "my places" and I have to press "continue", after I press "my wanted choice" I have to press another choice "My island" and then continue to teleport.
I have tried this:
uo.usetype(stone_type)
UO.waitmenu("Choose a Destination","General")
UO.automenu("Choose a Destination","General")
but it doesn't work:( how to do it?
I have tried this:
uo.usetype(stone_type)
UO.waitmenu("Choose a Destination","General")
UO.automenu("Choose a Destination","General")
but it doesn't work:( how to do it?
http://yoko.netroof.net/forum/viewtopic.php?p=4798#4798
the same technique, use stone serial instead of runebook serial
the same technique, use stone serial instead of runebook serial
-
- Posts: 17
- Joined: 2004-08-04 17:43:58
-
- Posts: 17
- Joined: 2004-08-04 17:43:58
Well here are pictures:
This is first screen (choosing General section)
http://www.ultimaworlds.net/1.jpg
This is second screen (choosing second option Trade Island)
http://www.ultimaworlds.net/2.jpg
This is first screen (choosing General section)
http://www.ultimaworlds.net/1.jpg
This is second screen (choosing second option Trade Island)
http://www.ultimaworlds.net/2.jpg
try it:
You must place UO.waitmenu or uo.automenu or any waittarget commands BEFORE usetype or useobject...
Code: Select all
UO.waitmenu("Choose a Destination","General", "Choose a Destination","PVP Area")
uo.usetype(stone_type)
You must place UO.waitmenu or uo.automenu or any waittarget commands BEFORE usetype or useobject...