• 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

Auto cleric question (1 Viewer)

Joined
May 4, 2017
RedCents
77¢
Just started using auto cleric on my 65 cleric and have a few questions. One my cleric always defaults to targeting my bst who is the 5th member of my group. My tank is #1, but he never targets him unless he is healing then switches back to the bst. Second how do I change the percent at which the cleric will complete heal? Would it be in the section listed below?

Rich (BB code):
Sub ConfigHeal/if (${Select[${Zone.ID},795,796]}==0 && !${Raid.Members}) {
    /if (${Me.XTarget}>2||${Me.XTarget[1].Named}) {
        /if (${healpoint}!=90) {
            /varset healpoint 90
            /varset grouphealpoint 75
            /varset bighealpoint 60
        }
    } else /if (${Me.XTarget[1].Level}>=${Me.Level}) {
        /if (${healpoint}!=85) {
            /varset healpoint 85
            /varset grouphealpoint 75
            /varset bighealpoint 60
            }
    } else /if (${Me.XTarget[1].Level}>=${Math.Calc[${Me.Level}-5]}) {
        /if (${healpoint}!=80) {
            /varset healpoint 80
            /varset grouphealpoint 75
            /varset bighealpoint 60
            }
    } else {
        /if (${healpoint}!=70) {
            /varset healpoint 70
            /varset grouphealpoint 75
            /varset bighealpoint 60
            }
    }
} else /if (${healpoint}!=${tbmhealpoint}&& !${Raid.Members}) {
    /varset healpoint ${tbmhealpoint}
    /varcalc grouphealpoint ${tbmhealpoint}-5
    /varcalc bighealpoint ${tbmhealpoint}-10
} else /if (${healpoint}!=${raidhealpoint}&& ${Raid.Members}) {
    /varset healpoint ${raidhealpoint}
    /varcalc grouphealpoint ${raidhealpoint}-5
    /varcalc bighealpoint ${raidhealpoint}-10
}
 
the targeting always defaults to last person in group.. if it bugs you make your tank last in group window. i dont know the answer to your other question
 
There has to be some way to change the percentage to heal. Right now the cleric is casting a HOT before complete heal at like 60%. That's cutting it close in a lot of instances and doesn't work at all for named mobs.
 
That sub is to modify heal %'s for the zones with debuff in them that limit your HP (Crypt of Sul and Ruins of Lxanvom in TBM expansion

These are the variables you will want to change for the heals, i haven't ever used the auto macros, but i don't think there is ini's for the heal %'s. I guess make bighealpoint higher to cast CH sooner
Rich (BB code):
        /declare healpoint				int             outer 80
	/declare grouphealpoint			int             outer 75
	/declare bighealpoint			        int             outer 60
	/declare patchhealpoint			int             outer 44
	/declare patchheal2point		        int             outer 34
	/declare clickhealpoint			int             outer 35
 
Just started using auto cleric on my 65 cleric and have a few questions. One my cleric always defaults to targeting my bst who is the 5th member of my group. My tank is #1, but he never targets him unless he is healing then switches back to the bst. Second how do I change the percent at which the cleric will complete heal? Would it be in the section listed below?

Rich (BB code):
Sub ConfigHeal/if (${Select[${Zone.ID},795,796]}==0 && !${Raid.Members}) {
    /if (${Me.XTarget}>2||${Me.XTarget[1].Named}) {
        /if (${healpoint}!=90) {
            /varset healpoint 90
            /varset grouphealpoint 75
            /varset bighealpoint 60
        }
    } else /if (${Me.XTarget[1].Level}>=${Me.Level}) {
        /if (${healpoint}!=85) {
            /varset healpoint 85
            /varset grouphealpoint 75
            /varset bighealpoint 60
            }
    } else /if (${Me.XTarget[1].Level}>=${Math.Calc[${Me.Level}-5]}) {
        /if (${healpoint}!=80) {
            /varset healpoint 80
            /varset grouphealpoint 75
            /varset bighealpoint 60
            }
    } else {
        /if (${healpoint}!=70) {
            /varset healpoint 70
            /varset grouphealpoint 75
            /varset bighealpoint 60
            }
    }
} else /if (${healpoint}!=${tbmhealpoint}&& !${Raid.Members}) {
    /varset healpoint ${tbmhealpoint}
    /varcalc grouphealpoint ${tbmhealpoint}-5
    /varcalc bighealpoint ${tbmhealpoint}-10
} else /if (${healpoint}!=${raidhealpoint}&& ${Raid.Members}) {
    /varset healpoint ${raidhealpoint}
    /varcalc grouphealpoint ${raidhealpoint}-5
    /varcalc bighealpoint ${raidhealpoint}-10
}

Yes this is where you will want to edit, change the healpoint and bighealpoint to like 80. Configheal is called as part of the main loop to kinda decide how dangerous a mob is and adjust healing accordingly ( start healing sooner on named and big packs, heal later on mobs more than 5 lvls below you, etc ). I would save the original values though, because at later lvls when complete heal isnt used anymore the original values work best...that 10sec CH cast sucks!
I know this because I have started a new crew to test my enchanter mac at lower lvls and am around lvl70 right now and see exactly what your seeing as far as the healing getting kind of scary. The changes I suggested are the exact same ones I made myself for this lvl range.
 
Yes this is where you will want to edit, change the healpoint and bighealpoint to like 80. Configheal is called as part of the main loop to kinda decide how dangerous a mob is and adjust healing accordingly ( start healing sooner on named and big packs, heal later on mobs more than 5 lvls below you, etc ). I would save the original values though, because at later lvls when complete heal isnt used anymore the original values work best...that 10sec CH cast sucks!
I know this because I have started a new crew to test my enchanter mac at lower lvls and am around lvl70 right now and see exactly what your seeing as far as the healing getting kind of scary. The changes I suggested are the exact same ones I made myself for this lvl range.

I could also make a new if statement in this sub where if healspell1==Complete Heal and healpoint !=80 then change values to be more TLP friendly.
 
I could also make a new if statement in this sub where if healspell1==Complete Heal and healpoint !=80 then change values to be more TLP friendly.

Honestly its probably fine for most normal situations, I'm just low lvl fighting shit way out of my league in crap gear.
 
Is there a way to turn off buffing? My cleric just spams a 4hr+ spell every time mobs are not in camp it's annoying.
 
Auto cleric question

Users who are viewing this thread

Back
Top
Cart