[AC Tool] Mele Macro

08/14/2009 11:41 Penakle#1
Wrote this waiting in Queue. Looks sound but haven't tested yet as I can't get in game yet.

Simply face each other and if one has a polearm the other must have his back against a wall.

Start at the same time via Vent or whatever.
I think I have the timing correct for the parry mele cycles..just dont know if stam will last this length of time.

Melehitparry
Code:
// Start with no weapon equipped

//HOTBAR///
//Slot 1 = Staff
//Slot 2 = Weapon
//Slot 6 = Heal Self
//Slot 9 = Rest

//300sec 5min cycle
//Change loop number for runtime loop 12 =1hr

/////////////////////////////////////////
SetActiveWindow Darkfall Online

Constants
MouseDelay=2800
RestDelay=200000
End

////////////////////////////////////////

Procedure EquipWeapon ///12
Delay 4 sec
Keys 2
Delay 4 sec
Keys R
Delay 4 sec
End

////////////////////////////////////////

Procedure Melehit ///34.6
Delay 1 sec
Loop 12
LEFTCLICK
Delay $MouseDelay 
End 
End

////////////////////////////////////////

Procedure MeleParry ///34.6
Delay 1 sec
Keydown {v} 33.6 sec
End

////////////////////////////////////////

Procedure SpellCastheal ///13
Delay 2 sec
Keys 1
Delay 4 sec
Keys 6 
LEFTCLICK
Delay 7 sec 
End

/////////////////////////////////////////

Procedure Rest ///209 
Keys R
Delay 2 sec
Keys 9
Delay 2 sec
LEFTCLICK
Delay $RestDelay
Keys W
Delay 2 sec
End

//Start Macro

Loop 96 
Call EquipWeapon
Call Melehit
Call MeleParry
Call SpellCastheal
Call Rest
End
Meleparryhit
Code:
// Start with no weapon equipped

//HOTBAR///
//Slot 1 = Staff
//Slot 2 = Weapon
//Slot 6 = Heal Self
//Slot 9 = Rest

//300sec 5min cycle
//Change loop number for runtime loop 12 =1hr

/////////////////////////////////////////
SetActiveWindow Darkfall Online

Constants
MouseDelay=2800
RestDelay=200000
End

////////////////////////////////////////

Procedure EquipWeapon ///12
Delay 4 sec
Keys 2
Delay 4 sec
Keys R
Delay 4 sec
End

////////////////////////////////////////

Procedure Melehit ///34.6
Delay 1 sec
Loop 12
LEFTCLICK
Delay $MouseDelay 
End 
End

////////////////////////////////////////

Procedure MeleParry ///34.6
Delay 1 sec
Keydown {v} 33.6 sec
End

////////////////////////////////////////

Procedure SpellCastheal ///13
Delay 2 sec
Keys 1
Delay 4 sec
Keys 6 
LEFTCLICK
Delay 7 sec 
End

/////////////////////////////////////////

Procedure Rest ///209 
Keys R
Delay 2 sec
Keys 9
Delay 2 sec
LEFTCLICK
Delay $RestDelay
Keys W
Delay 2 sec
End

//Start Macro

Loop 96 
Call EquipWeapon
Call MeleParry 
Call Melehit
Call SpellCastheal
Call Rest
End