По не понятным причинам действия чара просто останавливаются. Подскажите, в чём проблема!? =\Code: Select all
sub main() while not uo.dead() if uo.mana < uo.int-30 then uo.useskill('Meditation') repeat wait(1000) until uo.mana < uo.int else uo.waittargetself() uo.cast('Invisibility') repeat uo.deletejournal() wait(100) until uo.injournal("fizzles") or uo.hidden() hungry() endif wend end sub sub hungry() var i UO.ServerPrint(".hungry") Wait(500) i=UO.LastMessage() If i=="You aren't hungry at all" Then uo.usetype("0x097B") Wait(1500) EndIf end sub
Приостановка скрипта
Moderators: Murderator+, Murderator
Приостановка скрипта
Re: Приостановка скрипта
1)
2)если тебе не удается войти в медитацию или тебе ее сбивают то виснет вот тут:
Code: Select all
sub main()
while not uo.dead()
if uo.mana < uo.int-30 then
uo.useskill('Meditation')
repeat
wait(1000)
until uo.mana < uo.int
else
uo.waittargetself()
uo.cast('Invisibility')
uo.deletejournal()
repeat
wait(100)
until uo.injournal("fizzles") or uo.hidden()
hungry()
endif
wend
end sub
sub hungry()
var i
UO.ServerPrint(".hungry")
Wait(500)
i=UO.LastMessage()
If i=="You aren't hungry at all" Then
uo.usetype("0x097B")
Wait(1500)
EndIf
end sub Code: Select all
repeat
wait(1000)
until uo.mana < uo.int