DarkEmu_GameServer.Systems.SkillBuffGetFreeSlot C# (CSharp) Méthode

SkillBuffGetFreeSlot() public méthode

public SkillBuffGetFreeSlot ( ) : byte
Résultat byte
        public byte SkillBuffGetFreeSlot()
        {
            for (byte b = 0; b <= Character.Action.Buff.SkillID.Length - 1; b++)
                if (Character.Action.Buff.SkillID[b] == 0) return b;
            return 255;
        }
Systems