|
|
|
@ -617,6 +617,11 @@ public class WorldServer {
@@ -617,6 +617,11 @@ public class WorldServer {
|
|
|
|
|
|
|
|
|
|
for (NPC n : npcs) { |
|
|
|
|
n.setObjectTypeMask(MBServerStatics.MASK_NPC); |
|
|
|
|
|
|
|
|
|
if(n.contract.getContractID() == 1200) { |
|
|
|
|
DbManager.NPCQueries.DELETE_NPC(n); |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
n.setLoc(n.getLoc()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -632,26 +637,26 @@ public class WorldServer {
@@ -632,26 +637,26 @@ public class WorldServer {
|
|
|
|
|
} |
|
|
|
|
//add extra vendors for lakebane
|
|
|
|
|
//
|
|
|
|
|
//try {
|
|
|
|
|
// Building sdrHut = BuildingManager.getBuilding(27979);
|
|
|
|
|
// Zone sdr = sdrHut.parentZone;
|
|
|
|
|
// boolean exists = false;
|
|
|
|
|
// for(NPC merchant : sdr.zoneNPCSet)
|
|
|
|
|
// if(merchant.contract.getContractID() == 1200)
|
|
|
|
|
// exists = true;
|
|
|
|
|
// if (!exists) {
|
|
|
|
|
// NPC runeMerchant = NPC.createNPC("Runey", 1200, Vector3fImmutable.ZERO, Guild.getGuild(6), ZoneManager.getZoneByUUID(656), (short) 70, null);
|
|
|
|
|
// runeMerchant.sellPercent = 9999.00f;
|
|
|
|
|
// runeMerchant.buildingUUID = sdrHut.getObjectUUID();
|
|
|
|
|
// runeMerchant.building = sdrHut;
|
|
|
|
|
// NPCManager.slotCharacterInBuilding(runeMerchant);
|
|
|
|
|
// runeMerchant.setLoc(runeMerchant.bindLoc);
|
|
|
|
|
// runeMerchant.updateDatabase();
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
//catch(Exception e){
|
|
|
|
|
// Logger.error("FAILED TO ADD RUNE MERCHANT");
|
|
|
|
|
//}
|
|
|
|
|
try { |
|
|
|
|
Building sdrHut = BuildingManager.getBuilding(27979); |
|
|
|
|
Zone sdr = sdrHut.parentZone; |
|
|
|
|
boolean exists = false; |
|
|
|
|
for(NPC merchant : sdr.zoneNPCSet) |
|
|
|
|
if(merchant.contract.getContractID() == 1200) |
|
|
|
|
exists = true; |
|
|
|
|
if (!exists) { |
|
|
|
|
NPC runeMerchant = NPC.createNPC("Runey", 1200, Vector3fImmutable.ZERO, Guild.getGuild(6), ZoneManager.getZoneByUUID(656), (short) 70, null); |
|
|
|
|
runeMerchant.sellPercent = 9999.00f; |
|
|
|
|
runeMerchant.buildingUUID = sdrHut.getObjectUUID(); |
|
|
|
|
runeMerchant.building = sdrHut; |
|
|
|
|
NPCManager.slotCharacterInBuilding(runeMerchant); |
|
|
|
|
runeMerchant.setLoc(runeMerchant.bindLoc); |
|
|
|
|
runeMerchant.updateDatabase(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
catch(Exception e){ |
|
|
|
|
Logger.error("FAILED TO ADD RUNE MERCHANT"); |
|
|
|
|
} |
|
|
|
|
Logger.info("time to load World Objects: " + (System.currentTimeMillis() - start) + " ms"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|