OpenNos.GameObject.Character.HealthMPLoad C# (CSharp) Méthode

HealthMPLoad() public méthode

public HealthMPLoad ( ) : int
Résultat int
        public int HealthMPLoad()
        {
            if (IsSitting)
            {
                return CharacterHelper.MPHealth[(byte)Class];
            }
            else if ((DateTime.Now - LastDefence).TotalSeconds > 2)
            {
                return CharacterHelper.MPHealthStand[(byte)Class];
            }
            else
            {
                return 0;
            }
        }
Character