Trying to add Racial Attacks

TheDragon

Active Member
Ok, so I'm trying my first experiment at editting the illusionist.iss and illusionist class file.

In the spell file, I added the racial attack spell he gets and assigned it the next highest number and spell level of 10.

Code:
<Setting Name="10,396">Arc of Lightning</Setting>
Then, in the ISS file, I added the following under if dps mode is true

Code:
	if ${Me.Ability[${SpellType[396]}](exists)}
	{
	    if (${Me.Ability[${SpellType[396]}].IsReady})
		    call CastSpellRange 396 0 0 0 ${KillTarget}
	}
Now, I noticed that the ability doesn't come up as a missing ability in the IS window when you first run EQ2Bot.

And, it doesn't work in combat, even with dps mode on.

Am I on the right track? If I can get this working, I'd like to add all of the racial abilities since that's an extra attack that isn't being utilized atm.

Thanks!
 

TheDragon

Active Member
Update:

I moved it out of the dps area and into the main body of the combat loop and now it works... very cool!

Anyone interested in having those added? It seems like the combat code would be re-usable, as would the entries for the racial attacks themselves - tho the numbers would change per class.
 
Top Bottom