DarkEmu_GameServer.Systems.SaveMaster C# (CSharp) Метод

SaveMaster() публичный Метод

public SaveMaster ( ) : void
Результат void
        void SaveMaster()
        {
            try
            {
                for (byte b = 1; b <= 7; b++)
                {
                    if (Character.Stat.Skill.Mastery[b] != 0) MsSQL.InsertData("update mastery set level='" + Character.Stat.Skill.Mastery_Level[b] + "' where owner='" + Character.Information.CharacterID + "' AND mastery='" + Character.Stat.Skill.Mastery[b] + "'");
                }
                MsSQL.InsertData("update character set sp='" + Character.Information.SkillPoint + "' where id='" + Character.Information.CharacterID + "'");
            }
            catch (Exception ex)
            {
                Systems.Debugger.Write(ex);
            }
        }
Systems