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.
Then, in the ISS file, I added the following under if dps mode is true
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!
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>
Code:
if ${Me.Ability[${SpellType[396]}](exists)}
{
if (${Me.Ability[${SpellType[396]}].IsReady})
call CastSpellRange 396 0 0 0 ${KillTarget}
}
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!