Exemple #1
0
 static void Main(string[] args)
 {
     try
     {
         Console.Title = "Point Blank Game Server";
         Logger.Info("===============================================================================");
         Logger.Info("Point Blank Game Server");
         Logger.Info("Develop OZ-Network.RU - 2016");
         Logger.Info("===============================================================================");
         ConfigModel.Load();
         Logger.Warn("Load XML=======================================================================");
         ChannelsParser.Load();
         GoodsParser.Load();
         LevelUpParser.Load();
         TutorialParser.Load();
         Logger.Warn("Load DataBase==================================================================");
         Connector.Connect();
         ClansTable.LoadTable();
         AccountTable.LoadTable();
         ItemsTable.LoadTable();
         PlayersTable.LoadTable();
         QuestsTable.LoadTable();
         TitlesTable.LoadTable();
         PlayersConfigTable.LoadTable();
         PlayersStatsTable.LoadTable();
         TitlesTable.LoadTable();
         PlayerEquipTable.LoadTable();
         PlayersMedalsTable.LoadTable();
         Logger.Warn("Load Network===================================================================");
         NetworkS.Load();
     }
     catch (Exception e)
     {
         Logger.Error("[FATAL ERROR] " + e);
     }
 }
Exemple #2
0
 public static NetworkS Load()
 {
     _instance = new NetworkS();
     return(_instance);
 }