• 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

Druid Mac: PowerLevel yourself EASY

unknown405

Active member
Joined
Nov 17, 2006
RedCents
100¢
I had my druid and alt on the same account before they were switched and I remember how much I wanted to PL myself... this was before I was using MacroQuest. I was thinking it would just be so easy to just send a tell saying heal and INSTANTLY it would heal me, and the same for any buff. So I made a macro for it.

Thanks LOADS to timbuktu, he helped me a lot and I couldn't have done it without him. Took a couple of snippets from some other druid macros as I'm still new at this. Anyway here's the macro and look on the next post for instructions on how to use it.

Easy Druid PL.mac

Rich (BB code):
|	EaSy DruiD MaCrO [Version 1.0]
|	Designed by UnkNowN
|
|	::INSTRUCTIONS::
|
|	This macro is easy as pie to use. You just simply get in the same zone 
|	as your alt, and type /mac easydruidmac and that's it you're done
|	with your druid. Now get on your alt and use one of the many commands to
|	completely control your druid without switching windows once. Make sure 
|	you change "YOURTOONNAMEHERE" under Declares to your alts name.
|
|	::COMMANDS::
|
|	The following commands must be sent in a tell to your druid. They will 
|	instantly cast the spell you request, or any other command you
|	request and send you a tell saying their doing it. The commands are as
|	follows...
|
|	"Follow" - Tells your druid to auto-follow you, don't need to be in a group.
|	"StopFollow" - Stops your druid from auto-following you.
|	"Heal" - Casts your highest healing spell.
|	"Thorns" - Casts your highest thorns spell.
|	"Regen" - Casts your highest regeneration spell.
|	"Strength" - Casts your highest strength spell.
|	"Health" - Casts your highest HP Buff.
|	"Resist" - Still under construction, casts whatever resist you have loaded.
|	"Speed" - Casts Spirit of Wolf/Spirit of Eagle.
|	"Buffage" - Casts all the spells above
|
|	::DETAILS::
|
|	When you give your druid instructions to cast any of these spells, they will 
|	automatically stop following you, cast the spell, and re-follow you if you
|	already told them "follow." This macro is still under construction, so send
|	me a PM on RedGuides if you want anything added, username is unknown405. I'm
|	currently working on more commands, such as "horse" , to tell your druid to summon 
|	a horse ; "HELP" , to tell your druid to send you an invite, wait until you have 
|	joined and cast group succor, and more. 
|
|	::CREDITS::
|
|	The only person I'd really like to thanks is timbuktu as I could never have done this 
|	without him. He helped me on every little error I had, and read through my macro to 
|	make sure it was working order, thanks. I also would like to thanks everyone who sent
|	a druid/cleric macro to RedGuides, you might find a couple of your snippets in here ;p 
|	
|	::DISCLAIMER::
|
|	This macro was designed for RedGuides, free of charge. If you paid anything for this, please
|	contact "unknown405" on RedGuides right away. If you want to use this on another site, ask
|	me before sticking it up there without my permission.
|
|
|
|
|






#chat group 
#chat tell 
#Event   OutDoor          "#*#outdoors#*#" 
#Event   OutDoor          "You can not summon a mount here." 
#Event   Zoning           "You have entered#*#" 
#Event   ImDead           "You have been slain by#*#" 
#include Spell_Routines.inc 


Sub Main



|+++++++++++++++++++++++++++
|	Declares             +
|+++++++++++++++++++++++++++

	/declare plingtoon string outer YOURTOONNAMEHERE	

	/declare following	int	outer 0
	/declare follname		string outer NULL


|+++++++++++++++++++++++++++
|	Summon Mount         +
|+++++++++++++++++++++++++++

   /declare Mount              outer "Black Chain Bridle"


|+++++++++++++++++++++++++++
|	Re-Buff Alt Spells   +
|+++++++++++++++++++++++++++

   /declare SpellSingleBuff[6] string outer 

   /varset SpellSingleBuff[1] string outer "${Me.Gem[2]}" 

   /varset SpellSingleBuff[2] string outer "${Me.Gem[3]}" 

   /varset SpellSingleBuff[3] string outer "${Me.Gem[4]}" 

   /varset SpellSingleBuff[4] string outer "${Me.Gem[5]}" 

   /varset SpellSingleBuff[5] string outer "${Me.Gem[6]}"

   /varset SpellSingleBuff[6] string outer "${Me.Gem[7]}"


