DarkEmu_GameServer.Systems.StopEffectTimer C# (CSharp) Method

StopEffectTimer() public method

public StopEffectTimer ( byte e_index ) : void
e_index byte
return void
        void StopEffectTimer(byte e_index)
        {
            if (Timer.EffectTimer[e_index] != null)
            {
                Timer.EffectTimer[e_index].Dispose();
                Timer.EffectTimer[e_index] = null;
            }

            if (this.Character.Action.DeBuff.Effect.EffectImpactTimer[e_index] != null)
            {
                this.Character.Action.DeBuff.Effect.EffectImpactTimer[e_index].Dispose();
                this.Character.Action.DeBuff.Effect.EffectImpactTimer[e_index] = null;
            }
        }
Systems