Yoko

All sides of Injection
It is currently 2026-03-10 16:15:13

All times are UTC+02:00




Post new topic  Reply to topic  [ 4 posts ] 
Author Message
PostPosted: 2004-04-27 04:25:32 
Offline

Joined: 2004-04-27 04:02:59
Posts: 5
Location: OR
Well, i have a serious problem...
In my shard inscription works in the next way:
first u must use the inscription skill then a window with the promp "Select what you want" appears. There u should press the icon "Inscribe".
Then u must select the blank scroll. After that a windows with the promp "Select a circle to inscribe", u should click the icon called "Circle 8 spells".
A new window appears with the promp "Select a spell to inscribe" and then u should press the spell u want to copy.

I made this script, but it fails(can't pass the menu with the promp"Select a circle to inscribe":

sub resurectionscroll()
UO.say(",waitmenu 'Select what you want' 'Inscribe'")
UO.say(",waittargettype 0x0e34")
UO.say(",waitmenu 'Select a circle to inscribe' 'Circle 8 spells' 'Select a spell to inscribe' 'Resurrection'")
uo.exec("useskill Inscription")
end sub

_________________
OR


Top
   
PostPosted: 2004-04-27 15:46:17 
Offline
Site Admin
User avatar

Joined: 2004-04-03 16:49:38
Posts: 1964
Vampy wrote:
sub resurectionscroll()
UO.say(",waitmenu 'Select what you want' 'Inscribe'")
UO.say(",waittargettype 0x0e34")
UO.say(",waitmenu 'Select a circle to inscribe' 'Circle 8 spells' 'Select a spell to inscribe' 'Resurrection'")
uo.exec("useskill Inscription")
end sub

this kind of action you written allowed only for automenu, not waitmenu.
because you used second waitmenu after first you cancel first.

so you need to use
Code:
UO.exec("waitmenu want Inscribe circle 8 spell Resurrection")
UO.waittargettype("0x0e34")
uo.useskill("Inscription")

or
Code:
UO.exec("automenu want Inscribe")
UO.exec("automenu circle 8")
UO.exec("automenu spell Resurrection")
UO.waittargettype("0x0e34")
uo.useskill("Inscription")


keep in mind automenu is enough to use once, waitmenu need be used each time before craftgump appears


Top
   
 Post subject:
PostPosted: 2004-04-27 19:49:42 
Offline

Joined: 2004-04-27 04:02:59
Posts: 5
Location: OR
thanx Yoko
u r the best!!! :)

_________________
OR


Top
   
 Post subject:
PostPosted: 2004-04-28 23:13:36 
Offline
Site Admin
User avatar

Joined: 2004-04-03 16:49:38
Posts: 1964
i was in good mood to answer :)


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic  [ 4 posts ] 

All times are UTC+02:00


Who is online

Users browsing this forum: Bing [Bot] and 3 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Limited