Цитата Сообщение от -=HoPD=-
Девил, а как сделать чтобы после того как скилл вырастет на 0,2 прлчаса не просто стоял, а качал например провокацию или любой другой скилл?
Код:
:begin
set lastskill 35
set $not you can't
set $ok it seems to accept
set $fail you fail to tame
set $skill your skill
set $already is already tame
set $you you see
set $fizzl the spell fizzles
set $mas you are your own
set #i 0
:begin
send delete // LastSkill
waitfortarget 3000
left 936, 19 
repeat 29
:re
send end // LastSkill - WaitForTarget - LastTarget
wait 5000
set timer
while_not lastmsg = $ok or lastmsg = $skill or lastmsg = $already
if lastmsg = $already
break 1
end_if
if timer > 30000
goto re
end_if
if lastmsg = $fail
goto re
else
end_if
if lastmsg = $not or lastmsg = $you or lastmsg = $mas
break
else
end_if
if lastmsg=$ok
set #i #i + 1
if #i = 2
gosub otherskill
set #i 0
end_if
end_if
end_while
say all release
send home // TargetNext
wait 1000
end_repeat
goto begin

:otherskill
set #timer 30 * 60000
while timer < #timer
//Сюда вставляем скрипт на прокачку другого скилла
//желательно чтобы скрипт был простенький
end_while
return