|+++++++++++++++++++++++++++
|	Check Mana Level     +
|+++++++++++++++++++++++++++

:Main_Loop 

/doevents

 
|+|	Check if you're standing, if 
|+|  	less than 30% than sit down.

   /if ( ${Me.State.Equal[Stand]} && ${Me.PctMana}<${SitAt} && !${Me.Moving}) /sit 

   /goto :Main_Loop 

/return 


|++++++++++++++++++++++++++++++++++++++++++++
|	Stop all commands, unless a tell      +
|++++++++++++++++++++++++++++++++++++++++++++

Sub Event_Chat(string ChatType,string ChatSender,string ChatText) 
      /if (!${ChatType.Equal[TELL]}) /return 


|+++++++++++++++++++++++++++
|	Heal Request         +
|+++++++++++++++++++++++++++

/if (!${ChatSender.Equal[${plingtoon}]}) /return
 

     /if (${ChatText.Find[heal]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[1]} please stay in radius!!

             /call cast "${Me.Gem[1]}" gem1 

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Thorns Request       +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[thorns]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[2]} please stay in radius!!

             /call cast "${Me.Gem[2]}" gem2

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Regen Request        +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[regen]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[3]} please stay in radius!!

             /call cast "${Me.Gem[3]}" gem3 

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Strength Request     +
|+++++++++++++++++++++++++++
 

     /if (${ChatText.Find[strength]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[4]} please stay in radius!!

             /call cast "${Me.Gem[4]}" gem4 

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	HP Buff Request      +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[health]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[5]} please stay in radius!!

             /call cast "${Me.Gem[5]}" gem5 

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Resist Request       +
|+++++++++++++++++++++++++++
 

     /if (${ChatText.Find[resist]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[6]} please stay in radius!!

             /call cast "${Me.Gem[6]}" gem6

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Speed Request        +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[speed]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) {

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[7]} please stay in radius!!

             /call cast "${Me.Gem[7]}" gem7 

		 /stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Auto Follow          +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[follow]}) { 

         /target pc ${ChatSender} 

	/delay 2s ${Target.ID}

         /if (${Target.Type.Equal[PC]}) { 

		/stick hold

             /tell  ${ChatSender} I am now Auto-Following you, say stopfollow when you want me to stop.


             } 

      /return 

      } 

|+++++++++++++++++++++++++++
|	Stop Follow          +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[stopfollow]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]}) { 

		/stick off

             /tell  ${ChatSender} I am no longer Auto-Following you.


             } 

      /return 

      }

|+++++++++++++++++++++++++++
|	Full Buff            +
|+++++++++++++++++++++++++++

     /if (${ChatText.Find[Buffage]}) { 

         /target pc ${ChatSender} 

        /if (${Target.Type.Equal[PC]}) { 

	/stick pause

	/delay 1s !${Me.Moving}

             /tell  ${ChatSender} You are now being MASS buffed... Stay in range!!

	/delay 1s

             /call cast "${Me.Gem[2]}" gem2
	/delay 10s ${Me.SpellReady[${Me.Gem[3]}]}
             /call cast "${Me.Gem[3]}" gem3
	/delay 10s ${Me.SpellReady[${Me.Gem[4]}]}
             /call cast "${Me.Gem[4]}" gem4
	/delay 10s ${Me.SpellReady[${Me.Gem[5]}]}
             /call cast "${Me.Gem[5]}" gem5
	/delay 10s ${Me.SpellReady[${Me.Gem[6]}]}
             /call cast "${Me.Gem[6]}" gem6
	/delay 10s ${Me.SpellReady[${Me.Gem[7]}]}
             /call cast "${Me.Gem[7]}" gem7

	/stick unpause


             } 

      /return 

      } 
/return
 
Instructions to use:

