Помогите с такой вещичкой..
Code: Select all
sub AR_On()
UO.DeleteJournal()
uo.press(38)
wait(200)
if uo.injournal ('Always Run is now on.')
then uo.print('Бежим')
else uo.press(38)
uo.print('Бежим')
endif
end sub
sub AR_Off()
UO.DeleteJournal()
uo.press(38)
wait(200)
if uo.injournal ('Always Run is now off.')
then uo.print('Идём...')
else uo.press(38)
uo.print('Идём...')
endif
end sub
Как то так чтоли?