waittarget* with delay.
Moderators: Murderator+, Murderator
waittarget* with delay.
Yoko can u add to those functions arg delay? So it sends target after second or two after request form server.
-
- Expert!
- Posts: 74
- Joined: 2004-05-30 00:31:54
Re: waittarget* with delay.
ziemni wrote:Yoko can u add to those functions arg delay? So it sends target after second or two after request form server.
like thys??
Code: Select all
While not UO.Targeting()
wait(10)
wend
wait(2000)
UO.WaitTarget*
-
- Expert!
- Posts: 74
- Joined: 2004-05-30 00:31:54
Re: waittarget* with delay.
Goggy wrote:ziemni wrote:Yoko can u add to those functions arg delay? So it sends target after second or two after request form server.
like thys??Code: Select all
While not UO.Targeting()
wait(10)
wend
wait(2000)
UO.WaitTarget*
Nah. ur code will just w8 for target cursor in client, and then itll wait for next target request, which will be responsed immediately.
Its more like.
Code: Select all
while not UO.Targeting()
wait(..)
wend
wait(....)
UO.Target()
But since UO.Target is nasty function i prefer to have delayed waittarget*.