First of all, make sure you change "YOURTOONNAMEHERE" under the Declares section to whatever the name of your alt is. Here's how this macro works... It doesn't automatically mem/cast your highest thorns spell. The reason for this, is all other druid macros I tried to use to PL my alt, failed. They all said Cannot find spell: XXX because I wasn't high enough level yet to use it. This macro works by automatically casting certain gems for certain spells, to prevent the error of you not yet having a certain spell. Here is the list to memorize your spells.

Gem 1 - Heal
Gem 2 - Thorns
Gem 3 - Regen
Gem 4 - Strength
Gem 5 - HP Buff
Gem 6 - Resist
Gem 7 - Speed

Resist is still under construction. I'm currently editing it so that you say "resist cold" and it automatically erases your resist, re-mems the resist for cold, casts it, and erases it again. The same for all other resists. Macro is still under construction.

I made this macro exremely easy to edit as well. Anyone with a decent experience at macroing can change the commands on this and change what spells to cast. If anyone wants a cleric or any other class for this macro tell me what commands you want and what gems you want them to cast in, and I'll make a new post with it and send you a PM when it's ready and it shouldn't take longer than 30 minutes after I read your reply.

Any feedback appreciated, good or bad. Any requests I'll try and add them, but remember I'm still working to MAX all tradeskills so it might take a couple of hours, or a day at most for me to do your request depending on how difficult it is. If you want me to edit this for another class though, should only take 30 minutes max.

-UnkNowN
 
*bump*

I'm going to start updating this soon and need your ideas. If anyone has any requests to make this a better macro tell me and I'll update it. Also, if you want this to work for a different class tell me and I'll make it work for your class. I'm trying to make an all-in-one PowerLeveling macro to end all other PL macros. Any requests..?
 
The end all PLing macro would involve an SK with Dread Gaze, the PLee running HitAllMobs.mac by Harden, and a cleric/druid/shaman heal bot healing the SK.

It takes 3 pulls to clear the level 45 Dranik Hallow mission for Murkgliders. With LoTD, you'd get probably 4-5 levels per clearing starting at level 40.

*Edit* Btw, this is probably the best way to farm Essence Emeralds. Clear the instance once for your level 46 toon to get him to 50. Then sac him back down to 46.
 
I'm not going to have an all-in-one PL macro for ALL classes in one macro. I'll have different macs for different classes. Just tell me what you want for a certain class and I'll make it. I'm going to have all PL macros and all tradeskills macros, up to 300-400 skill level, done by the end of december/beginning of january. I would have them earlier but if you read my post in general chat about taking a break you'll see why I can't.
 
A couple of things not clear, which toon's name do i put in the macro? The toon to be PLed or the druids name?

Also when i try to run the macro i get this response
"Couldn"t open include file:
C:\MQ2RedQuest_v4.0\Macro\Spell_Routines.inc /par
Teh Macro has ended.
Unable to add macro line."

I am running the macro with the druid toon acct with the toon to be PLed in the same zone on an other acct. but the two toon accts r being run on one computer.
Thanks for ur help and i am looking forward to useing ur Macro.
 
I fixed the Follow & stop follow

Old commands New commands
Follow : Follow
Stopfollow : stop

Also i added a nice Snare feature because it was driving me nuts i kept having to use my other computer anyways >< so i added a snare feature command for that is just

Snare

