Expanded Disciple of Mephistopheles for epic progression. Expanded Disciple of Soul Eater for epic progression. Crusader's Aura of Triumph has a range of Touch. Swordsage's Pearl of Black Doubt may actually increase AC now. Crusader's Steely Resolve should start back up after logging back into MP. Hopefully Desert Wind strikes will no longer burn the wielder when using Flame Weapon. Keen Senses should go away when leaving Hunter's Senses stance. Moment of Prescience should be calculating bonuses correctly.
15 lines
458 B
Plaintext
15 lines
458 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: OnClientLeave eventscript
|
|
//:: prc_onleave
|
|
//:://////////////////////////////////////////////
|
|
#include "prc_class_const"
|
|
#include "inc_utility"
|
|
|
|
void main()
|
|
{
|
|
//:: Execute scripts hooked to this event for the player triggering it
|
|
object oPC = GetExitingObject();
|
|
AssignCommand(GetModule(), DelayCommand(0.1, RecalculateTime()));
|
|
ExecuteAllScriptsHookedToEvent(oPC, EVENT_ONCLIENTLEAVE);
|
|
}
|