/// <summary> /// Called when a player leaves the game /// </summary> /// <param name="e">The event which was raised</param> /// <param name="sender">Sender of the event</param> /// <param name="args">EventArgs associated with the event</param> private static void PlayerLeftWorld(DOLEvent e, object sender, EventArgs args) { if (sender is GamePlayer player) { AdrenalineRushEffect spEffect = player.EffectList.GetOfType <AdrenalineRushEffect>(); spEffect?.Cancel(false); } }
/// <summary> /// Called when a player leaves the game /// </summary> /// <param name="e">The event which was raised</param> /// <param name="sender">Sender of the event</param> /// <param name="args">EventArgs associated with the event</param> private static void PlayerLeftWorld(DOLEvent e, object sender, EventArgs args) { GamePlayer player = (GamePlayer)sender; AdrenalineRushEffect SPEffect = player.EffectList.GetOfType <AdrenalineRushEffect>(); if (SPEffect != null) { SPEffect.Cancel(false); } }