Rich (BB code):
|	EaSy DruiD MaCrO [Version 1.0]
|	Designed by UnkNowN
|
|	::INSTRUCTIONS::
|
|	This macro is easy as pie to use. You just simply get in the same zone 
|	as your alt, and type /mac easydruidmac and that's it you're done
|	with your druid. Now get on your alt and use one of the many commands to
|	completely control your druid without switching windows once. Make sure 
|	you change "YOURTOONNAMEHERE" under Declares to your alts name.
|
|	::COMMANDS::
|
|	The following commands must be sent in a tell to your druid. They will 
|	instantly cast the spell you request, or any other command you
|	request and send you a tell saying their doing it. The commands are as
|	follows...
|
|	"Follow" - Tells your druid to auto-follow you, don't need to be in a group.
|	"Stop" - Stops your druid from auto-following you.
|	"Heal" - Casts your highest healing spell.
|	"Thorns" - Casts your highest thorns spell.
|	"Regen" - Casts your highest regeneration spell.
|	"Strength" - Casts your highest strength spell.
|	"Health" - Casts your highest HP Buff.
|	"Resist" - Still under construction, casts whatever resist you have loaded.
|	"Speed" - Casts Spirit of Wolf/Spirit of Eagle.
|	"Buffage" - Casts all the spells above
|	"Snare" - casts snare on PLee's target
|
|	::DETAILS::
|
|	When you give your druid instructions to cast any of these spells, they will 
|	automatically stop following you, cast the spell, and re-follow you if you
|	already told them "follow." This macro is still under construction, so send
|	me a PM on RedGuides if you want anything added, username is unknown405. I'm
|	currently working on more commands, such as "horse" , to tell your druid to summon 
|	a horse ; "HELP" , to tell your druid to send you an invite, wait until you have 
|	joined and cast group succor, and more. 
|
|	::CREDITS::
|
|	The only person I'd really like to thanks is timbuktu as I could never have done this 
|	without him. He helped me on every little error I had, and read through my macro to 
|	make sure it was working order, thanks. I also would like to thanks everyone who sent
|	a druid/cleric macro to RedGuides, you might find a couple of your snippets in here ;p 
|	
|	::DISCLAIMER::
|
|	This macro was designed for RedGuides, free of charge. If you paid anything for this, please
|	contact "unknown405" on RedGuides right away. If you want to use this on another site, ask
|	me before sticking it up there without my permission.
|
|
|
|
|






#chat group 
#chat tell 
#Event   OutDoor          "#*#outdoors#*#" 
#Event   OutDoor          "You can not summon a mount here." 
#Event   Zoning           "You have entered#*#" 
#Event   ImDead           "You have been slain by#*#" 
#include Spell_Routines.inc 


Sub Main



|+++++++++++++++++++++++++++
|	Declares             +
|+++++++++++++++++++++++++++

	/declare plingtoon string outer "YOURTOONNAMEHERE"	

	/declare following	int	outer 0
	/declare follname		string outer NULL


|+++++++++++++++++++++++++++
|	Summon Mount         +
|+++++++++++++++++++++++++++

   /declare Mount              outer "null"


|+++++++++++++++++++++++++++
|	Re-Buff Alt Spells   +
|+++++++++++++++++++++++++++

   /declare SpellSingleBuff[6] string outer 

   /varset SpellSingleBuff[1] string outer "${Me.Gem[2]}" 

   /varset SpellSingleBuff[2] string outer "${Me.Gem[3]}" 

   /varset SpellSingleBuff[3] string outer "${Me.Gem[4]}" 

   /varset SpellSingleBuff[4] string outer "${Me.Gem[5]}" 

   /varset SpellSingleBuff[5] string outer "${Me.Gem[6]}"

   /varset SpellSingleBuff[6] string outer "${Me.Gem[7]}"
   
  


|+++++++++++++++++++++++++++
|	Check Mana Level     +
|+++++++++++++++++++++++++++

:Main_Loop 

/doevents

 
|+|	Check if you're standing, if 
|+|  	less than 30% than sit down.

   /if ( ${Me.State.Equal[Stand]} && ${Me.PctMana}<${SitAt} && !${Me.Moving}) /sit 

   /goto :Main_Loop 

/return 


|++++++++++++++++++++++++++++++++++++++++++++
|	Stop all commands, unless a tell      +
|++++++++++++++++++++++++++++++++++++++++++++

Sub Event_Chat(string ChatType,string ChatSender,string ChatText) 
      /if (!${ChatType.Equal[TELL]}) /return 


|+++++++++++++++++++++++++++
|	Heal Request         +
|+++++++++++++++++++++++++++

