UO.InJournal("GO")

Ask for scripts here

Moderators: Murderator+, Murderator

Post Reply
Unfogiven
Posts: 44
Joined: 2006-12-18 11:33:01

UO.InJournal("GO")

Post by Unfogiven »

Помогите пожалуста
мне надо 2 маленких скрипта
первый:
чтоб как увидел в журнале слово GO
он запускал другой скрипт
а второй чтоб он атачил по ластатусу тоже когда увидит GO!
I'm
Expert!
Posts: 1396
Joined: 2004-10-15 22:38:04
Location: Moscow City.
Contact:

Post by I'm »

Code: Select all

UO.InJournal
UO.Attack
exec
laststatus
The End.
Unfogiven
Posts: 44
Joined: 2006-12-18 11:33:01

Post by Unfogiven »

вот так

Code: Select all

sub go()
UO.InJournal('GO')
UO.Attack('laststatus')
end if
wend
end sub
Nmy
Expert!
Posts: 2152
Joined: 2005-09-14 15:31:58
Location: Latvia

Post by Nmy »

Code: Select all

sub go()
uo.deletejournal()
while 1
if UO.InJournal('GO') then
UO.Attack('laststatus')
uo.deletejournal()
end if
wait(500)
wend
end sub
Post Reply