SK fd'ing other toons

Amadeus

The Maestro
Staff member
Well, I put it in there because I preferred my healer (or anyone else) getting FD'd rather than dying. The time/energy to alt-tab or whatever to get to the person that was FD'd and hit spacebar was trivial compared to recovering from a wipe. And, well, if it's happening a lot ..you need to get better at keeping aggro.

But, if you want to remove it, just open /EQ2Bot/Class Routines/Shadowknight.iss and either remove this block or place a semicolon (;) in front of each line:
Code:
                                    elseif ${Me.Ability[${SpellType[330]}].IsReady}
                                    {
                                        ;ANNOUNCE IS BROKEN announce "${Actor[${MobTargetID}]} has aggro (${Actor[${MobTargetID}].Health}% health)...\n\\#FF6E6EFeigning ${CustomActor[${Counter}].Target}!" 3 1
                                        echo "EQ2Bot-DEBUG: Feigning ${Actor[${MobTargetID}]}!"
                                        call CastSpellRange 330 0 0 0 ${MobTargetID} 0 0 0 1
                                        echo "EQ2Bot-DEBUG: ${CustomActor[${Counter}]}'s target is now ${CustomActor[${Counter}].Target.Name}"
                                        return 1
                                    }
 
Top Bottom