/if (!${ChatSender.Equal[${plingtoon}]}) /return
 

     /if (${ChatText.Find[heal]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[1]} please stay in radius!!

             /call cast "${Me.Gem[1]}" gem1 

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Thorns Request       +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[thorns]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[2]} please stay in radius!!

             /call cast "${Me.Gem[2]}" gem2

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Regen Request        +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[regen]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[3]} please stay in radius!!

             /call cast "${Me.Gem[3]}" gem3 

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Strength Request     +
|+++++++++++++++++++++++++++
 

     /if (${ChatText.Find[strength]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[4]} please stay in radius!!

             /call cast "${Me.Gem[4]}" gem4 

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	HP Buff Request      +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[health]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[5]} please stay in radius!!

             /call cast "${Me.Gem[5]}" gem5 

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Resist Request       +
|+++++++++++++++++++++++++++
 

     /if (${ChatText.Find[resist]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) { 

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[6]} please stay in radius!!

             /call cast "${Me.Gem[6]}" gem6

		/stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Speed Request        +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[speed]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) {

		 /stick pause
		 /delay 1s !${Me.Moving}

             /tell  ${ChatSender} Incoming ${Me.Gem[7]} please stay in radius!!

             /call cast "${Me.Gem[7]}" gem7 

		 /stick unpause

             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Auto Follow          +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[follow]}) { 

         /target pc ${ChatSender} 

	/delay 2s ${Target.ID}

         /if (${Target.Type.Equal[PC]}) { 

		/stick hold

             /tell  ${ChatSender} I am now Auto-Following you, say stopfollow when you want me to stop.


             } 

      /return 

      } 

|+++++++++++++++++++++++++++
|	Stop Follow          +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[stop]}) { 

         /target pc ${ChatSender} 

         /if (${Target.Type.Equal[PC]}) { 

		/stick off

             /tell  ${ChatSender} I am no longer Auto-Following you.


             } 

      /return 

      }

|+++++++++++++++++++++++++++
|	Full Buff            +
|+++++++++++++++++++++++++++

     /if (${ChatText.Find[Buffage]}) { 

         /target pc ${ChatSender} 

        /if (${Target.Type.Equal[PC]}) { 

	/stick pause

	/delay 1s !${Me.Moving}

             /tell  ${ChatSender} You are now being MASS buffed... Stay in range!!

	/delay 1s

             /call cast "${Me.Gem[2]}" gem2
	/delay 10s ${Me.SpellReady[${Me.Gem[3]}]}
             /call cast "${Me.Gem[3]}" gem3
	/delay 10s ${Me.SpellReady[${Me.Gem[4]}]}
             /call cast "${Me.Gem[4]}" gem4
	/delay 10s ${Me.SpellReady[${Me.Gem[5]}]}
             /call cast "${Me.Gem[5]}" gem5
	/delay 10s ${Me.SpellReady[${Me.Gem[6]}]}
             /call cast "${Me.Gem[6]}" gem6
	/delay 10s ${Me.SpellReady[${Me.Gem[7]}]}
             /call cast "${Me.Gem[7]}" gem7

	/stick unpause


             } 

      /return 

      } 


|+++++++++++++++++++++++++++
|	Snare request       +
|+++++++++++++++++++++++++++


     /if (${ChatText.Find[Snare]}) { 

         /target pc ${ChatSender}
{
/assist
}
	
		/delay 10
	{
             /tell  ${ChatSender} Incoming ${Me.Gem[8]} on your target!
             /call cast "${Me.Gem[8]}" gem8

             } 

      /return 

      } 
/return
 
Last edited:
This is a really nice macro, but I can't get it to work. I replaced the character name, memed all the spell correctly and it just instantly ends. Any help?
 
Im a dingle berry, i left my characters name in there so if you grab it again and look over the whole thing and find where it says "your characters name here" replace it...

Try that if it doesn't work just post again
 
Last edited:
OK sorry if I didn't make this clear enough change YOURTOONNAMEHERE on this line

Rich (BB code):
	/declare plingtoon string outer YOURTOONNAMEHERE

to the toon that your powerleveling's name. For example if the druid name is bobcat and the alt's name is bobbydog change YOURTOONNAMEHERE to bobbycat.

My computer's internet just got back up so I can start updating it again I have a couple of ideas to make it better, like I've said before if you need a cleric pl'ing macro or whatever just let me know.
 
Druid Mac: PowerLevel yourself EASY

Users who are viewing this thread

Back
Top
Cart