I have a non Spell chaneling Kryss with fc +1 and y want to cast a spell and then put the Kryss again. I tyied this: cast 'Explosion' lasttarget ; equipt Rhand 0x1401 , but i put on the kryss so fastly and the spell flizzes

Moderators: Murderator+, Murderator
Code: Select all
UO.Cast("Explosion","lasttarget");
Wait(1000); 1000 - time in miliseconds...
UO.Equipt("Rhand","0x1401");
b0mber wrote:Is there any command to make a pause between 2 comands in the hotkey menu?
I have a non Spell chaneling Kryss with fc +1 and y want to cast a spell and then put the Kryss again. I tyied this: cast 'Explosion' lasttarget ; equipt Rhand 0x1401 , but i put on the kryss so fastly and the spell flizzes
Yoko wrote:b0mber wrote:Is there any command to make a pause between 2 comands in the hotkey menu?
I have a non Spell chaneling Kryss with fc +1 and y want to cast a spell and then put the Kryss again. I tyied this: cast 'Explosion' lasttarget ; equipt Rhand 0x1401 , but i put on the kryss so fastly and the spell flizzes
hotkeys:
exec mysub
script:
sub mysub()
...
wait(1000)
...
end sub