Maskoi
old and salty
- Joined
- Sep 28, 2005
- RedCents
- 82,796¢
I made a new cleric that was 95 with no Melee skills. Offense, defense, bash and 1 HB. So I whipped up 2 quick macros for my mage and cleric to help raise the clerics melee skills. The cleric or the pet kept dying if I wasn't paying attention. This would work with a shaman or druid as well and any pet class.
You need a pet class so can duel them.
The pet has to con green or higher to the cleric. I suggest light blue
Target each other then type in /d for duel
On the cleric
/plugin mq2melee
/melee melee=1
Make sure you create a bash hot key from the actions melee tab or it won't bash.
The first macro just heals the pet as the cleric beats on it so doesn't die. Change the 7 in /cast 7 to the spell slot of your pet heal
This macro heals the cleric at 50%. The cleric will stop attacking heal themselves then start attacking again. Change the 1 in /cast 1 to the spell slot of your heal.
Attack and let the pet and cleric beat the hell out of each other.
You need a pet class so can duel them.
The pet has to con green or higher to the cleric. I suggest light blue
Target each other then type in /d for duel
On the cleric
/plugin mq2melee
/melee melee=1
Make sure you create a bash hot key from the actions melee tab or it won't bash.
The first macro just heals the pet as the cleric beats on it so doesn't die. Change the 7 in /cast 7 to the spell slot of your pet heal
Rich (BB code):
Sub Main
:mainloop
/if (${Me.Pet.PctHPs}<50) /cast 7
/delay 300
/goto :mainloop
/return
This macro heals the cleric at 50%. The cleric will stop attacking heal themselves then start attacking again. Change the 1 in /cast 1 to the spell slot of your heal.
Rich (BB code):
Sub Main
/declare oldtarget int outer
:mainloop
/if (${Me.PctHPs}<50) {
/varset oldtarget ${Target.ID}
/attack off
/delay 3s !${Me.Combat}
/tar ${Me}
/delay 10
/cast 1
/delay 2s
/target id ${oldtarget}
/delay 10
/attack on
}
/delay 300
/goto :mainloop
/return
Attack and let the pet and cleric beat the hell out of each other.

