I found a couple of ranger macro's, but they seemed very complicated to me tho.. I dont want to autostart archery when i assist, nor do i want to automate snare or whatnot..
Reason i would like to use a macro for ranged attack is that i do not have to run a joystick autofire or proggy to do it, wich i need to adjust each time i switch bows/haste to adapt to the bow delay..
So.. I found a couple of snippets i am currently using..
This is for autokicking while attacking :
--
Sub Main
/echo Auto-Kicking while Attacking
/declare fsTimer timer local 0s
:WaitLoop
/if (!${Me.Combat}) {
/echo Waiting for another fight...
/delay 60s ${Me.Combat}
/goto :WaitLoop
}
/echo Fighting -- ${Target.CleanName}
:CombatLoop
/if (${Me.Combat}) {
/delay 10s ${Me.AbilityReady["Kick"]}
/if (${Me.AbilityReady["Kick"]} && !${Me.Casting.ID} && !${Me.Stunned} && ${Target.ID}) {
/doability "Kick"
}
}
/if (${Me.Combat}) /goto :CombatLoop
/goto :WaitLoop
/return
--
I modified this to stop spamming if i am stunned..
So.. if i somehow could combine this with a archery macro.. i experimented with something like this :
--
/if (${Me.RangedReady} && !${Me.Casting.ID} && ${Target.Type.NotEqual[PC]} && !${Target.Type.Equal[Corpse]})
{
/Ranged
}
--
But needless to say.. im a total noobie when it comes to progging this, so if someone have any ideas how to combine the auto-kick macro with a working archery.. id be forever grateful..
I would want this to happen :
If i melee and turn on auto-attack (the regular way), it should autokick as the first macro does..
If i decide to do archery, i want to start and stop the archery bit by pressing a key.. Eg. If i press the key "P" on my keyboard, this turns off melee attack, and turn on archery. If mob dies, archery turn off automatically. If i press "P" again, archery is turned off. If i turn on melee attack, archery is turned off.
Dont want automated movement or forage/snare++.. just want the nifty features of archery fired whenever Me.RangedReady occurr.. (Thus no need to fiddle with different delays on my joystick autofire)
Ideas?

