public void Load() { CVSReader reader = new CVSReader(); reader.LoadText("Data/Config/Duplicate_duplicate.txt", 1); int rows = reader.GetRowCount(); for (int r = 0; r < rows; ++r) { string[] row = reader.GetRow(r); DuplicateDuplicateConfig ac = ConfigProcess(row) as DuplicateDuplicateConfig; configs.Add(ac.duplicateID, ac); } }
public void Load() { CVSReader reader = new CVSReader(); reader.LoadText("Data/Config/Mall_malltype.txt", 1); int rows = reader.GetRowCount(); for (int r = 0; r < rows; ++r) { string[] row = reader.GetRow(r); MallMalltypeConfig ac = ConfigProcess(row) as MallMalltypeConfig; configs.Add(ac.id, ac); } }
public void Load() { CVSReader reader = new CVSReader(); reader.LoadText("Data/Config/Randomname_manfirst.txt", 1); int rows = reader.GetRowCount(); for (int r = 0; r < rows; ++r) { string[] row = reader.GetRow(r); RandomnameManfirstConfig ac = ConfigProcess(row) as RandomnameManfirstConfig; configs.Add(ac.id, ac); } }
public void Load() { CVSReader reader = new CVSReader(); reader.LoadText("Data/Config/Teleport_born.txt", 1); int rows = reader.GetRowCount(); for (int r = 0; r < rows; ++r) { string[] row = reader.GetRow(r); TeleportBornConfig ac = ConfigProcess(row) as TeleportBornConfig; configs.Add(ac.id, ac); } }
public void Load() { CVSReader reader = new CVSReader(); reader.LoadText("Data/Config/Srvlist_area.txt", 1); int rows = reader.GetRowCount(); for (int r = 0; r < rows; ++r) { string[] row = reader.GetRow(r); SrvlistAreaConfig ac = ConfigProcess(row) as SrvlistAreaConfig; configs.Add(ac.id, ac); } }
public void Load() { CVSReader reader = new CVSReader(); reader.LoadText("Data/Config/Role_warrior.txt", 1); int rows = reader.GetRowCount(); for (int r = 0; r < rows; ++r) { string[] row = reader.GetRow(r); RoleWarriorConfig ac = ConfigProcess(row) as RoleWarriorConfig; configs.Add(ac.lv, ac); } }
public void Load() { CVSReader reader = new CVSReader(); reader.LoadText("Data/Config/Avocation_avocationskill.txt", 1); int rows = reader.GetRowCount(); for (int r = 0; r < rows; ++r) { string[] row = reader.GetRow(r); AvocationAvocationskillConfig ac = ConfigProcess(row) as AvocationAvocationskillConfig; configs.Add(ac.id, ac); } }
public void Load() { CVSReader reader = new CVSReader(); reader.LoadText("Data/Config/Chat_chat.txt", 1); int rows = reader.GetRowCount(); for (int r = 0; r < rows; ++r) { string[] row = reader.GetRow(r); ChatChatConfig ac = ConfigProcess(row) as ChatChatConfig; configs.Add(ac.chatId, ac); } }