Paladin EQ2bot

abbadon

Active Member
I have been messing with a Pally/guardian duo and I was wondering if anyone has had any experience getting the Pally bot to heal party members. I have enable healer mode checked but he doesn't seem to be doing much healing at all. I have even had him set to do nothing but healing and watched him the guardian die.

Any help is appreciated, in the meantime will keep digging into it myself.

Thanks
 

abbadon

Active Member
disregard

After taking a look at the script the checkheal routine appears to be in a place that wouldn't fire unless the Pally is the main tank.

I moved it into the main combat routine loop for now and it appears to function.
 

ownagejoo

Well-Known Member
Yeah I created this script and my Pally is the MT in my 4 box so probably was that way. When you don't group with anyone else thats what happens.

Post your fix here and will correct it in the version I have and repost

Thanks
OAJ
 

abbadon

Active Member
Pally non-tank healing

I just added:

Code:
if ${HealerMode}
                   {
		     	call CheckHeals
		     	}
		    	else
		     	{

			call MeHeals
		     }
At the very bottom of the function : "function Combat_Routine(int xAction)"

There may be a better place to put it. I just moved it there as a test and my pally was healing my guardian and kept him alive againt a few heroics so it was good enough for me for now.

Thanks for the script. It is working great. You might want to add a check to the if condition I added to ensure you are not the main otherwise the function will fire multiple times per loop.
 
Top Bottom