EasyUO + Injection moving...

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
joselito
Posts: 17
Joined: 2004-05-12 01:40:04

EasyUO + Injection moving...

Post by joselito »

EasyUO function:

Code: Select all

initevents
set %tolerance 0
set %timeout 60s
set *1 0
set *2 0

loop:
if *1 <> 0
{
	move *1 *2 %tolerance %timeout
	set *1 0
}
goto loop

Injection function

Code: Select all

sub move(x,y)
	uo.SetEasyUO(1,x)
	uo.SetEasyUO(2,y)
	while not uo.GetEasyUO(1) == "0"
		wait(50)
	wend
end sub

Function call example:
.....
move("1245","253")
.....
Post Reply