loot system debugging

This commit is contained in:
2023-04-06 20:35:03 -05:00
parent 5efb5d0d4b
commit 847c8bc08f
2 changed files with 20 additions and 4 deletions
+18 -2
View File
@@ -133,8 +133,12 @@ public class dbLootTableHandler extends dbHandlerBase {
ResultSet rs = executeQuery(); ResultSet rs = executeQuery();
while (rs.next()) { while (rs.next()) {
LootManager.GenTable gt = new LootManager.GenTable(); try {
LootManager.AddGenTableRow(rs.getInt("groupID"),gt,new LootManager.GenTableRow(rs)); LootManager.GenTable gt = new LootManager.GenTable();
LootManager.AddGenTableRow(rs.getInt("groupID"), gt, new LootManager.GenTableRow(rs));
} catch(Exception ex){
Logger.info("LOOT TABLE ERROR FOR TABLE: " + rs.getInt("groupID"));
}
} }
Logger.info( "read: " + recordsRead); Logger.info( "read: " + recordsRead);
@@ -158,8 +162,12 @@ public class dbLootTableHandler extends dbHandlerBase {
while (rs.next()) { while (rs.next()) {
recordsRead++; recordsRead++;
try{
LootManager.ItemTable it = new LootManager.ItemTable(); LootManager.ItemTable it = new LootManager.ItemTable();
LootManager.AddItemTableRow(rs.getInt("lootTable"),it,new LootManager.ItemTableRow(rs)); LootManager.AddItemTableRow(rs.getInt("lootTable"),it,new LootManager.ItemTableRow(rs));
} catch(Exception ex){
Logger.info("LOOT TABLE ERROR FOR TABLE: " + rs.getInt("lootTable"));
}
} }
Logger.info("read: " + recordsRead); Logger.info("read: " + recordsRead);
@@ -182,8 +190,12 @@ public class dbLootTableHandler extends dbHandlerBase {
while (rs.next()) { while (rs.next()) {
recordsRead++; recordsRead++;
try{
LootManager.ModTypeTable mtt = new LootManager.ModTypeTable(); LootManager.ModTypeTable mtt = new LootManager.ModTypeTable();
LootManager.AddModTypeTableRow(rs.getInt("modGroup"),mtt,new LootManager.ModTypeTableRow(rs)); LootManager.AddModTypeTableRow(rs.getInt("modGroup"),mtt,new LootManager.ModTypeTableRow(rs));
} catch(Exception ex){
Logger.info("LOOT TABLE ERROR FOR TABLE: " + rs.getInt("modGroup"));
}
} }
Logger.info( "read: " + recordsRead); Logger.info( "read: " + recordsRead);
@@ -206,8 +218,12 @@ public class dbLootTableHandler extends dbHandlerBase {
while (rs.next()) { while (rs.next()) {
recordsRead++; recordsRead++;
try{
LootManager.ModTable mt = new LootManager.ModTable(); LootManager.ModTable mt = new LootManager.ModTable();
LootManager.AddModTableRow(rs.getInt("modTable"),mt,new LootManager.ModTableRow(rs)); LootManager.AddModTableRow(rs.getInt("modTable"),mt,new LootManager.ModTableRow(rs));
} catch(Exception ex){
Logger.info("LOOT TABLE ERROR FOR TABLE: " + rs.getInt("modTable"));
}
} }
Logger.info( "read: " + recordsRead); Logger.info( "read: " + recordsRead);
+2 -2
View File
@@ -295,11 +295,11 @@ public class WorldServer {
MobbaseGoldEntry.LoadMobbaseGold(); MobbaseGoldEntry.LoadMobbaseGold();
//load lootTable //load lootTable
Logger.info("Loading Loot Tables"); //Logger.info("Loading Loot Tables");
//LootTable.populateLootTables(); //LootTable.populateLootTables();
// Load new loot system // Load new loot system
Logger.info("Loading SuperLoot Tables"); Logger.info("Loading New Loot Tables");
LootManager.loadLootData(); LootManager.loadLootData();
RuneBaseAttribute.LoadAllAttributes(); RuneBaseAttribute.LoadAllAttributes();
RuneBase.LoadAllRuneBases(); RuneBase.LoadAllRuneBases();