• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

PL macro

Pugs

Member
Joined
Feb 6, 2005
RedCents
654¢
FIRST this is not written by me but there are alot of people here that may use it and i know not all of look at the mq2 boards alot but here a gem i found there. It uses the throw stone ablity to hit all mobs within 50 range os the macro starter. Very handy for Powerlevling.

it is by Harden.
Rich (BB code):
|hitallmobs.inc By: Harden 07/08/06
|-------------------------------------------------------------------
|Description: Hit's all mobs within 50 range of you with a specified
|ability. Keep's count of how many mobs were hit, and reports when
|done. (Requires spell_routines.inc)
--------------------------------------------------------------------
|-Useage: /hitallmobs
--------------------------------------------------------------------
|Make sure your Macro has #include spell_routines.inc at the top
|add /squelch /alias /hitallmobs /echo hitallmobs to your sub main
|
|=================================================  ==================

#Event HitAllMobs        "[MQ2] HitAllMobs"
Sub Event_HitAllMobs
|=========================================|
|==Edit Throw Stone, for your AA ability==|
|=========================================|
   /declare ABILITY_NAME string local Throw Stone
   /echo *Attempting to hit all mobs in Range with ${ABILITY_NAME}.   
   /if (!${SpawnCount[npc radius 50]}) {
   /echo No Mobs in Range, Aborting...
   /return
}   
   /target npc
   /declare i int local 0
   /declare cnt int local 0   
      /for i 1 to ${SpawnCount[npc radius 50]} {
         :loop   
            /if (${Me.AltAbilityReady[${ABILITY_NAME}]} && ${Target.LineOfSight}) {
               /face
               /delay 1s
               /aa act ${ABILITY_NAME}
               /delay 3s
            } else {
            /if (!${Me.AltAbilityReady[${ABILITY_NAME}]}) }{
               /goto :loop
            } else {
            /if (!${Target.LineOfSight}) }{
               /echo ${Target.CleanName} Not in Line of sight, Skipping...
               /next i
                  }
               }
            }
         /varcalc cnt ${cnt}+1
         /target npc next radius 50
      /next i
   /echo *Done Hitting mobs all mobs in range.
   /echo *Total of ${cnt} Mob(s) hit.
/return
 
With a little modification, this macro works wonders on characters with PBAE spells.
 
I cleaned this up a bit mad made it easy just start it when your druid gets back with the train.

Rich (BB code):
Sub main
   /if (!${SpawnCount[npc radius 50]}) {
   /echo No Mobs in Range, Aborting...
   /return
}   
   /target npc
   /declare i int local 0
   /declare cnt int local 0   
      /for i 1 to ${SpawnCount[npc radius 50]} {
         :loop   
               /face
               /delay 1s
               /disc Throw Stone
               /delay 10s
            } else {
            /if (!${Target.LineOfSight}) }{
               /echo ${Target.CleanName} Not in Line of sight, Skipping...
               /next i
                  }
               }
            }
         /varcalc cnt ${cnt}+1
         /target npc next radius 50
      /next i
   /echo *Done Hitting mobs all mobs in range.

   /echo  *Total of ${cnt} Mob(s) hit.
/return
 
Spirt of the puma on a shammy is a 152 crazy proc rate you can cast on a level 1, monk 1-16 10 minutes on kurns.... Think a shammy would be better at pling
 
I might be blind or just dim witted but is there a dll download needed for this macro or simply already absorbed in the MQ2 family?
 
ok here's a question for anyone who might know...

can you use the nodelay plugin with the stonethrow ability at level one?
would be awesome to get around the 10s delay for the ability to refresh

Please PM if anyone out there knows! thanks
 
Honestly bard/druid combo = best PL ive ever did.. i was doing from zone in to locked door in CoM in 2 pulls.... and i took literally 2 days to get to 50 on my new monk. CoM is the best spot to PL honestly IMO if you have a char that can take the hits.
 
Yup the CoM mobs have very low hps for their level, very good zone to plevel I use it a lot for 30-50 levels, even when solo
 
soes said:
Honestly bard/druid combo = best PL ive ever did.. i was doing from zone in to locked door in CoM in 2 pulls.... and i took literally 2 days to get to 50 on my new monk. CoM is the best spot to PL honestly IMO if you have a char that can take the hits.


OK Druid for DS ... Bard for heals?
 
Bard for the leet aoe and DS songs :) i take a bard form 1 to 50 in like 8 hours max.
 
The code in the first post is an event and command to add to an existing macro. Try using the macro in the 3rd post.
 
Doesnt seem to do anything for me when I run it. Should the 3rd post be possible to use as stand-alone?
 
PL macro

Users who are viewing this thread

Back
Top
Cart