• 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

AutoCleric 2.0

First page of this thread.

Follow Player - /chase -- Target PC to follow that toon / No Target cancels Followtoon -- /chaseon and /chaseoff are valid **KissAssist Commands**

Thanks but both my Bard who uses Kissassist and Cleric who uses autocleric get perma stuck to the tank/assist once I use the follow command I cant break the follow... I've tried every command listed on the forum and the recommendations mentioned above. I either have to zone the SK or logout in order to break the follow.
 
Thanks but both my Bard who uses Kissassist and Cleric who uses autocleric get perma stuck to the tank/assist once I use the follow command I cant break the follow... I've tried every command listed on the forum and the recommendations mentioned above. I either have to zone the SK or logout in order to break the follow.

maybe try /afollow off

Krawdad is right if it is stuck after doing /chaseoff. I have added extra checks now that if AdvFollowing it will properly push a /afollow off. It will be in my next release.
 
I'm running this on a f2p 88 cleric and it will try to cast a spell it doesn't have memed. When it does it will just sit to scribe and immediately stand up constantly all while showing the spell in the MQ window. I can manually scribe the spell and she will cast it. I'm assuming this is because it's expecting more spell slots than what my cleric has? Using non beta version.


Sent from my iPhone using Tapatalk
 
I'm running this on a f2p 88 cleric and it will try to cast a spell it doesn't have memed. When it does it will just sit to scribe and immediately stand up constantly all while showing the spell in the MQ window. I can manually scribe the spell and she will cast it. I'm assuming this is because it's expecting more spell slots than what my cleric has? Using non beta version.


Sent from my iPhone using Tapatalk

I'd use the beta version, and change first line Verbose to 1.
Rich (BB code):
/declare acverbose		int outer 1

This will give me a clue to what is causing that.
 
I switched to the beta and it was doing the same thing. Just saw your post though so I'll try that tonight if I have time.


Sent from my iPhone using Tapatalk
 
as soon as I do /mac autocleric, my lvl 96 cleric tries to cast circle of divinity, which it never succeeds. it stays in this loop and I cant get out of it, due to it trying to cast that aura. any help on breaking this?

gold account.

haven't done anything to the kissassist ini
 
Last edited:
I switched to the beta and it was doing the same thing. Just saw your post though so I'll try that tonight if I have time.


Sent from my iPhone using Tapatalk

as soon as I do /mac autocleric, my lvl 96 cleric tries to cast circle of divinity, which it never succeeds. it stays in this loop and I cant get out of it, due to it trying to cast that aura. any help on breaking this?

gold account.

haven't done anything to the kissassist ini

What version of Aura's do you guys have? I imagine this is an issue with Circle of Divinity the lvl 80 Cleric Aura spell, since this gets replaced in 100. Is it an Rk. II or regular, also I'll look at what the Aura effect is on Circle of Divinity. I believe it looks completely different in the Song window unless Daybreak changed it.

- - - Updated - - -

Ok looked and it looks like the game changed the persistant effect in November:
Rich (BB code):
2016-11-11 18:07	Changed Unknown217 from 0 to 1
2016-11-11 18:07	Changed Unknown211 from 1 to 0
2016-11-11 18:07	Changed Unknown216 from 1 to
Manually cast Circle of Divinity on your cleric and let me know what the effect is in the Song Window and if you are casting a Rank 1/2/3 version of the spell.
 
So I can tell you it's not just the aura. My account is a FTP so it's only a rank 1. I can manually scribe it and cast the aura and the spam stops for me. I'll be doing some testing later tonight and I'll provide as much as possible. I know it's hard to trouble shoot what you can't see or replicate.


Sent from my iPhone using Tapatalk
 
So I can tell you it's not just the aura. My account is a FTP so it's only a rank 1. I can manually scribe it and cast the aura and the spam stops for me. I'll be doing some testing later tonight and I'll provide as much as possible. I know it's hard to trouble shoot what you can't see or replicate.


Sent from my iPhone using Tapatalk

Was the account ever gold and you scribed Rk. II spells? because I know that will mess things up, since Rk. II is in the book but you can't use it unless you buy the unlock for 750 SC.
 
Ok, I changed the line to be verbose=1 like you called out earlier. It does the same thing. Yes my account was a gold account and has reverted back to a silver account. I do have RkII spells in my spell book however the spells its having issues with are only a rank 1 spell. It will come up in the MQ window: Memorizing Armor of the Devout, it will sit and immediately stand back up. It will repeat this over and over again. I can mem the spell manually and it will cast the spell with no problem. After it does that it starts up with the Aura of the Pious doing the same thing.
MQ Window.PNGCapture.PNG

