Page 1 of 1

MENU

Posted: 2004-08-08 21:35:55
by greenleader
Hi, I want makro for travelling stone. It's not gump but classic [menu] How should I do it?

Posted: 2004-08-09 00:22:32
by evil_Gremlin
,waitmenu <promt> <choice>
,automenu <promt> <choice>

Posted: 2004-08-10 18:44:39
by greenleader
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?

Posted: 2004-08-10 21:27:56
by Yoko
http://yoko.netroof.net/forum/viewtopic.php?p=4798#4798
the same technique, use stone serial instead of runebook serial

Posted: 2004-08-10 22:23:10
by greenleader
in fact IT IS NOT GUMP, so ,infogump doesn't work with it:(

Posted: 2004-08-11 11:26:30
by Yoko
if it is not a gump, what is it?

Posted: 2004-08-11 19:00:21
by greenleader
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

Posted: 2004-08-11 19:11:00
by Edred
try it:

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...

Posted: 2004-08-11 20:28:01
by greenleader
thx it works