Вопрос!
Posted: 2007-12-23 10:47:35
народ я вот в инжекте увидел такой скрипт на каст магии как их применить в самой игре?
Code: Select all
sub castPoison()
UO.waittargetlast()
if uo.count("0x1F40") then
UO.usetype(0x1F40)
else
UO.cast('Poison')
endif
endsub
sub castLightning()
UO.waittargetlast()
if uo.count("0x1F4A") then
UO.usetype(0x1F4A)
else
UO.cast('Lightning')
endif
endsub
sub castParalyze()
UO.waittargetlast()
if UO.count("0x1F52") then
UO.usetype(0x1F52)
else
UO.cast('Paralyze')
endif
endsub
sub castFlamestrike()
UO.waittargetlast()
if UO.Count("0x1F5F") then
UO.usetype(0x1F5F)
else
UO.cast('Flame Strike')
endif
endsub
; ÕÎÐÎØÈÅ ÑÏÅËËÛ
sub castGreaterHeal()
UO.waittargetself()
if UO.count("0x1F49") then
UO.usetype(0x1F49)
else
UO.cast('Greater Heal')
endif
endsub
sub castReflection()
UO.waittargetself()
if UO.count("0x1F50") then
UO.usetype(0x1F50)
else
UO.cast('Magic Reflection')
endif
endsub
; Ðåêîëë ïî ðóíêå äîìîé
sub RecallHome()
if UO.count("0x1F4C") then
UO.waittargetobject('HomeRune')
UO.usetype(0x1F4C)
else
UO.cast('Recall','HomeRune')
endif
endsub
sub castTeleport()
if UO.count("0x1F42") then
UO.usetype(0x1F42)
else
UO.cast('Teleport')
endif
endsub