- Joined
- Dec 8, 2014
- RedCents
- 1,058¢
Hello all,
Here is a highly specialized macro that skills up Feign Death while you use the monk to pull for your crew, pulling mobs manually, assisting the main tank automatically and cycling through the extended targets available.
I had pl'ed a monk up and it was time to start using him. I was enjoying playing him so much I did not want to stop playing it to skill it up with Maskoi's great monk trainer. I built this, mostly from the aforementioned macro, and kept grinding. In less than 10 hours total play time it maxed the Feign Death skill. The whole time I was pulling with him and went from level 51 to 60. Had a blast and wanted to offer the macro to anyone that might want to use it.
I always wanted to use aforementioned in a document. It was quite satisfying.
Thank you Red Guides leadership and community,
............... Playbetter
Here is a highly specialized macro that skills up Feign Death while you use the monk to pull for your crew, pulling mobs manually, assisting the main tank automatically and cycling through the extended targets available.
I had pl'ed a monk up and it was time to start using him. I was enjoying playing him so much I did not want to stop playing it to skill it up with Maskoi's great monk trainer. I built this, mostly from the aforementioned macro, and kept grinding. In less than 10 hours total play time it maxed the Feign Death skill. The whole time I was pulling with him and went from level 51 to 60. Had a blast and wanted to offer the macro to anyone that might want to use it.
I always wanted to use aforementioned in a document. It was quite satisfying.
Thank you Red Guides leadership and community,
............... Playbetter
Rich (BB code):
Sub Main
| Playbetter
| Feign.mac
| 160111
|I run this in the background while manually pulling with the Monk toon.
|Set your camp up. Make this toon puller, define the main tank,
|run this macro. Go grab a mob or three.... or a dozen, run em back to camp.
|I sit down when I get there to draw them completely to my target spot.
|When the mob comes up and smacks me. I get up and assist the main tank automatically.
|Feign Death will cycle as it becomes available.
|Rinse repeat.
/plugin mq2bucles
| Change the gibberish at the end of the next line to your main tank's name
/declare Your_MainTank string local @#$%^&
|borrowed most of this from Maskoi's Monk Trainer
|That lizard sure codes nice
/declare SkillName string local
/varset SkillName Feign Death,17
:top
|Manually sit and the macro pauses here
/while (${Me.Sitting})
/delay 3s
/endwhile
|Waiting for the ability to be ready
/while (!${Me.AbilityReady[${SkillName.Arg[1,,]}]})
/delay 3s
/endwhile
|Feign Death and recover quickly
/doability "feign death"
/delay 0
/stand
|This delay allows you to sit to pause the macro
/delay 4s
|Now get in there and put the kung fu on that mob
| ***note*** it will cycle through a feign after a mob
| dies, and then pick up the next mob
/assist ${Your_MainTank}
/goto :top
|more dang talky talky touchy feely crap here than actual code
/return

