Need minor help with AA abilities please

trillo

Active Member
I recently returned to EQ2, ISX, etc and pulled down the latest eq2bot.

I tweaked the Inq routine to use a different combat and healing routine while soloing to more fit my fighting style and all that is working fine with the following exception.

I have some Inq AP abilities that are melee attack alternates to some of the class spells, the abilities do not change and the damage is based on the spell.

So I am trying to make the script use the melee attacks when in melee range or cast when at range.

I updated the xml file with the following:

HTML:
   <Setting Name="1,400">Invocation Strike</Setting>
   <Setting Name="1,401">Strike of Flames</Setting>
   <Setting Name="1,402">Writhing Strike</Setting>
And the combat routine with:

Code:
   if ${Target.Distance}>6
   {
      call CastSpellRange 71 0 0 0 ${KillTarget}
   }
   else
   {
      call CastSpellRange 402
   }
Basically the script does not do the melee attack, no errors, nothing. I put an echo line in front and behind the melee line and both echoes show in the console so I am sure it is something simple I am overlooking. Any help is appreciated.

Thanks in advance,

Trillo
 
Top Bottom