Алхимия - не делает Пойзоны ....

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
Hammer
Posts: 2
Joined: 2006-02-15 20:55:58
Contact:

Алхимия - не делает Пойзоны ....

Post by Hammer »

господа мегаотцы-скриптеры, дружно помогаем, пожалуйста ...
значит беда в следующем, ни один из прежде рабочих скриптов сейчас почемуто отказывается делать простые Пойзоны (гонит Лессеры) ...

например:
sub Alchemy(Reagent,MinimumReags,Choice)
while uo.Count('0x0F0E','0x0000')>0 and uo.Count(Reagent)>=MinimumReags
uo.DeleteJournal()
uo.Exec("waitmenu 'What sort of potion do you want to' "+Choice)
uo.UseType(reagent)
while not uo.InJournal('You put') and not uo.InJournal('You toss the failed')
wait(300)
wend
wend
end sub

sub LesserPoison()
alchemy('0x0F88', 1, "'Lesser Poison'")
end sub

sub Poison()
alchemy('0x0F88', 2, "'Poison'")
end sub



в обоих случаях мешает Лессеры.
а ведь раньше делал :(
P.S. DRW
Don't Trouble Troubles Until Troubles Trouble You
Arsuri
Posts: 62
Joined: 2005-02-25 13:31:26
Location: DRW, [Hussars]
Contact:

Post by Arsuri »

Пробуй в таком виде записать:

Code: Select all

sub LesserPoison() 
alchemy('0x0F88', 1, "(1)")
end sub

sub Poison()
alchemy('0x0F88', 2, "(2)")
end sub

sub GreaterPoison()
alchemy('0x0F88', 4, "(3)")
end sub

sub DeadlyPoison()
alchemy('0x0F88', 8, "(4)")
end sub
Hammer
Posts: 2
Joined: 2006-02-15 20:55:58
Contact:

Post by Hammer »

Arsuri, дружище !!! Респект !!!
работает, спасибо ...
Don't Trouble Troubles Until Troubles Trouble You
Post Reply