Парни я вот играю на севрер где быстрый каст 2 востановление 6 и вот у меня есть скрипт Cure каст кастовать но он почему то медлено его кастует можна сделать как нибудь побыстрее чтоб кастовало его вот собствено скрипт
sub Cure()
if not UO.waiting() then
UO.Exec("cast Cure self")
end if
if uo.injournal("cliloc# 0xA3A1") then
UO.Exec("cast Cure self")
wait(100)
uo.deletejournal()
end if
end sub
Cure
Moderators: Murderator+, Murderator
-
- Posts: 2259
- Joined: 2005-04-19 18:00:29
- Location: Московская область
- Contact:
Code: Select all
sub Cure()
uo.cast('Cure','self')
uo.Print('This is one of the fastest script. Enjoy it.')
end sub