Search found 5 matches

by Predator
2005-07-15 00:37:52
Forum: Scripting Ore
Topic: Something if wrong with move ...
Replies: 1
Views: 804

Re: Something if wrong with move ...

Hi, i have a script in inj whitch send information to the easy.
In Inj:

Uo.SetEasyUo(11,str(CharX[n]))
Wait(50)
Uo.SetEasyUo(21,str(CharY[n]))
Wait(50)

CharX,Y are positions of charakter.

In Easy:
set *11
set *21
move:
move *11 *21 a
wait 10
goto move

Everithings is OK, but ...
by Predator
2004-07-24 11:59:39
Forum: Scripting Ore
Topic: Heal status
Replies: 9
Views: 3193

BETEPAH wrote:sub hp()
var i,n
i = uo.gethp()
n = uo.getmaxhp()
while i<n
uo.say(str(i)+'/'+str(n))
wait(3000)
wend
end sub



Check It!
I going to spam every 3 second, until I have full hp. I need only, when anybody hits me...
by Predator
2004-07-24 03:43:39
Forum: Scripting Ore
Topic: Heal status
Replies: 9
Views: 3193

huh... anybody don't know?
by Predator
2004-07-22 16:39:26
Forum: Scripting Ore
Topic: Heal status
Replies: 9
Views: 3193

Yoko wrote:where is wend?


sub hp()
var i,n
i = uo.gethp()
n = uo.getmaxhp()
while i<n
uo.say(str(i)+'/'+str(n))
wend
end sub


It will going to a lot of spam my heal status. I need check this script only once when somebody hit me.
by Predator
2004-07-22 07:13:11
Forum: Scripting Ore
Topic: Heal status
Replies: 9
Views: 3193

Heal status

sub hp()
var i,n
i = uo.gethp()
n = uo.getmaxhp()
while i<n
uo.say(str(i)+'/'+str(n))
end sub

I don't know how check this "while" everytime when somebody hit me...