Mostly I use a Variant of this for Low level Same level mobs when Im to lazy to hit keys.
Here is one for MOBS not SW
/script TargetNearestEnemy() ;
/cast Shadow Prison
/wait 1
/cast Joint Blow
/wait 2.1
/cast Blind Stab
/wait 1
/cast Wound Attack
/wait 1
/cast Shadow Stab
/wait 1
/cast Low Blow
/wait 1
/cast Shadow Stab
/wait 1
/cast Low Blow
*note the wait time after Joint Blow, it gives you time to meet up with the mob and continue the rest of the sequence.
And here is the one I use for Sw
/script TargetNearestEnemy() ;
/cast Joint Blow
(Or shadow Prison or whatever flavor, you want, I use it like this as I hit the macro then as I run to the them I Hit my regular hot key for Shadow Prison.)
Then I have the keys (actions / spells) I want most as 3456789 and I just
Run down the line. If you try to Fully Automate, it will probably target a balloon and you get whacked. SO you have to be careful before you Press a key for a Lazy Combat macro. You can use a variant and make it a Combat mele Macro on a key beside it. Once your sure your headed for the right target then Let lose the Second Macro.
I like to write my own and I am not great at it, but all you got to do is tinker with the timers on a MOB that will live through the combo.
Again, 2 Keys Assigned, 1 Finds and Targets, 2'nd *(unnecessarily ) re targets and runs mele combo. For SW I use only the first Targeting Macro. For Mob Farming I will set up Combos like the above,
Once you have a target ( assumes you use "auto target ) you can actually delete the second macros Re-targeting and just start it with /cast "spell" or action or whatever. I am a novice and I read some of the Calls to the 1-40 boxes and what you say is possible, I just haven't done it yet.
Couple of code snippets I culled from the forums.,
/script TargetNearestEnemy(); FollowUnit("target");
/script UseAction(1) <----- 1 being regular attack MELEE
/wait 1.2
/script UseAction(2); <--- Long range Attack
/wait 1.2
/script UseAction(3); <---- Long range Attack
/wait 1.2
/script UseAction(1); <---- same as 1st
~~~~~~~~~~~~~~~~~~~~~~~~~~~
/script TargetNearestEnemy(); FollowUnit("target"); <---target and follow
/wait 1.2
/script UseActon(1); <--will make you go to if out of range
/wait 1.2
/script UseAction(2); <--this is my rage attack vamp shot
/wait 1.2
/script UseAction(3); <-- Bone Breaker "well i forget the name off hand"
Best bet is to just Read Read Read. *( You can make macros and Call them from the box # they are put in on your Hot bar) This is what you are after / asking about and no, I haven't gotten around to messing with it yet