Search found 1 match

by bink
2004-05-29 09:53:38
Forum: Scripting Ore
Topic: global variable (or somthing like that)
Replies: 3
Views: 2162

global variable (or somthing like that)

i try to write some script working like that:

; ------------------------------------

var mode = 0

sub start()
mode = 1

while mode <> 0
uo.bandageself()
uo.wait(2000)
wend

end sub

sub stop()
mode = 0
end sub

; ------------------------------------

but that dont ...