I'll see about upgrading to gold next month and see if it makes any difference.
 
Last edited:
Ok, I changed the line to be verbose=1 like you called out earlier. It does the same thing. Yes my account was a gold account and has reverted back to a silver account. I do have RkII spells in my spell book however the spells its having issues with are only a rank 1 spell. It will come up in the MQ window: Memorizing Armor of the Devout, it will sit and immediately stand back up. It will repeat this over and over again. I can mem the spell manually and it will cast the spell with no problem. After it does that it starts up with the Aura of the Pious doing the same thing.
View attachment 11044View attachment 11045

I'll see about upgrading to gold next month and see if it makes any difference.

I'm betting it is a spell gem thing... from the sound of this. Low level, more than 8 gems, less than 12. I think you two are in a sweet spot that there is very very few players at. So the big question is how many spell gems do you have?

If its 9,10, or 11 I am thinking that is what is causing this. Based on this code:
Rich (BB code):
|-Declare spell variables
	/if (${Me.AltAbility[Mnemonic Retention]}==347) {
		/declare spellmisc	int outer 12
		/declare spellslots int outer 11
	} else {
		/declare spellmisc 	int outer 8
		/declare spellslots int outer 7
	}

You should change this line from 12 to your max gems
then change the line below that from 11 to yourmax gems -1

I'll put together a fix for this.

Update: Replace the above code with this:
Rich (BB code):
|-Declare spell variables
	/if (${Me.AltAbility[Mnemonic Retention].Rank}==4) {
		/declare spellmisc int outer 12
               /declare spellslots int outer 11
	} else /if (${Me.AltAbility[Mnemonic Retention].Rank}==3) {
		/declare spellmisc int outer 11
               /declare spellslots int outer 10
	} else /if (${Me.AltAbility[Mnemonic Retention].Rank}==2) {
		/declare spellmisc int outer 10
               /declare spellslots int outer 9
	} else /if (${Me.AltAbility[Mnemonic Retention].Rank}==1) {
		/declare spellmisc int outer 9
               /declare spellslots int outer 8
	} else {
		/declare spellmisc 	int outer 8
		/declare spellslots int outer 7
	}
 
I don't guess there is something like $ME.SpellSlot.Count? You could just make it dynamic? I've logged for the night but I'll test tomorrow.

I've got 10slots like I'm the screen shot. I'll try updating it from 12 to 10.


Sent from my iPhone using Tapatalk
 
I don't guess there is something like $ME.SpellSlot.Count? You could just make it dynamic? I've logged for the night but I'll test tomorrow.

I've got 10slots like I'm the screen shot. I'll try updating it from 12 to 10.


Sent from my iPhone using Tapatalk

Yeah, I updated the end of my post above with the fix so it will be dynamic on next update. You can retrofit your cleric with the code or just upgrade his aa to rank 4.
 
I was curious if it's possible to heal outside of grp by marking xtragets with my grp members. I sort of want the clr to heal the xtragets so I can move in another character to level. The clr is maxed and stuff so just looking for way to maximize some char exp/aa etc.
 
Only issue I see with that would be if the out of group took agro from the group and the tank could or would not take it back due to someone outside his group having agro.

Maybe not, but you would hate to have the OoG cleric get the snot beat out of them before the mob turned on the group.
 
Only issue I see with that would be if the out of group took agro from the group and the tank could or would not take it back due to someone outside his group having agro.

Maybe not, but you would hate to have the OoG cleric get the snot beat out of them before the mob turned on the group.

well it's a controlled environment with ench/bard/plenty of CC. I tested it out this evening. It seems to heal the tank but not the others on xtragets. I was just curious because I was wondering how it handled raid tank healing as well on xtarget.
Is there a good xtraget heal macro out there for something like raid tank lists on xtragets?
 
well it's a controlled environment with ench/bard/plenty of CC. I tested it out this evening. It seems to heal the tank but not the others on xtragets. I was just curious because I was wondering how it handled raid tank healing as well on xtarget.
Is there a good xtraget heal macro out there for something like raid tank lists on xtragets?

I have fixed this in Alpha it will be on 3.0 release due to drop this week.
 
How would I go about turning off cures and heals with cure components? I am about to start trying damsel of decay and I don't want to accidentally cure anything. Is it as simple as dememming those spells or should I just switch to KISS for this one fight?
 
Does your cleric need to be a certain level before they starting curing? I have not changed any settings and am just using default settings from latest download.
 
AutoCleric 2.0

Users who are viewing this thread

Back
Top
Cart