|
|
|
@ -104,19 +104,23 @@ public class DungeonManager {
@@ -104,19 +104,23 @@ public class DungeonManager {
|
|
|
|
|
|
|
|
|
|
public static void createDungeon(Vector3fImmutable loc, int count){ |
|
|
|
|
|
|
|
|
|
Zone parent = ZoneManager.findSmallestZone(loc); |
|
|
|
|
Zone parent = ZoneManager.getZoneByUUID(993); |
|
|
|
|
|
|
|
|
|
Dungeon dungeon = new Dungeon(loc,count); |
|
|
|
|
|
|
|
|
|
Vector3fImmutable loc1 = new Vector3fImmutable(loc.x + 128,loc.y,loc.z + 128); |
|
|
|
|
Vector3fImmutable loc2 = new Vector3fImmutable(loc.x - 128,loc.y,loc.z - 128); |
|
|
|
|
Vector3fImmutable loc3 = new Vector3fImmutable(loc.x - 128,loc.y,loc.z + 128); |
|
|
|
|
Vector3fImmutable loc4 = new Vector3fImmutable(loc.x + 128,loc.y,loc.z - 128); |
|
|
|
|
|
|
|
|
|
Building building1 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450200,loc1,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,454200,0f,0f); |
|
|
|
|
Building building2 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450200,loc2,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,454200,0f,0f); |
|
|
|
|
Building building3 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450200,loc3,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,454200,0f,0f); |
|
|
|
|
Building building4 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450200,loc4,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,454200,0f,0f); |
|
|
|
|
Vector3fImmutable loc1 = new Vector3fImmutable(128,0,128); |
|
|
|
|
Vector3fImmutable loc2 = new Vector3fImmutable(-128,0,-128); |
|
|
|
|
Vector3fImmutable loc3 = new Vector3fImmutable(-128,0,128); |
|
|
|
|
Vector3fImmutable loc4 = new Vector3fImmutable(128,0,-128); |
|
|
|
|
|
|
|
|
|
Building building1 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450800,loc1,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,450800,0f,0f); |
|
|
|
|
Building building2 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450800,loc2,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,450800,0f,0f); |
|
|
|
|
Building building3 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450800,loc3,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,450800,0f,0f); |
|
|
|
|
Building building4 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450800,loc4,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,450800,0f,0f); |
|
|
|
|
building1.setLoc(loc1); |
|
|
|
|
building2.setLoc(loc2); |
|
|
|
|
building3.setLoc(loc3); |
|
|
|
|
building4.setLoc(loc4); |
|
|
|
|
WorldGrid.addObject(building1,loc1.x,loc1.z); |
|
|
|
|
WorldGrid.addObject(building2,loc2.x,loc2.z); |
|
|
|
|
WorldGrid.addObject(building3,loc3.x,loc3.z); |
|
|
|
|