03-22-2010, 08:26 PM
Delay is too small. My ping is lower than urs, and even with 10.5 sec delay it still sometimes sais "You must wait perform to another action".
Too bad theres no message in journal after though, would be much easier to make good script. I made mine with 11 sec delay.
So well, just run it, then target will appear, target one horse and then another. And thats it, as soon as you'll GM the skill function will be terminated
Too bad theres no message in journal after though, would be much easier to make good script. I made mine with 11 sec delay.
Code:
sub provo()
UO.Print('Choose First Horse')
UO.Exec('addobject horse1')
while UO.Targeting()
wait(100)
wend
UO.Print('Choose Second Horse')
UO.Exec('addobject horse2')
while UO.Targeting()
wait(100)
wend
while UO.SkillVal("Provocation") < 1000
UO.WaitTargetObject("horse1" , "horse2")
UO.UseSkill('Provocation')
wait(11000)
wend
endsub
So well, just run it, then target will appear, target one horse and then another. And thats it, as soon as you'll GM the skill function will be terminated