Dispatch and all Debuffs

Gene2713

Active Member
Not sure if this is the right place to ask. Is there a way to say in group they dispatch and debuff and such?
 

inire

Active Member
This question belongs in the EQ2bot question section, I believe.

You can modify your class iss file with a set of code for allowing announcements for dispatch and other debuffs with the announce options. Here's a section of code for Caco Blades from the dirge default ISS.

Code:
	;Always use Cacophony of Blades if available.
	if ${Me.Ability[${SpellType[155]}].IsReady}
	{
		if ${AnnounceMode}
		{
			eq2execute /raidsay Caco of Blades is up!
			eq2execute /g Caco of Blades is up!
		}
		call CastSpellRange 155 0 0 0 ${KillTarget} 0 0 1 0 1 0
		wait 20
	}
It checks to see if spell type 155 is up, then announces it via eq2execute and then fires it.
 

inire

Active Member
So, in the Brigand spell list, dispatch is spell range 100.

Line 312 of brigand.iss casts this spell when in combat and not the main tank.

You'd need to add a check for announce mode in there, and add the dispatch announce.

Please note that when you edit the class files they will get clobbered when you do a CVS checkout.
 

wired203

Active Member
Actually he should be able to add them to a Insertcharname.iss file so they never get overwritten. There's some info about using a custom .iss file based on charname. All I can do is point you in the direction, I have never messed with them before.
 
Top Bottom