This commit is contained in:
2024-05-08 21:58:05 -05:00
parent e120ae6e18
commit 55b6f95696
+22 -22
View File
@@ -681,28 +681,28 @@ public class WorldServer {
}
//add extra vendors for lakebane
//
try {
Building sdrHut = BuildingManager.getBuilding(180430);
Zone sdr = sdrHut.parentZone;
boolean exists = false;
for(NPC merchant : sdr.zoneNPCSet)
if(merchant.contract.getContractID() == 1200) {
exists = true;
merchant.sellPercent = 499.95f;
}
if (!exists) {
NPC runeMerchant = NPC.createNPC("Runey", 1200, Vector3fImmutable.ZERO, Guild.getGuild(6), ZoneManager.getZoneByUUID(656), (short) 70, null);
runeMerchant.sellPercent = 499.95f;
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(180430);
// Zone sdr = sdrHut.parentZone;
// boolean exists = false;
// for(NPC merchant : sdr.zoneNPCSet)
// if(merchant.contract.getContractID() == 1200) {
// exists = true;
// merchant.sellPercent = 499.95f;
// }
// if (!exists) {
// NPC runeMerchant = NPC.createNPC("Runey", 1200, Vector3fImmutable.ZERO, Guild.getGuild(6), ZoneManager.getZoneByUUID(656), (short) 70, null);
// runeMerchant.sellPercent = 499.95f;
// 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(27978);
// Zone sdr = sdrHut.parentZone;