 |
|
 |
|
Newbie

Group: Members
Posts: 3
Joined: 3-July 09
Member No.: 942,592
|
|
 |
|
 |

|
this is a multicamp macro used with AC Tools copy that and put into AC Tools to use it
SetActiveWindow Knight OnLine Client Constants ///////////////////////////////////////////////////////////////////////// // // Attack Options // AttackNumber = 2 // Attack On/Off or Select ( 0 1 2 3 4 ) // Attack1 = 3 // First Attack Button // Attack2 = 4 // Second Attack Button // Attack3 = 5 // Third Attack Button // Attack4 = 6 // Fourth Attack Button // AttackDelay = 0.1 // Attack Delay // // // Heal Options // HealNumber = 1 // Heal On/Off ( 0 1 ) // Heal = 8 // Heal Button // HealDelay = 0.2 // Heal Delay // // // Mana Options // ManaNumber = 1 // Mana On/Off ( 0 1 ) // Mana = 7 // Mana Button // ManaDelay = 0.5 // Mana Delay
// Wolf Options Wolf = 0 // Wolf On/Off ( 0 1 ) WolfSlot = 5 // Wolf Buff Button /////////////////////////////////////////////////////////////////////////
End Procedure Wolf Every 125 sec if $Wolf = 1 Keydown 2 0.1 sec delay 1000 end end Procedure Attack If $AttackNumber = 0 End If $AttackNumber = 1 Call Attack1 End If $AttackNumber = 2 Call Attack2 End If $AttackNumber = 3 Call Attack3 End If $AttackNumber = 4 Call Attack4 End End
Procedure Attack1 KeyDown z 0.1 sec KeyDown $Attack1 $AttackDelay sec End
Procedure Attack2 KeyDown z 0.1 sec KeyDown $Attack1 $AttackDelay sec KeyDown z 0.1 sec KeyDown $Attack2 $AttackDelay sec End
Procedure Attack3 KeyDown z 0.1 sec KeyDown $Attack1 $AttackDelay sec KeyDown z 0.1 sec KeyDown $Attack2 $AttackDelay sec KeyDown z 0.1 sec KeyDown $Attack3 $AttackDelay sec End
Procedure Attack4 KeyDown b 0.1 sec KeyDown $Attack1 $AttackDelay sec KeyDown b 0.1 sec KeyDown $Attack2 $AttackDelay sec KeyDown b 0.1 sec KeyDown $Attack3 $AttackDelay sec KeyDown b 0.1 sec KeyDown $Attack4 $AttackDelay sec End
Procedure Heal If $HealNumber = 0 End If $HealNumber = 1 Call Heal1 End End Procedure Heal1 IsRed 199, 12 Else KeyDown $Heal $HealDelay sec delay 50 KeyDown $Heal $HealDelay sec delay 50 KeyDown $Heal $HealDelay sec delay 50 KeyDown $Attack2 $AttackDelay sec End End
Procedure Mana If $ManaNumber = 0 End If $ManaNumber = 1 Call Mana1 End End Procedure Mana1 IsBlue 177, 29 Else KeyDown $Mana $ManaDelay sec delay 50 KeyDown $Attack2 $AttackDelay sec End End While 1 = 1 ProcessMessages Call Attack Call Heal Call Mana Delay 100 End
|