Nasher
Giermek
Dołączył: 23 Mar 2007
Posty: 114
Przeczytał: 0 tematów
Ostrzeżeń: 0/5 Skąd: Rzeszów
|
Wysłany: Śro 15:10, 11 Kwi 2007 Temat postu: AOE SCRIPT |
|
|
Widze, że nikt jeszcze nie zamieścił SCRIPTA dla maga więc prosze:
SetActiveWindow Knight OnLine Client
ObjVar 10
CommandDelay 500
KeyRate 100
Constants
AOESkillKey = 1// I think it is self explanatory!!
HealthPotKey = 7 // I think it is self explana tory!!
BackupHPPotKey = 8// Backup pot key, used to give u more than 50% hp to beable to town
RestTime = 28 // Resting time in seconds
Townkey = 8
End
Procedure CheckHealth every 2 sec
IsRed 210, 9 // change only the 210 value to suit u're needs remember, its apixel position
Else
Keys $HealthPotKey
End
// Didn't Use a pot then we have to town or die!!
IsRed 180, 9 // change only the 180 value to suit u're needs remember, its apixel position
Else
// Low HP VERY LOW HP
Call Town
End
End
Procedure CheckMana
// No more mana, rest then
IsBlue 190, 24 // change only 190 value to suit u're needs remember, its apixel position
Else
Delay 1 sec
Keys 2
Delay $RestTime sec
End
End
Procedure Repair Every 300 sec
delay 100
MousePos 995, 192
leftmousedown
delay 100
MousePos 995, 192
leftmouseup
end
Procedure Attack
Keys $AOESkillKey
Delay 800
MousePos 530, 245//change this for where you want the aoe to land
MousePos 530, 245 //^^
Delay 200
LeftMouseDown
Delay 200
LeftMouseUp
Delay 3 sec
Keys c
Delay $RestTime sec
End
Procedure Town
Keys $BackupHPPotKey
Delay 100
Keys $TownKey
Delay 5 sec
Keys c
Delay 1 sec
Stop
End
While 1=1
ProcessMessages
Delay 500
Call CheckMana
call Attack
End
Post został pochwalony 0 razy
|
|