From 17b48602a017c67f0362a80aeb7dab10d5fd1593 Mon Sep 17 00:00:00 2001 From: Ty Conner Date: Sat, 1 Jul 2017 19:38:40 -0400 Subject: [PATCH] Initial Generators (#23) * Removed Generator Objects From Export Removed PCAPed generators as exported spawned objects. They're still in as weenies to be used later * Auto Increment Changes Added AUTO_INCREMENT to aceObjectId and weenieClassId to support adding back in objects to the world which have to be manually created * Added database prep script This makes it so that any objects (re)created for ACE are assigned weenie or object ids starting at 100000 when compiling the database for distribution. * Added Initial Base Generator Weenies and Objects Added the base generator weenies and objects that seemingly were used by the all the instance generators. These are simply the core of them and not specifc or unique to any one instance * Generators for Training Dungeon (Part1) When you initially create a character in AC, you enter the world in a training dungeon. In ACE, currently you enter in the 7F03 instance, so these generators fill in the first accessible part of that instance. * Fixing line alignment * Git Changes * Tweaked Database Prep Script Made the seperation between new ACE weenies and new ACE objects significantly wider to prevent overlap of new objects and weenies * Inital Core Object Delete Script Added a script with found duplicated or regenerated objects to delete from ACE-World following import of PCAP data * White Rabbit Sample of new Weenie & new Generator * The Chicken Sample of new Weenie & new Generator * Whitespace Adjustments * More whitespace issues * Added Generator Links Table Table structure and code provided by @Lidefeath --- .editorconfig | 11 + .gitignore | 2 +- Database/1-Base/WorldBase.sql | 25 +- .../dereth-museum/combined/README.md | 0 .../dereth-museum/combined/combine.bat | 0 .../pkt_2017-1-22_1485062740_log.pcap | Bin Database/3-Core/000-PrepDatabase.sql | 34 + Database/3-Core/2-objects/Generators_0.sql | 5884 ----------------- .../3-apprasialobjects/Generators_0.sql | 12 - .../4-CoreUpdates/000-ObjectsToDelete.sql | 37 + .../00000000-InitialGenerators.sql | 814 +++ Database/6-Generators/1246.sql | 83 + Database/6-Generators/7F03.sql | 908 +++ Database/6-Generators/A9B3.sql | 83 + Database/compiled/combine.bat | 4 + 15 files changed, 1997 insertions(+), 5900 deletions(-) create mode 100644 .editorconfig rename Database/{6-Overwrites => 10-Overwrites}/dereth-museum/combined/README.md (100%) rename Database/{6-Overwrites => 10-Overwrites}/dereth-museum/combined/combine.bat (100%) rename Database/{6-Overwrites => 10-Overwrites}/dereth-museum/pkt_2017-1-22_1485062740_log.pcap (100%) create mode 100644 Database/3-Core/000-PrepDatabase.sql delete mode 100644 Database/3-Core/2-objects/Generators_0.sql delete mode 100644 Database/3-Core/3-apprasialobjects/Generators_0.sql create mode 100644 Database/4-CoreUpdates/000-ObjectsToDelete.sql create mode 100644 Database/6-Generators/00000000-InitialGenerators.sql create mode 100644 Database/6-Generators/1246.sql create mode 100644 Database/6-Generators/7F03.sql create mode 100644 Database/6-Generators/A9B3.sql diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..243302c019 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +charset = utf-8 +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +indent_size = 2 diff --git a/.gitignore b/.gitignore index 3a86b85430..720d5371ea 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ Database/compiled/*.sql Database/combined/*.sql Database/3-Core/combined/*.sql -Database/5-Overwrites/dereth-museum/combined/*.sql +Database/10-Overwrites/dereth-museum/combined/*.sql ################# ## Eclipse diff --git a/Database/1-Base/WorldBase.sql b/Database/1-Base/WorldBase.sql index e9a9ee9ecc..e4edf358fc 100644 --- a/Database/1-Base/WorldBase.sql +++ b/Database/1-Base/WorldBase.sql @@ -25,7 +25,7 @@ DROP TABLE IF EXISTS `ace_object`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ace_object` ( - `aceObjectId` int(10) unsigned NOT NULL, + `aceObjectId` int(10) unsigned NOT NULL AUTO_INCREMENT, `aceObjectDescriptionFlags` int(10) unsigned NOT NULL, `weenieClassId` int(10) unsigned NOT NULL, `weenieHeaderFlags` int(10) unsigned DEFAULT NULL, @@ -53,6 +53,25 @@ CREATE TABLE `ace_object_animation_change` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `ace_object_generator_link` +-- + +DROP TABLE IF EXISTS `ace_object_generator_link`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ace_object_generator_link` ( + `aceObjectId` int(10) unsigned NOT NULL, + `index` tinyint(3) unsigned NOT NULL, + `generatorWeenieClassId` int(10) unsigned NOT NULL, + `generatorWeight` tinyint(3) unsigned NOT NULL, + PRIMARY KEY (`aceObjectId`,`index`), + KEY `idx_generator_link__AceObject` (`generatorWeenieClassId`), + CONSTRAINT `fk_generator_link__AceObject` FOREIGN KEY (`aceObjectId`) REFERENCES `ace_object` (`aceObjectId`) ON DELETE CASCADE, + CONSTRAINT `fk_generator_link__AceWeenieClass` FOREIGN KEY (`generatorWeenieClassId`) REFERENCES `ace_weenie_class` (`weenieClassId`) ON DELETE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `ace_object_palette_change` -- @@ -313,7 +332,7 @@ DROP TABLE IF EXISTS `ace_weenie_class`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ace_weenie_class` ( - `weenieClassId` int(10) unsigned NOT NULL, + `weenieClassId` int(10) unsigned NOT NULL AUTO_INCREMENT, `weenieClassDescription` text NOT NULL, PRIMARY KEY (`weenieClassId`), UNIQUE KEY `idx_weenieName` (`weenieClassDescription`(100)) @@ -450,4 +469,4 @@ SET character_set_client = @saved_cs_client; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2017-06-24 14:32:10 +-- Dump completed on 2017-07-01 15:58:41 diff --git a/Database/6-Overwrites/dereth-museum/combined/README.md b/Database/10-Overwrites/dereth-museum/combined/README.md similarity index 100% rename from Database/6-Overwrites/dereth-museum/combined/README.md rename to Database/10-Overwrites/dereth-museum/combined/README.md diff --git a/Database/6-Overwrites/dereth-museum/combined/combine.bat b/Database/10-Overwrites/dereth-museum/combined/combine.bat similarity index 100% rename from Database/6-Overwrites/dereth-museum/combined/combine.bat rename to Database/10-Overwrites/dereth-museum/combined/combine.bat diff --git a/Database/6-Overwrites/dereth-museum/pkt_2017-1-22_1485062740_log.pcap b/Database/10-Overwrites/dereth-museum/pkt_2017-1-22_1485062740_log.pcap similarity index 100% rename from Database/6-Overwrites/dereth-museum/pkt_2017-1-22_1485062740_log.pcap rename to Database/10-Overwrites/dereth-museum/pkt_2017-1-22_1485062740_log.pcap diff --git a/Database/3-Core/000-PrepDatabase.sql b/Database/3-Core/000-PrepDatabase.sql new file mode 100644 index 0000000000..c8f6876b0e --- /dev/null +++ b/Database/3-Core/000-PrepDatabase.sql @@ -0,0 +1,34 @@ +/* This script prepares ace_weenie_class and ace_object for easily identifiable ACE generated objects */ +/* This script is meant to be run after the completion of inserting all weenie data from PCAP exports */ + +USE `ace_world`; + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'ace99999-counterreset'; + +DELETE FROM ace_weenie_class +WHERE weenieClassId = 99999; + +BEGIN WORK; +/* Set Weenie Counter to 100000 */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (99999, 'ace99999-counterreset'); + +/* Set Object Counter to 1000000 */ +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (999999, 0, 99999); +ROLLBACK; + +DELETE FROM ace_weenie_class +WHERE weenieClassId = 99999; + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'ace99999-counterreset'; + diff --git a/Database/3-Core/2-objects/Generators_0.sql b/Database/3-Core/2-objects/Generators_0.sql deleted file mode 100644 index 9e5e482985..0000000000 --- a/Database/3-Core/2-objects/Generators_0.sql +++ /dev/null @@ -1,5884 +0,0 @@ -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3690389018, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3690389018, 1, 3967156257, 101.5873, 14.73479, 12.0025, -0.9832674, 0, 0, -0.1821681); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3690389018, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3690389018, 8, 100667494) - , (3690389018, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3690389018, 53, 101) - , (3690389018, 1, 0) - , (3690389018, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3690389018, 11, True) - , (3690389018, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3690525671, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3690525671, 1, 3950510135, 147.9999, 166.3209, 29.00289, -0.6329244, 0, 0, -0.7742136); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3690525671, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3690525671, 8, 100667494) - , (3690525671, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3690525671, 53, 101) - , (3690525671, 1, 0) - , (3690525671, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3690525671, 11, True) - , (3690525671, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3690526220, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3690526220, 1, 3950641184, 77.0048, 182.6904, 16.36189, -0.8550984, 0, 0, -0.5184658); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3690526220, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3690526220, 8, 100667494) - , (3690526220, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3690526220, 53, 101) - , (3690526220, 1, 0) - , (3690526220, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3690526220, 11, True) - , (3690526220, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3690526556, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3690526556, 1, 3950706697, 34.37457, 22.64014, 20.38573, 0.3127692, 0, 0, -0.9498292); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3690526556, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3690526556, 8, 100667494) - , (3690526556, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3690526556, 53, 101) - , (3690526556, 1, 0) - , (3690526556, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3690526556, 11, True) - , (3690526556, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3691228499, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3691228499, 1, 498270227, 68.48365, 69.00501, -0.75, 0.4568189, 0, 0, -0.8895597); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3691228499, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3691228499, 8, 100667494) - , (3691228499, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3691228499, 1, 0) - , (3691228499, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3691228499, 11, True) - , (3691228499, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3699858795, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3699858795, 1, 3967680572, 190.4307, 88.91579, -0.8975, -0.8997254, 0, 0, -0.4364563); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3699858795, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3699858795, 8, 100667494) - , (3699858795, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3699858795, 53, 101) - , (3699858795, 1, 0) - , (3699858795, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3699858795, 11, True) - , (3699858795, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3699858767, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3699858767, 1, 3967615005, 81.12919, 102.656, 6.743338, -0.8725741, 0, 0, -0.4884818); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3699858767, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3699858767, 8, 100667494) - , (3699858767, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3699858767, 53, 101) - , (3699858767, 1, 0) - , (3699858767, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3699858767, 11, True) - , (3699858767, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3699859902, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3699859902, 1, 3950641198, 139.6546, 130.8383, 14.36481, 0.942957, 0, 0, -0.3329144); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3699859902, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3699859902, 8, 100667494) - , (3699859902, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3699859902, 53, 101) - , (3699859902, 1, 0) - , (3699859902, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3699859902, 11, True) - , (3699859902, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3699859894, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3699859894, 1, 3950641204, 157.6422, 77.69676, 14.39109, -0.2910029, 0, 0, -0.9567222); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3699859894, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3699859894, 8, 100667494) - , (3699859894, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3699859894, 53, 101) - , (3699859894, 1, 0) - , (3699859894, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3699859894, 11, True) - , (3699859894, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3699860045, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3699860045, 1, 3967352854, 51.30495, 142.2011, 13.72706, 0.835303, 0, 0, -0.5497898); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3699860045, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3699860045, 8, 100667494) - , (3699860045, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3699860045, 53, 101) - , (3699860045, 1, 0) - , (3699860045, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3699860045, 11, True) - , (3699860045, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3699860417, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3699860417, 1, 3967287309, 46.09581, 104.9196, 14.16077, -0.01567828, 0, 0, -0.9998771); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3699860417, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3699860417, 8, 100667494) - , (3699860417, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3699860417, 53, 101) - , (3699860417, 1, 0) - , (3699860417, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3699860417, 11, True) - , (3699860417, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3699860664, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3699860664, 1, 3950444604, 182.6251, 91.43906, 17.18435, -0.4831883, 0, 0, -0.8755165); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3699860664, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3699860664, 8, 100667494) - , (3699860664, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3699860664, 53, 101) - , (3699860664, 1, 0) - , (3699860664, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3699860664, 11, True) - , (3699860664, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3699860938, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3699860938, 1, 3950379068, 171.699, 80.92536, 17.69382, 0.4219064, 0, 0, -0.9066394); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3699860938, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3699860938, 8, 100667494) - , (3699860938, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3699860938, 53, 101) - , (3699860938, 1, 0) - , (3699860938, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3699860938, 11, True) - , (3699860938, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3699861125, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3699861125, 1, 3967090697, 36.62669, 12.29702, 16.95021, 0.8087459, 0, 0, -0.5881582); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3699861125, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3699861125, 8, 100667494) - , (3699861125, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3699861125, 53, 101) - , (3699861125, 1, 0) - , (3699861125, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3699861125, 11, True) - , (3699861125, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3706877548, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3706877548, 1, 397672460, 30.07453, 77.13943, 20.15, 0.9458074, 0, 0, -0.3247281); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3706877548, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3706877548, 8, 100667494) - , (3706877548, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3706877548, 1, 0) - , (3706877548, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3706877548, 11, True) - , (3706877548, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3706877692, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3706877692, 1, 380960797, 72.64574, 103.6181, 20.15, 0.3520125, 0, 0, -0.9359953); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3706877692, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3706877692, 8, 100667494) - , (3706877692, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3706877692, 1, 0) - , (3706877692, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3706877692, 11, True) - , (3706877692, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3706603324, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3706603324, 1, 381026360, 160.6149, 172.693, 20.54109, 0.07046061, 0, 0, -0.9975145); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3706603324, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3706603324, 8, 100667494) - , (3706603324, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3706603324, 1, 0) - , (3706603324, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3706603324, 11, True) - , (3706603324, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3706877714, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3706877714, 1, 397738011, 80.6333, 56.01021, 18.86944, -0.0480366, 0, 0, -0.9988456); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3706877714, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3706877714, 8, 100667494) - , (3706877714, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3706877714, 1, 0) - , (3706877714, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3706877714, 11, True) - , (3706877714, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3706879411, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3706879411, 1, 347340861, 181.6415, 116.574, 14.42358, 0.2553937, 0, 0, -0.9668372); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3706879411, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3706879411, 8, 100667494) - , (3706879411, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3706879411, 1, 0) - , (3706879411, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3706879411, 11, True) - , (3706879411, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3706881068, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3706881068, 1, 364314645, 71.02335, 112.2125, 26.15, -0.9465575, 0, 0, -0.3225351); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3706881068, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3706881068, 8, 100667494) - , (3706881068, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3706881068, 1, 0) - , (3706881068, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3706881068, 11, True) - , (3706881068, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2930046122, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2930046122, 1, 515899413, 52.22132, 111.7457, 91.46214, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2930046122, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2930046122, 8, 100667494) - , (2930046122, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2930046122, 1, 0) - , (2930046122, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2930046122, 11, True) - , (2930046122, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2930050567, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2930050567, 1, 566362122, 29.22935, 24.27934, 78.15, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2930050567, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2930050567, 8, 100667494) - , (2930050567, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2930050567, 1, 0) - , (2930050567, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2930050567, 11, True) - , (2930050567, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2930053255, 148, 27719, 0, NULL, 32773); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2930053255, 1, 583335938, 15.93816, 31.69905, 83.49295, -0.8827571, 0, 0, -0.4698296); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2930053255, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2930053255, 8, 100667494) - , (2930053255, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2930053255, 1, 0) - , (2930053255, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2930053255, 11, True) - , (2930053255, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2930053240, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2930053240, 1, 566558751, 93.11809, 151.8384, 65.4968, -0.6192871, 0, 0, -0.7851646); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2930053240, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2930053240, 8, 100667494) - , (2930053240, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2930053240, 1, 0) - , (2930053240, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2930053240, 11, True) - , (2930053240, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2929843062, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2929843062, 1, 549912615, 109.8136, 153.1063, 22.24001, -0.04394991, 0, 0, -0.9990337); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2929843062, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2929843062, 8, 100667494) - , (2929843062, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2929843062, 1, 0) - , (2929843062, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2929843062, 11, True) - , (2929843062, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3360191514, 148, 27803, 0, NULL, 163845); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3360191514, 1, 3967680540, 91.28867, 80.5209, 8.41172, 0.3118951, 0, 0, -0.9501165); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3360191514, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3360191514, 8, 100667494) - , (3360191514, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3360191514, 53, 101) - , (3360191514, 1, 0) - , (3360191514, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3360191514, 11, True) - , (3360191514, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3360193028, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3360193028, 1, 3950903323, 82.45926, 67.84171, 17.83355, -0.9994334, 0, 0, -0.03365778); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3360193028, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3360193028, 8, 100667494) - , (3360193028, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3360193028, 53, 101) - , (3360193028, 1, 0) - , (3360193028, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3360193028, 11, True) - , (3360193028, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3360193125, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3360193125, 1, 3950837805, 130.9058, 103.8141, 16.60907, 0.8616604, 0, 0, -0.5074853); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3360193125, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3360193125, 8, 100667494) - , (3360193125, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3360193125, 53, 101) - , (3360193125, 1, 0) - , (3360193125, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3360193125, 11, True) - , (3360193125, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3360192127, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3360192127, 1, 3933995065, 186.9198, 21.77036, 14.18843, 0.09364793, 0, 0, -0.9956053); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3360192127, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3360192127, 8, 100667494) - , (3360192127, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3360192127, 53, 101) - , (3360192127, 1, 0) - , (3360192127, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3360192127, 11, True) - , (3360192127, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3360086257, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3360086257, 1, 3950706696, 9.093236, 173.2184, 15.35638, 0.07347997, 0, 0, -0.9972967); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3360086257, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3360086257, 8, 100667494) - , (3360086257, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3360086257, 53, 101) - , (3360086257, 1, 0) - , (3360086257, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3360086257, 11, True) - , (3360086257, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3360087032, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3360087032, 1, 3933863948, 39.19196, 88.96511, 70.58835, 0.6738841, 0, 0, -0.7388371); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3360087032, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3360087032, 8, 100667494) - , (3360087032, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3360087032, 53, 101) - , (3360087032, 1, 0) - , (3360087032, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3360087032, 11, True) - , (3360087032, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3360059764, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3360059764, 1, 549453867, 136.9365, 71.30714, 101.5036, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3360059764, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3360059764, 8, 100667494) - , (3360059764, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3360059764, 1, 0) - , (3360059764, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3360059764, 11, True) - , (3360059764, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3360314237, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3360314237, 1, 532742203, 173.0291, 69.70027, 102.3416, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3360314237, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3360314237, 8, 100667494) - , (3360314237, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3360314237, 1, 0) - , (3360314237, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3360314237, 11, True) - , (3360314237, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2924592835, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2924592835, 1, 716767255, 60.92434, 160.8722, 20.15, -0.8156634, 0, 0, -0.5785267); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2924592835, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2924592835, 8, 100667494) - , (2924592835, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2924592835, 1, 0) - , (2924592835, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2924592835, 11, True) - , (2924592835, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2926048844, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2926048844, 1, 414449697, 117.6439, 14.43543, 22.15, -0.1789647, 0, 0, -0.9838555); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2926048844, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2926048844, 8, 100667494) - , (2926048844, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2926048844, 1, 0) - , (2926048844, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2926048844, 11, True) - , (2926048844, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2925419601, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2925419601, 1, 716767293, 176.5732, 119.3979, 20.15, -0.9982939, 0, 0, -0.05838806); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2925419601, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2925419601, 8, 100667494) - , (2925419601, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2925419601, 1, 0) - , (2925419601, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2925419601, 11, True) - , (2925419601, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2926680844, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2926680844, 1, 380829703, 14.01831, 155.8574, 21.16188, -0.8053736, 0, 0, -0.5927675); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2926680844, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2926680844, 8, 100667494) - , (2926680844, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2926680844, 1, 0) - , (2926680844, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2926680844, 11, True) - , (2926680844, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2926676088, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2926676088, 1, 364183573, 69.91781, 99.73919, 20.15, 0.362303, 0, 0, -0.9320604); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2926676088, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2926676088, 8, 100667494) - , (2926676088, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2926676088, 1, 0) - , (2926676088, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2926676088, 11, True) - , (2926676088, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2926868964, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2926868964, 1, 347471899, 77.58103, 64.68071, 16.61509, -0.2355328, 0, 0, -0.9718664); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2926868964, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2926868964, 8, 100667494) - , (2926868964, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2926868964, 1, 0) - , (2926868964, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2926868964, 11, True) - , (2926868964, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3709018285, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3709018285, 1, 549453835, 24.37616, 58.49179, 94.15, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3709018285, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3709018285, 8, 100667494) - , (3709018285, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3709018285, 1, 0) - , (3709018285, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3709018285, 11, True) - , (3709018285, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3710513597, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3710513597, 1, 549716012, 123.4205, 84.75788, 31.21316, -0.1812852, 0, 0, -0.9834306); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3710513597, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3710513597, 8, 100667494) - , (3710513597, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3710513597, 1, 0) - , (3710513597, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3710513597, 11, True) - , (3710513597, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3708339757, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3708339757, 1, 516423705, 91.61526, 9.39479, 17.0184, 0.386289, 0, 0, -0.9223778); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3708339757, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3708339757, 8, 100667494) - , (3708339757, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3708339757, 1, 0) - , (3708339757, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3708339757, 11, True) - , (3708339757, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3354013426, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3354013426, 1, 3967746077, 79.90441, 110.8923, 15.44494, -0.9858216, 0, 0, -0.167797); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3354013426, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3354013426, 8, 100667494) - , (3354013426, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3354013426, 53, 101) - , (3354013426, 1, 0) - , (3354013426, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3354013426, 11, True) - , (3354013426, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3354080402, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3354080402, 1, 3967746087, 101.8159, 164.7387, 12.0025, 0.798804, 0, 0, -0.6015914); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3354080402, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3354080402, 8, 100667494) - , (3354080402, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3354080402, 53, 101) - , (3354080402, 1, 0) - , (3354080402, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3354080402, 11, True) - , (3354080402, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3354064480, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3354064480, 1, 3934126098, 61.5478, 32.62576, 26.92142, 0.9908323, 0, 0, -0.1350972); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3354064480, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3354064480, 8, 100667494) - , (3354064480, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3354064480, 53, 101) - , (3354064480, 1, 0) - , (3354064480, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3354064480, 11, True) - , (3354064480, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3353995790, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3353995790, 1, 3934126123, 131.7093, 57.59369, 13.38859, -0.04455312, 0, 0, -0.999007); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3353995790, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3353995790, 8, 100667494) - , (3353995790, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3353995790, 53, 101) - , (3353995790, 1, 0) - , (3353995790, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3353995790, 11, True) - , (3353995790, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3354021173, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3354021173, 1, 3934126141, 170.6489, 103.4681, 12.0025, 0.2694885, 0, 0, -0.9630036); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3354021173, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3354021173, 8, 100667494) - , (3354021173, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3354021173, 53, 101) - , (3354021173, 1, 0) - , (3354021173, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3354021173, 11, True) - , (3354021173, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3353944815, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3353944815, 1, 3917283336, 15.16619, 178.3281, -0.8975, -0.436606, 0, 0, -0.8996528); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3353944815, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3353944815, 8, 100667494) - , (3353944815, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3353944815, 53, 101) - , (3353944815, 1, 0) - , (3353944815, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3353944815, 11, True) - , (3353944815, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2780595395, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2780595395, 1, 414318622, 91.09303, 128.9752, 36.21989, -0.3445576, 0, 0, -0.9387652); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2780595395, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2780595395, 8, 100667494) - , (2780595395, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2780595395, 1, 0) - , (2780595395, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2780595395, 11, True) - , (2780595395, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2780518255, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2780518255, 1, 431161362, 68.16013, 36.82576, 22.15, -0.04831094, 0, 0, -0.9988323); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2780518255, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2780518255, 8, 100667494) - , (2780518255, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2780518255, 1, 0) - , (2780518255, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2780518255, 11, True) - , (2780518255, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2779805899, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2779805899, 1, 464715824, 137.4257, 171.565, 12.40077, 0.4573062, 0, 0, -0.8893093); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2779805899, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2779805899, 8, 100667494) - , (2779805899, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2779805899, 1, 0) - , (2779805899, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2779805899, 11, True) - , (2779805899, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2780542294, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2780542294, 1, 599851009, 19.933, 18.43694, 108.3993, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2780542294, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2780542294, 8, 100667494) - , (2780542294, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2780542294, 1, 0) - , (2780542294, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2780542294, 11, True) - , (2780542294, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2780545112, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2780545112, 1, 616562689, 17.18462, 11.82826, 139.0141, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2780545112, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2780545112, 8, 100667494) - , (2780545112, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2780545112, 1, 0) - , (2780545112, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2780545112, 11, True) - , (2780545112, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2780545151, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2780545151, 1, 616497188, 113.1689, 74.32289, 131.7706, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2780545151, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2780545151, 8, 100667494) - , (2780545151, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2780545151, 1, 0) - , (2780545151, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2780545151, 11, True) - , (2780545151, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (1928519680, 148, 36995, 1048576, 'AAA9AAAAAAA=', 100355); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (1928519680, 1, 791543850, 132, 36, 12, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (1928519680, 1, 'Aerbax South Gate Event Gen'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (1928519680, 8, 100670496) - , (1928519680, 1, 33560503) - , (1928519680, 3, 536871008) - , (1928519680, 2, 150995428); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (1928519680, 1, 0) - , (1928519680, 95, 5) - , (1928519680, 93, 1044); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (1928519680, 13, True) - , (1928519680, 11, True) - , (1928519680, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3629585416, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3629585416, 1, 3967680572, 188.6902, 84.18641, -0.8975, -0.8997254, 0, 0, -0.4364563); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3629585416, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3629585416, 8, 100667494) - , (3629585416, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3629585416, 53, 101) - , (3629585416, 1, 0) - , (3629585416, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3629585416, 11, True) - , (3629585416, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3629586695, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3629586695, 1, 3950706696, 0.02180338, 180.703, 16.00024, 0.07347997, 0, 0, -0.9972967); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3629586695, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3629586695, 8, 100667494) - , (3629586695, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3629586695, 53, 101) - , (3629586695, 1, 0) - , (3629586695, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3629586695, 11, True) - , (3629586695, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3629587444, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3629587444, 1, 3933798411, 46.47548, 51.19217, 131.2152, 0.9155453, 0, 0, -0.4022149); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3629587444, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3629587444, 8, 100667494) - , (3629587444, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3629587444, 53, 101) - , (3629587444, 1, 0) - , (3629587444, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3629587444, 11, True) - , (3629587444, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3629587601, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3629587601, 1, 3933732906, 142.5448, 30.83359, 106.4414, 0.986496, 0, 0, -0.1637853); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3629587601, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3629587601, 8, 100667494) - , (3629587601, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3629587601, 53, 101) - , (3629587601, 1, 0) - , (3629587601, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3629587601, 11, True) - , (3629587601, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3629587802, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3629587802, 1, 3933667358, 82.14513, 124.8541, 125.9069, 0.9007887, 0, 0, -0.4342578); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3629587802, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3629587802, 8, 100667494) - , (3629587802, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3629587802, 53, 101) - , (3629587802, 1, 0) - , (3629587802, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3629587802, 11, True) - , (3629587802, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3699188967, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3699188967, 1, 566624283, 81.33005, 51.5934, 46.29554, -0.07423627, 0, 0, -0.9972407); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3699188967, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3699188967, 8, 100667494) - , (3699188967, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3699188967, 1, 0) - , (3699188967, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3699188967, 11, True) - , (3699188967, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3708126056, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3708126056, 1, 599785518, 124.9606, 132.1652, 110.5634, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3708126056, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3708126056, 8, 100667494) - , (3708126056, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3708126056, 1, 0) - , (3708126056, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3708126056, 11, True) - , (3708126056, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3709423757, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3709423757, 1, 599785495, 56.71815, 147.1734, 116.15, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3709423757, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3709423757, 8, 100667494) - , (3709423757, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3709423757, 1, 0) - , (3709423757, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3709423757, 11, True) - , (3709423757, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3710508733, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3710508733, 1, 583008278, 70.07575, 133.2205, 91.32742, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3710508733, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3710508733, 8, 100667494) - , (3710508733, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3710508733, 1, 0) - , (3710508733, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3710508733, 11, True) - , (3710508733, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3711437962, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3711437962, 1, 4084072499, 144.0642, 64.69691, 12.0025, 0.8029574, 0, 0, -0.5960364); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3711437962, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3711437962, 8, 100667494) - , (3711437962, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3711437962, 53, 101) - , (3711437962, 1, 0) - , (3711437962, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3711437962, 11, True) - , (3711437962, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3706576029, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3706576029, 1, 599851012, 12.69355, 78.67994, 108.15, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3706576029, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3706576029, 8, 100667494) - , (3706576029, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3706576029, 1, 0) - , (3706576029, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3706576029, 11, True) - , (3706576029, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3706920631, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3706920631, 1, 532742159, 45.17479, 159.5417, 92.384, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3706920631, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3706920631, 8, 100667494) - , (3706920631, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3706920631, 1, 0) - , (3706920631, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3706920631, 11, True) - , (3706920631, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3704161834, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3704161834, 1, 447741961, 33.29982, 5.255402, 0.15, -0.648657, 0, 0, -0.7610809); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3704161834, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3704161834, 8, 100667494) - , (3704161834, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3704161834, 1, 0) - , (3704161834, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3704161834, 11, True) - , (3704161834, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3708147382, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3708147382, 1, 447807550, 170.3765, 134.9698, 23.95196, 0.6157873, 0, 0, -0.7879125); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3708147382, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3708147382, 8, 100667494) - , (3708147382, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3708147382, 1, 0) - , (3708147382, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3708147382, 11, True) - , (3708147382, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3708147919, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3708147919, 1, 464584729, 73.22885, 23.84445, 0.15, 0.75727, 0, 0, -0.653102); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3708147919, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3708147919, 8, 100667494) - , (3708147919, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3708147919, 1, 0) - , (3708147919, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3708147919, 11, True) - , (3708147919, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3708861917, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3708861917, 1, 666238999, 59.26984, 167.1912, 36.3522, -0.109778, 0, 0, -0.9939561); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3708861917, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3708861917, 8, 100667494) - , (3708861917, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3708861917, 1, 0) - , (3708861917, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3708861917, 11, True) - , (3708861917, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3708875243, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3708875243, 1, 599064598, 71.31335, 137.1465, 20.15, 0.1953093, 0, 0, -0.9807417); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3708875243, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3708875243, 8, 100667494) - , (3708875243, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3708875243, 1, 0) - , (3708875243, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3708875243, 11, True) - , (3708875243, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3708875296, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3708875296, 1, 599064598, 50.71141, 121.6929, 20.15, -0.9024509, 0, 0, -0.4307928); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3708875296, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3708875296, 8, 100667494) - , (3708875296, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3708875296, 1, 0) - , (3708875296, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3708875296, 11, True) - , (3708875296, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3708976800, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3708976800, 1, 649396238, 43.52029, 138.7566, 20.27728, -0.5995487, 0, 0, -0.8003383); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3708976800, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3708976800, 8, 100667494) - , (3708976800, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3708976800, 1, 0) - , (3708976800, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3708976800, 11, True) - , (3708976800, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3708977848, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3708977848, 1, 632619015, 19.45239, 146.5175, 21.56124, -0.3260117, 0, 0, -0.9453657); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3708977848, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3708977848, 8, 100667494) - , (3708977848, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3708977848, 1, 0) - , (3708977848, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3708977848, 11, True) - , (3708977848, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3708340823, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3708340823, 1, 599064599, 69.21258, 158.5748, 21.13228, 0.1953093, 0, 0, -0.9807417); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3708340823, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3708340823, 8, 100667494) - , (3708340823, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3708340823, 1, 0) - , (3708340823, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3708340823, 11, True) - , (3708340823, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3708979675, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3708979675, 1, 599130115, 7.931862, 52.51647, 20.15, -0.9775836, 0, 0, -0.2105477); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3708979675, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3708979675, 8, 100667494) - , (3708979675, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3708979675, 1, 0) - , (3708979675, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3708979675, 11, True) - , (3708979675, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3334374025, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3334374025, 1, 432144413, 93.79311, 118.2912, 61.8652, 0.1809152, 0, 0, -0.9834987); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3334374025, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3334374025, 8, 100667494) - , (3334374025, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3334374025, 1, 0) - , (3334374025, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3334374025, 11, True) - , (3334374025, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3334374180, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3334374180, 1, 448987174, 110.734, 140.8448, 37.88707, -0.7216277, 0, 0, -0.6922814); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3334374180, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3334374180, 8, 100667494) - , (3334374180, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3334374180, 1, 0) - , (3334374180, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3334374180, 11, True) - , (3334374180, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3334119893, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3334119893, 1, 499580954, 78.4095, 37.91018, 12.15, 0.9393146, 0, 0, -0.343057); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3334119893, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3334119893, 8, 100667494) - , (3334119893, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3334119893, 1, 0) - , (3334119893, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3334119893, 11, True) - , (3334119893, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3334126126, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3334126126, 1, 583532593, 157.8899, 0.07246515, 6.683572, 0.4305658, 0, 0, -0.9025592); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3334126126, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3334126126, 8, 100667494) - , (3334126126, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3334126126, 1, 0) - , (3334126126, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3334126126, 11, True) - , (3334126126, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3334372011, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3334372011, 1, 583401534, 172.1897, 137.1955, 27.23381, -0.2039771, 0, 0, -0.9789757); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3334372011, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3334372011, 8, 100667494) - , (3334372011, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3334372011, 1, 0) - , (3334372011, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3334372011, 11, True) - , (3334372011, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3334142148, 148, 27719, 0, NULL, 32773); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3334142148, 1, 549912597, 68.8243, 115.5734, 27.04817, -0.8911714, 0, 0, -0.4536668); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3334142148, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3334142148, 8, 100667494) - , (3334142148, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3334142148, 1, 0) - , (3334142148, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3334142148, 11, True) - , (3334142148, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3334150535, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3334150535, 1, 516358151, 10.34506, 153.037, 9.874176, 0.9827468, 0, 0, -0.1849557); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3334150535, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3334150535, 8, 100667494) - , (3334150535, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3334150535, 1, 0) - , (3334150535, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3334150535, 11, True) - , (3334150535, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3334153531, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3334153531, 1, 533200904, 6.341962, 168.817, 4.013839, -0.8066982, 0, 0, -0.5909636); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3334153531, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3334153531, 8, 100667494) - , (3334153531, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3334153531, 1, 0) - , (3334153531, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3334153531, 11, True) - , (3334153531, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3334153423, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3334153423, 1, 549978165, 153.376, 106.2946, 19.00788, 0.9291645, 0, 0, -0.3696664); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3334153423, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3334153423, 8, 100667494) - , (3334153423, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3334153423, 1, 0) - , (3334153423, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3334153423, 11, True) - , (3334153423, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2874585848, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2874585848, 1, 599851011, 3.568103, 64.839, 108.15, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2874585848, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2874585848, 8, 100667494) - , (2874585848, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2874585848, 1, 0) - , (2874585848, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2874585848, 11, True) - , (2874585848, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2874603601, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2874603601, 1, 583073802, 32.88536, 39.71663, 108.8403, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2874603601, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2874603601, 8, 100667494) - , (2874603601, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2874603601, 1, 0) - , (2874603601, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2874603601, 11, True) - , (2874603601, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3701516924, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3701516924, 1, 414449684, 70.87036, 95.3315, 24.97097, -0.003025571, 0, 0, -0.9999954); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3701516924, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3701516924, 8, 100667494) - , (3701516924, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3701516924, 1, 0) - , (3701516924, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3701516924, 11, True) - , (3701516924, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3701516932, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3701516932, 1, 414384129, 13.93207, 8.027684, 29.65105, 0.2529698, 0, 0, -0.9674742); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3701516932, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3701516932, 8, 100667494) - , (3701516932, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3701516932, 1, 0) - , (3701516932, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3701516932, 11, True) - , (3701516932, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3706576130, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3706576130, 1, 599851036, 72.17263, 77.25913, 108.1356, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3706576130, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3706576130, 8, 100667494) - , (3706576130, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3706576130, 1, 0) - , (3706576130, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3706576130, 11, True) - , (3706576130, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (1987960839, 148, 20178, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (1987960839, 1, 1742602257, 56.0961, 13.4183, 62.02431, -0.115192, 0, 0, -0.9933432); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (1987960839, 1, 'Scuttling Grievver Landscape Gen'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (1987960839, 8, 100667494) - , (1987960839, 1, 33557839); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (1987960839, 1, 0) - , (1987960839, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (1987960839, 11, True) - , (1987960839, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (1987960832, 148, 20178, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (1987960832, 1, 1742602250, 35.576, 36.5476, 58.98413, 0.6635807, 0, 0, -0.7481047); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (1987960832, 1, 'Scuttling Grievver Landscape Gen'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (1987960832, 8, 100667494) - , (1987960832, 1, 33557839); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (1987960832, 1, 0) - , (1987960832, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (1987960832, 11, True) - , (1987960832, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (1987960833, 148, 20178, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (1987960833, 1, 1742602250, 40.7224, 26.0657, 58.52479, 0.320575, 0, 0, -0.9472231); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (1987960833, 1, 'Scuttling Grievver Landscape Gen'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (1987960833, 8, 100667494) - , (1987960833, 1, 33557839); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (1987960833, 1, 0) - , (1987960833, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (1987960833, 11, True) - , (1987960833, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (1987960837, 148, 20178, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (1987960837, 1, 1742602250, 39.814, 47.4248, 61.85697, -0.997938, 0, 0, -0.064186); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (1987960837, 1, 'Scuttling Grievver Landscape Gen'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (1987960837, 8, 100667494) - , (1987960837, 1, 33557839); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (1987960837, 1, 0) - , (1987960837, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (1987960837, 11, True) - , (1987960837, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (1987960834, 148, 20178, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (1987960834, 1, 1742602249, 29.7793, 23.8688, 55.44368, 0.8396939, 0, 0, -0.5430599); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (1987960834, 1, 'Scuttling Grievver Landscape Gen'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (1987960834, 8, 100667494) - , (1987960834, 1, 33557839); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (1987960834, 1, 0) - , (1987960834, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (1987960834, 11, True) - , (1987960834, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (1987960838, 148, 20178, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (1987960838, 1, 1742602249, 38.6997, 13.4242, 57.67386, 0.874391, 0, 0, -0.485222); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (1987960838, 1, 'Scuttling Grievver Landscape Gen'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (1987960838, 8, 100667494) - , (1987960838, 1, 33557839); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (1987960838, 1, 0) - , (1987960838, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (1987960838, 11, True) - , (1987960838, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (1987960835, 148, 20178, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (1987960835, 1, 1742602242, 12.3981, 42.9678, 55.22723, -0.9775568, 0, 0, -0.210672); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (1987960835, 1, 'Scuttling Grievver Landscape Gen'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (1987960835, 8, 100667494) - , (1987960835, 1, 33557839); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (1987960835, 1, 0) - , (1987960835, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (1987960835, 11, True) - , (1987960835, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (1987960836, 148, 20178, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (1987960836, 1, 1742602242, 15.988, 24.5892, 52.76356, -0.759865, 0, 0, -0.650081); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (1987960836, 1, 'Scuttling Grievver Landscape Gen'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (1987960836, 8, 100667494) - , (1987960836, 1, 33557839); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (1987960836, 1, 0) - , (1987960836, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (1987960836, 11, True) - , (1987960836, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2872223184, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2872223184, 1, 3967615015, 112.0938, 150.898, -0.4475, -0.1518669, 0, 0, -0.9884009); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2872223184, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2872223184, 8, 100667494) - , (2872223184, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2872223184, 53, 101) - , (2872223184, 1, 0) - , (2872223184, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2872223184, 11, True) - , (2872223184, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2872345695, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2872345695, 1, 3950837824, 186.5491, 176.4657, 14.77531, 0.4388963, 0, 0, -0.8985377); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2872345695, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2872345695, 8, 100667494) - , (2872345695, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2872345695, 53, 101) - , (2872345695, 1, 0) - , (2872345695, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2872345695, 11, True) - , (2872345695, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2872345868, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2872345868, 1, 3950837816, 166.0518, 184.8466, 24.59034, 0.4262436, 0, 0, -0.9046084); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2872345868, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2872345868, 8, 100667494) - , (2872345868, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2872345868, 53, 101) - , (2872345868, 1, 0) - , (2872345868, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2872345868, 11, True) - , (2872345868, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2878335869, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2878335869, 1, 414318651, 185.4601, 60.99731, 38.69499, 0.05514668, 0, 0, -0.9984783); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2878335869, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2878335869, 8, 100667494) - , (2878335869, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2878335869, 1, 0) - , (2878335869, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2878335869, 11, True) - , (2878335869, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2878336874, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2878336874, 1, 464650271, 89.17327, 157.2481, 20.15, 0.6051351, 0, 0, -0.7961228); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2878336874, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2878336874, 8, 100667494) - , (2878336874, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2878336874, 1, 0) - , (2878336874, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2878336874, 11, True) - , (2878336874, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2878336767, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2878336767, 1, 464650278, 112.8499, 138.4054, 20.15, -0.9969156, 0, 0, -0.07848043); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2878336767, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2878336767, 8, 100667494) - , (2878336767, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2878336767, 1, 0) - , (2878336767, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2878336767, 11, True) - , (2878336767, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2878386702, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2878386702, 1, 498270237, 90.97598, 96.03255, 0.05, -0.3861973, 0, 0, -0.9224162); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2878386702, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2878386702, 8, 100667494) - , (2878386702, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2878386702, 1, 0) - , (2878386702, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2878386702, 11, True) - , (2878386702, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2877812106, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2877812106, 1, 716832825, 173.724, 17.76574, 19.673, 0.3658301, 0, 0, -0.9306816); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2877812106, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2877812106, 8, 100667494) - , (2877812106, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2877812106, 1, 0) - , (2877812106, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2877812106, 11, True) - , (2877812106, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3361715659, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3361715659, 1, 582090763, 27.72956, 48.14968, 26.47327, 0.7274635, 0, 0, -0.6861464); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3361715659, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3361715659, 8, 100667494) - , (3361715659, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3361715659, 1, 0) - , (3361715659, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3361715659, 11, True) - , (3361715659, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362228930, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362228930, 1, 615710763, 138.9186, 64.61546, 23.76614, -0.04013132, 0, 0, -0.9991944); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362228930, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362228930, 8, 100667494) - , (3362228930, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362228930, 1, 0) - , (3362228930, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362228930, 11, True) - , (3362228930, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3361226407, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3361226407, 1, 615579710, 191.7475, 121.2545, 0.15, -0.807056, 0, 0, -0.590475); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3361226407, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3361226407, 8, 100667494) - , (3361226407, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3361226407, 1, 0) - , (3361226407, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3361226407, 11, True) - , (3361226407, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3361233052, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3361233052, 1, 582156300, 34.10846, 83.74032, 25.17164, 0.3350769, 0, 0, -0.9421908); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3361233052, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3361233052, 8, 100667494) - , (3361233052, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3361233052, 1, 0) - , (3361233052, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3361233052, 11, True) - , (3361233052, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3361870692, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3361870692, 1, 565379115, 123.2073, 60.06991, 30.15, 0.7554253, 0, 0, -0.6552348); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3361870692, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3361870692, 8, 100667494) - , (3361870692, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3361870692, 1, 0) - , (3361870692, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3361870692, 11, True) - , (3361870692, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3361689204, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3361689204, 1, 548470810, 78.11807, 33.35093, 0.15, -0.4670234, 0, 0, -0.8842449); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3361689204, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3361689204, 8, 100667494) - , (3361689204, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3361689204, 1, 0) - , (3361689204, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3361689204, 11, True) - , (3361689204, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362244685, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362244685, 1, 514850844, 94.95146, 82.50276, -0.75, -0.5025586, 0, 0, -0.8645431); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362244685, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362244685, 8, 100667494) - , (3362244685, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362244685, 1, 0) - , (3362244685, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362244685, 11, True) - , (3362244685, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362039684, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362039684, 1, 514850847, 95.88988, 145.9256, 0.15, -0.9509739, 0, 0, -0.3092712); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362039684, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362039684, 8, 100667494) - , (3362039684, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362039684, 1, 0) - , (3362039684, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362039684, 11, True) - , (3362039684, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2447740203, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2447740203, 1, 430964776, 119.8913, 169.6194, 18.861, -0.4991506, 0, 0, -0.8665153); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2447740203, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2447740203, 8, 100667494) - , (2447740203, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2447740203, 1, 0) - , (2447740203, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2447740203, 11, True) - , (2447740203, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2448654306, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2448654306, 1, 430964797, 170.995, 111.6391, 3.203677, -0.9996709, 0, 0, -0.02565189); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2448654306, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2448654306, 8, 100667494) - , (2448654306, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2448654306, 1, 0) - , (2448654306, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2448654306, 11, True) - , (2448654306, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2448834522, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2448834522, 1, 430899224, 61.62953, 168.2591, -0.75, -0.9550003, 0, 0, -0.296605); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2448834522, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2448834522, 8, 100667494) - , (2448834522, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2448834522, 1, 0) - , (2448834522, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2448834522, 11, True) - , (2448834522, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3352322923, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3352322923, 1, 599654442, 131.4431, 44.94694, 146.6636, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3352322923, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3352322923, 8, 100667494) - , (3352322923, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3352322923, 1, 0) - , (3352322923, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3352322923, 11, True) - , (3352322923, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3353649910, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3353649910, 1, 499122216, 104.7525, 178.2923, 76.87938, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3353649910, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3353649910, 8, 100667494) - , (3353649910, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3353649910, 1, 0) - , (3353649910, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3353649910, 11, True) - , (3353649910, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3353577687, 148, 27719, 0, NULL, 32773); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3353577687, 1, 632946695, 7.323207, 159.7315, 126.874, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3353577687, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3353577687, 8, 100667494) - , (3353577687, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3353577687, 1, 0) - , (3353577687, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3353577687, 11, True) - , (3353577687, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2615511662, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2615511662, 1, 716767285, 157.6993, 110.1412, 20.15, -0.9982939, 0, 0, -0.05838806); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2615511662, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2615511662, 8, 100667494) - , (2615511662, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2615511662, 1, 0) - , (2615511662, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2615511662, 11, True) - , (2615511662, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928761993, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928761993, 1, 414384180, 155.8656, 78.3016, 24.15, -0.9680423, 0, 0, -0.2507871); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928761993, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928761993, 8, 100667494) - , (2928761993, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928761993, 1, 0) - , (2928761993, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928761993, 11, True) - , (2928761993, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2931809173, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2931809173, 1, 699793467, 170.3303, 58.55655, 23.02971, 0.2090843, 0, 0, -0.9778976); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2931809173, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2931809173, 8, 100667494) - , (2931809173, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2931809173, 1, 0) - , (2931809173, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2931809173, 11, True) - , (2931809173, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2884137207, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2884137207, 1, 514785295, 34.35159, 150.5548, 0.15, 0.9060794, 0, 0, -0.4231076); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2884137207, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2884137207, 8, 100667494) - , (2884137207, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2884137207, 1, 0) - , (2884137207, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2884137207, 11, True) - , (2884137207, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2884077997, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2884077997, 1, 514785320, 97.23441, 178.7963, 0.05, -0.8563711, 0, 0, -0.5163609); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2884077997, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2884077997, 8, 100667494) - , (2884077997, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2884077997, 1, 0) - , (2884077997, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2884077997, 11, True) - , (2884077997, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2884137324, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2884137324, 1, 514916364, 34.59747, 88.33216, 2.066959, 0.1763869, 0, 0, -0.9843209); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2884137324, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2884137324, 8, 100667494) - , (2884137324, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2884137324, 1, 0) - , (2884137324, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2884137324, 11, True) - , (2884137324, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2884322062, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2884322062, 1, 3950837817, 183.4823, 0.1557312, 12.0025, -0.1075864, 0, 0, -0.9941958); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2884322062, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2884322062, 8, 100667494) - , (2884322062, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2884322062, 53, 101) - , (2884322062, 1, 0) - , (2884322062, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2884322062, 11, True) - , (2884322062, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2884210685, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2884210685, 1, 3950575647, 87.93409, 152.7601, 37.09816, 0.965849, 0, 0, -0.2591057); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2884210685, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2884210685, 8, 100667494) - , (2884210685, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2884210685, 53, 101) - , (2884210685, 1, 0) - , (2884210685, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2884210685, 11, True) - , (2884210685, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2884210749, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2884210749, 1, 3950575643, 81.66438, 61.36945, 58.0025, 0.2827149, 0, 0, -0.959204); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2884210749, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2884210749, 8, 100667494) - , (2884210749, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2884210749, 53, 101) - , (2884210749, 1, 0) - , (2884210749, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2884210749, 11, True) - , (2884210749, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2884211093, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2884211093, 1, 3950510139, 174.3745, 62.64216, 22.94036, -0.645081, 0, 0, -0.7641141); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2884211093, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2884211093, 8, 100667494) - , (2884211093, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2884211093, 53, 101) - , (2884211093, 1, 0) - , (2884211093, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2884211093, 11, True) - , (2884211093, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2884213511, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2884213511, 1, 3933601854, 182.6754, 129.5223, 56.0025, -0.344283, 0, 0, -0.9388659); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2884213511, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2884213511, 8, 100667494) - , (2884213511, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2884213511, 53, 101) - , (2884213511, 1, 0) - , (2884213511, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2884213511, 11, True) - , (2884213511, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3630723908, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3630723908, 1, 4084072491, 142.4131, 64.31837, 12.0025, 0.8029574, 0, 0, -0.5960364); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3630723908, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3630723908, 8, 100667494) - , (3630723908, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3630723908, 53, 101) - , (3630723908, 1, 0) - , (3630723908, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3630723908, 11, True) - , (3630723908, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2628479377, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2628479377, 1, 582877239, 161.1452, 163.9734, 82.11404, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2628479377, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2628479377, 8, 100667494) - , (2628479377, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2628479377, 1, 0) - , (2628479377, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2628479377, 11, True) - , (2628479377, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2628374556, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2628374556, 1, 566231053, 32.21125, 102.6471, 100.7039, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2628374556, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2628374556, 8, 100667494) - , (2628374556, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2628374556, 1, 0) - , (2628374556, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2628374556, 11, True) - , (2628374556, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2630499599, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2630499599, 1, 482476076, 124.5375, 94.95199, 22.62069, 0.3076927, 0, 0, -0.9514858); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2630499599, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2630499599, 8, 100667494) - , (2630499599, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2630499599, 1, 0) - , (2630499599, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2630499599, 11, True) - , (2630499599, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2629762436, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2629762436, 1, 397606968, 151.5939, 173.4566, 20.15, -0.9971148, 0, 0, -0.07590821); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2629762436, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2629762436, 8, 100667494) - , (2629762436, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2629762436, 1, 0) - , (2629762436, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2629762436, 11, True) - , (2629762436, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2630445226, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2630445226, 1, 397606960, 130.1924, 183.1187, 20.15, -0.9212523, 0, 0, -0.3889657); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2630445226, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2630445226, 8, 100667494) - , (2630445226, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2630445226, 1, 0) - , (2630445226, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2630445226, 11, True) - , (2630445226, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3357353009, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3357353009, 1, 566362150, 103.5829, 142.7967, 21.51809, 0.3299567, 0, 0, -0.9439961); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3357353009, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3357353009, 8, 100667494) - , (3357353009, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3357353009, 1, 0) - , (3357353009, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3357353009, 11, True) - , (3357353009, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3358469927, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3358469927, 1, 499187774, 172.8533, 140.3923, 75.84936, 1, 0, 0, 0); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3358469927, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3358469927, 8, 100667494) - , (3358469927, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3358469927, 1, 0) - , (3358469927, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3358469927, 11, True) - , (3358469927, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362109041, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362109041, 1, 3967680541, 92.31905, 98.13992, 12.0025, 0.3118951, 0, 0, -0.9501165); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362109041, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362109041, 8, 100667494) - , (3362109041, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362109041, 53, 101) - , (3362109041, 1, 0) - , (3362109041, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362109041, 11, True) - , (3362109041, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362108943, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362108943, 1, 3967615005, 72.95704, 105.1985, 8.619895, -0.8725741, 0, 0, -0.4884818); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362108943, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362108943, 8, 100667494) - , (3362108943, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362108943, 53, 101) - , (3362108943, 1, 0) - , (3362108943, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362108943, 11, True) - , (3362108943, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362108979, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362108979, 1, 3967615019, 137.1678, 58.19384, -0.0975, -0.9776717, 0, 0, -0.2101382); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362108979, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362108979, 8, 100667494) - , (3362108979, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362108979, 53, 101) - , (3362108979, 1, 0) - , (3362108979, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362108979, 11, True) - , (3362108979, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362109987, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362109987, 1, 3950706706, 70.32716, 32.49698, 16.14177, -0.3916726, 0, 0, -0.9201047); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362109987, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362109987, 8, 100667494) - , (3362109987, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362109987, 53, 101) - , (3362109987, 1, 0) - , (3362109987, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362109987, 11, True) - , (3362109987, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362110362, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362110362, 1, 3933929505, 110.397, 12.35029, 45.54416, 0.02313904, 0, 0, -0.9997323); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362110362, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362110362, 8, 100667494) - , (3362110362, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362110362, 53, 101) - , (3362110362, 1, 0) - , (3362110362, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362110362, 11, True) - , (3362110362, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362129560, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362129560, 1, 3934060589, 131.1564, 103.7944, 12.84516, -0.9408216, 0, 0, -0.3389022); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362129560, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362129560, 8, 100667494) - , (3362129560, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362129560, 53, 101) - , (3362129560, 1, 0) - , (3362129560, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362129560, 11, True) - , (3362129560, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362156769, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362156769, 1, 3967418406, 101.243, 137.6698, -0.8975, -0.870253, 0, 0, -0.492605); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362156769, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362156769, 8, 100667494) - , (3362156769, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362156769, 53, 101) - , (3362156769, 1, 0) - , (3362156769, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362156769, 11, True) - , (3362156769, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362080161, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362080161, 1, 3983998991, 27.14504, 149.5741, -0.8975, 0.7944568, 0, 0, -0.6073206); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362080161, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362080161, 8, 100667494) - , (3362080161, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362080161, 53, 101) - , (3362080161, 1, 0) - , (3362080161, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362080161, 11, True) - , (3362080161, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362157659, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362157659, 1, 3967287321, 88.18505, 1.955706, 12.0025, -0.9999782, 0, 0, -0.006595715); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362157659, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362157659, 8, 100667494) - , (3362157659, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362157659, 53, 101) - , (3362157659, 1, 0) - , (3362157659, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362157659, 11, True) - , (3362157659, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3361960958, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3361960958, 1, 3967090744, 151.7548, 173.4327, 0.9070529, -0.4027737, 0, 0, -0.9152996); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3361960958, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3361960958, 8, 100667494) - , (3361960958, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3361960958, 53, 101) - , (3361960958, 1, 0) - , (3361960958, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3361960958, 11, True) - , (3361960958, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3362183485, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3362183485, 1, 3967746069, 71.70765, 111.6157, 16.77561, -0.9858216, 0, 0, -0.167797); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3362183485, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3362183485, 8, 100667494) - , (3362183485, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3362183485, 53, 101) - , (3362183485, 1, 0) - , (3362183485, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3362183485, 11, True) - , (3362183485, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3356403702, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3356403702, 1, 3916890115, 6.554854, 54.72771, 18.0025, -0.958551, 0, 0, -0.2849211); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3356403702, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3356403702, 8, 100667494) - , (3356403702, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3356403702, 53, 101) - , (3356403702, 1, 0) - , (3356403702, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3356403702, 11, True) - , (3356403702, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3356404036, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3356404036, 1, 3916824583, 13.74498, 155.3844, 23.05413, -0.1548811, 0, 0, -0.9879331); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3356404036, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3356404036, 8, 100667494) - , (3356404036, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3356404036, 53, 101) - , (3356404036, 1, 0) - , (3356404036, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3356404036, 11, True) - , (3356404036, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3356404026, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3356404026, 1, 3916824616, 114.8793, 187.7039, 13.21365, 0.8878837, 0, 0, -0.460068); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3356404026, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3356404026, 8, 100667494) - , (3356404026, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3356404026, 53, 101) - , (3356404026, 1, 0) - , (3356404026, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3356404026, 11, True) - , (3356404026, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3356404044, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3356404044, 1, 3900047417, 189.5194, 9.597775, 25.79559, -0.6942701, 0, 0, -0.7197146); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3356404044, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3356404044, 8, 100667494) - , (3356404044, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3356404044, 53, 101) - , (3356404044, 1, 0) - , (3356404044, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3356404044, 11, True) - , (3356404044, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3356404789, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3356404789, 1, 3916759059, 70.07246, 62.71516, 58.71625, 0.8377624, 0, 0, -0.5460349); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3356404789, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3356404789, 8, 100667494) - , (3356404789, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3356404789, 53, 101) - , (3356404789, 1, 0) - , (3356404789, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3356404789, 11, True) - , (3356404789, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3356410311, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3356410311, 1, 3950247941, 4.116343, 98.27105, 81.03167, -0.499921, 0, 0, -0.866071); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3356410311, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3356410311, 8, 100667494) - , (3356410311, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3356410311, 53, 101) - , (3356410311, 1, 0) - , (3356410311, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3356410311, 11, True) - , (3356410311, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3356416519, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3356416519, 1, 3966697476, 5.242071, 87.33357, 20.84372, -0.9134227, 0, 0, -0.4070123); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3356416519, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3356416519, 8, 100667494) - , (3356416519, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3356416519, 53, 101) - , (3356416519, 1, 0) - , (3356416519, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3356416519, 11, True) - , (3356416519, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3706458744, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3706458744, 1, 716832811, 125.4491, 56.91632, 20.15, 0.822814, 0, 0, -0.5683107); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3706458744, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3706458744, 8, 100667494) - , (3706458744, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3706458744, 1, 0) - , (3706458744, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3706458744, 11, True) - , (3706458744, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2931656992, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2931656992, 1, 397606960, 136.9246, 179.6312, 20.15, -0.9212523, 0, 0, -0.3889657); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2931656992, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2931656992, 8, 100667494) - , (2931656992, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2931656992, 1, 0) - , (2931656992, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2931656992, 11, True) - , (2931656992, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2931193799, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2931193799, 1, 397672495, 138.1446, 154.2521, 23.00434, 0.2748642, 0, 0, -0.9614831); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2931193799, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2931193799, 8, 100667494) - , (2931193799, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2931193799, 1, 0) - , (2931193799, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2931193799, 11, True) - , (2931193799, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3324648537, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3324648537, 1, 3950903317, 52.87547, 117.3284, 12.81593, 0.43044, 0, 0, -0.9026192); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3324648537, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3324648537, 8, 100667494) - , (3324648537, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3324648537, 53, 101) - , (3324648537, 1, 0) - , (3324648537, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3324648537, 11, True) - , (3324648537, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3324971408, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3324971408, 1, 3950968834, 1.119205, 24.06142, 47.8307, 0.3303315, 0, 0, -0.943865); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3324971408, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3324971408, 8, 100667494) - , (3324971408, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3324971408, 53, 101) - , (3324971408, 1, 0) - , (3324971408, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3324971408, 11, True) - , (3324971408, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3324971237, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3324971237, 1, 3967811603, 56.00183, 56.05048, 12.0025, -0.5680774, 0, 0, -0.8229751); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3324971237, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3324971237, 8, 100667494) - , (3324971237, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3324971237, 53, 101) - , (3324971237, 1, 0) - , (3324971237, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3324971237, 11, True) - , (3324971237, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2628309192, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2628309192, 1, 4084072465, 56.8347, 5.830246, 0.002499998, 0.661131, 0, 0, -0.7502705); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2628309192, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2628309192, 8, 100667494) - , (2628309192, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2628309192, 53, 101) - , (2628309192, 1, 0) - , (2628309192, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2628309192, 11, True) - , (2628309192, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2628281031, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2628281031, 1, 4084072499, 146.5885, 69.79148, 12.0025, 0.8029574, 0, 0, -0.5960364); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2628281031, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2628281031, 8, 100667494) - , (2628281031, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2628281031, 53, 101) - , (2628281031, 1, 0) - , (2628281031, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2628281031, 11, True) - , (2628281031, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3628138141, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3628138141, 1, 414253100, 129.9203, 84.73958, 33.92665, -0.1770322, 0, 0, -0.9842051); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3628138141, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3628138141, 8, 100667494) - , (3628138141, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3628138141, 1, 0) - , (3628138141, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3628138141, 11, True) - , (3628138141, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3627875482, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3627875482, 1, 430964768, 74.21935, 180.5799, 30.0617, 0.2990362, 0, 0, -0.9542418); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3627875482, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3627875482, 8, 100667494) - , (3627875482, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3627875482, 1, 0) - , (3627875482, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3627875482, 11, True) - , (3627875482, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3628261743, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3628261743, 1, 414253097, 139.4979, 5.980804, 22.39645, 0.903542, 0, 0, -0.4284995); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3628261743, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3628261743, 8, 100667494) - , (3628261743, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3628261743, 1, 0) - , (3628261743, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3628261743, 11, True) - , (3628261743, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3628297343, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3628297343, 1, 447676432, 31.92229, 191.0689, 0.05, -0.648657, 0, 0, -0.7610809); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3628297343, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3628297343, 8, 100667494) - , (3628297343, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3628297343, 1, 0) - , (3628297343, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3628297343, 11, True) - , (3628297343, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3628297402, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3628297402, 1, 430964791, 145.0509, 167.1248, 18.01878, -0.4991506, 0, 0, -0.8665153); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3628297402, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3628297402, 8, 100667494) - , (3628297402, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3628297402, 1, 0) - , (3628297402, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3628297402, 11, True) - , (3628297402, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3628135782, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3628135782, 1, 430964745, 30.71967, 16.35002, 0.05, -0.9550003, 0, 0, -0.296605); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3628135782, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3628135782, 8, 100667494) - , (3628135782, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3628135782, 1, 0) - , (3628135782, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3628135782, 11, True) - , (3628135782, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3629549521, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3629549521, 1, 716570642, 52.29974, 35.87093, 16.42262, -0.9465786, 0, 0, -0.3224733); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3629549521, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3629549521, 8, 100667494) - , (3629549521, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3629549521, 1, 0) - , (3629549521, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3629549521, 11, True) - , (3629549521, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3629723910, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3629723910, 1, 414449706, 132.7113, 29.33486, 22.15, -0.1789647, 0, 0, -0.9838555); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3629723910, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3629723910, 8, 100667494) - , (3629723910, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3629723910, 1, 0) - , (3629723910, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3629723910, 11, True) - , (3629723910, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3629723904, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3629723904, 1, 414449713, 155.4768, 11.27785, 21.1064, 0.1951776, 0, 0, -0.9807679); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3629723904, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3629723904, 8, 100667494) - , (3629723904, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3629723904, 1, 0) - , (3629723904, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3629723904, 11, True) - , (3629723904, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3629692607, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3629692607, 1, 414384181, 157.5724, 96.9175, 23.93596, -0.9680423, 0, 0, -0.2507871); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3629692607, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3629692607, 8, 100667494) - , (3629692607, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3629692607, 1, 0) - , (3629692607, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3629692607, 11, True) - , (3629692607, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3629692541, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3629692541, 1, 414449698, 113.7291, 27.33764, 22.15, -0.1789647, 0, 0, -0.9838555); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3629692541, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3629692541, 8, 100667494) - , (3629692541, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3629692541, 1, 0) - , (3629692541, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3629692541, 11, True) - , (3629692541, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3674446058, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3674446058, 1, 414449705, 133.128, 9.753672, 21.056, -0.6112334, 0, 0, -0.7914504); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3674446058, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3674446058, 8, 100667494) - , (3674446058, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3674446058, 1, 0) - , (3674446058, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3674446058, 11, True) - , (3674446058, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3674446113, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3674446113, 1, 414384168, 114.8544, 184.4982, 21.85705, 0.1951776, 0, 0, -0.9807679); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3674446113, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3674446113, 8, 100667494) - , (3674446113, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3674446113, 1, 0) - , (3674446113, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3674446113, 11, True) - , (3674446113, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3674258927, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3674258927, 1, 649265195, 134.4197, 58.61134, 1.832636, -0.8686402, 0, 0, -0.4954435); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3674258927, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3674258927, 8, 100667494) - , (3674258927, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3674258927, 1, 0) - , (3674258927, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3674258927, 11, True) - , (3674258927, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3674564849, 148, 11568, 0, NULL, 32773); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3674564849, 1, 649265163, 25.57695, 49.07783, 6.329638, 9.425083E-05, 0, 0, -1); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3674564849, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3674564849, 8, 100667494) - , (3674564849, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3674564849, 1, 0) - , (3674564849, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3674564849, 11, True) - , (3674564849, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3674905351, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3674905351, 1, 716767296, 175.6376, 189.6472, 20.15, 0.3658301, 0, 0, -0.9306816); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3674905351, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3674905351, 8, 100667494) - , (3674905351, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3674905351, 1, 0) - , (3674905351, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3674905351, 11, True) - , (3674905351, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3674842006, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3674842006, 1, 414384184, 159.7337, 191.7262, 21.43832, -0.6112334, 0, 0, -0.7914504); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3674842006, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3674842006, 8, 100667494) - , (3674842006, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3674842006, 1, 0) - , (3674842006, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3674842006, 11, True) - , (3674842006, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3674842119, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3674842119, 1, 414318639, 133.125, 161.1403, 30.19953, 0.7616077, 0, 0, -0.6480383); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3674842119, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3674842119, 8, 100667494) - , (3674842119, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3674842119, 1, 0) - , (3674842119, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3674842119, 11, True) - , (3674842119, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3675946365, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3675946365, 1, 414449705, 127.5164, 7.544405, 21.67765, -0.1789647, 0, 0, -0.9838555); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3675946365, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3675946365, 8, 100667494) - , (3675946365, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3675946365, 1, 0) - , (3675946365, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3675946365, 11, True) - , (3675946365, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3333101973, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3333101973, 1, 3950575646, 85.73112, 135.4599, 41.56146, 0.101592, 0, 0, -0.9948261); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3333101973, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3333101973, 8, 100667494) - , (3333101973, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3333101973, 53, 101) - , (3333101973, 1, 0) - , (3333101973, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3333101973, 11, True) - , (3333101973, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3333215045, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3333215045, 1, 3933601822, 90.84402, 127.962, 93.19281, 0.3539492, 0, 0, -0.9352646); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3333215045, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3333215045, 8, 100667494) - , (3333215045, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3333215045, 53, 101) - , (3333215045, 1, 0) - , (3333215045, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3333215045, 11, True) - , (3333215045, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3329376054, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3329376054, 1, 716832810, 128.0848, 46.97033, 20.15, 0.822814, 0, 0, -0.5683107); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3329376054, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3329376054, 8, 100667494) - , (3329376054, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3329376054, 1, 0) - , (3329376054, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3329376054, 11, True) - , (3329376054, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3622350593, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3622350593, 1, 414449697, 117.0245, 5.846982, 22.15, 0.1951776, 0, 0, -0.9807679); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3622350593, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3622350593, 8, 100667494) - , (3622350593, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3622350593, 1, 0) - , (3622350593, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3622350593, 11, True) - , (3622350593, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3711404047, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3711404047, 1, 666501139, 68.46795, 70.45446, 23.98446, -0.04532862, 0, 0, -0.9989721); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3711404047, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3711404047, 8, 100667494) - , (3711404047, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3711404047, 1, 0) - , (3711404047, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3711404047, 11, True) - , (3711404047, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882597984, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882597984, 1, 3934060600, 149.6871, 186.7207, 12.0025, -0.6428577, 0, 0, -0.7659856); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882597984, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882597984, 8, 100667494) - , (2882597984, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882597984, 53, 101) - , (2882597984, 1, 0) - , (2882597984, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882597984, 11, True) - , (2882597984, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882915166, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882915166, 1, 3967746108, 179.2511, 90.95692, 2.128047, -0.8411899, 0, 0, -0.5407398); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882915166, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882915166, 8, 100667494) - , (2882915166, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882915166, 53, 101) - , (2882915166, 1, 0) - , (2882915166, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882915166, 11, True) - , (2882915166, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882859867, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882859867, 1, 3950903349, 152.2528, 102.6717, 31.04457, -0.4982564, 0, 0, -0.8670297); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882859867, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882859867, 8, 100667494) - , (2882859867, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882859867, 53, 101) - , (2882859867, 1, 0) - , (2882859867, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882859867, 11, True) - , (2882859867, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882915956, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882915956, 1, 3950837824, 184.1268, 173.0055, 14.80419, 0.4388963, 0, 0, -0.8985377); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882915956, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882915956, 8, 100667494) - , (2882915956, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882915956, 53, 101) - , (2882915956, 1, 0) - , (2882915956, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882915956, 11, True) - , (2882915956, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882915934, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882915934, 1, 3950837805, 138.8347, 117.3305, 20.90339, -0.4465201, 0, 0, -0.8947736); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882915934, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882915934, 8, 100667494) - , (2882915934, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882915934, 53, 101) - , (2882915934, 1, 0) - , (2882915934, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882915934, 11, True) - , (2882915934, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882869421, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882869421, 1, 3950837812, 161.0845, 75.57521, 12.0025, 0.3083963, 0, 0, -0.951258); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882869421, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882869421, 8, 100667494) - , (2882869421, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882869421, 53, 101) - , (2882869421, 1, 0) - , (2882869421, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882869421, 11, True) - , (2882869421, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882916161, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882916161, 1, 3950772268, 125.4952, 94.37923, 12.0025, 0.7291654, 0, 0, -0.6843375); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882916161, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882916161, 8, 100667494) - , (2882916161, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882916161, 53, 101) - , (2882916161, 1, 0) - , (2882916161, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882916161, 11, True) - , (2882916161, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882917126, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882917126, 1, 3950575646, 91.80786, 121.8398, 48.73441, 0.101592, 0, 0, -0.9948261); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882917126, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882917126, 8, 100667494) - , (2882917126, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882917126, 53, 101) - , (2882917126, 1, 0) - , (2882917126, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882917126, 11, True) - , (2882917126, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882917168, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882917168, 1, 3950575633, 65.37473, 4.225007, 68.95303, 0.6119205, 0, 0, -0.7909192); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882917168, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882917168, 8, 100667494) - , (2882917168, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882917168, 53, 101) - , (2882917168, 1, 0) - , (2882917168, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882917168, 11, True) - , (2882917168, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882918313, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882918313, 1, 3933470781, 191.6689, 102.1964, 79.9025, -0.499921, 0, 0, -0.866071); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882918313, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882918313, 8, 100667494) - , (2882918313, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882918313, 53, 101) - , (2882918313, 1, 0) - , (2882918313, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882918313, 11, True) - , (2882918313, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882598072, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882598072, 1, 3917348898, 109.3134, 45.2419, 4.921981, 0.1997402, 0, 0, -0.9798489); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882598072, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882598072, 8, 100667494) - , (2882598072, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882598072, 53, 101) - , (2882598072, 1, 0) - , (2882598072, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882598072, 11, True) - , (2882598072, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882597964, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882597964, 1, 3917348890, 94.62628, 33.61778, 8.338258, -0.8543733, 0, 0, -0.5196598); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882597964, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882597964, 8, 100667494) - , (2882597964, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882597964, 53, 101) - , (2882597964, 1, 0) - , (2882597964, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882597964, 11, True) - , (2882597964, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882961160, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882961160, 1, 3984654355, 69.22334, 51.86958, 3.358441, -0.3642721, 0, 0, -0.9312926); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882961160, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882961160, 8, 100667494) - , (2882961160, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882961160, 53, 101) - , (2882961160, 1, 0) - , (2882961160, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882961160, 11, True) - , (2882961160, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2883016151, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2883016151, 1, 3950968878, 142.5281, 127.0314, 28.5849, -0.03850466, 0, 0, -0.9992584); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2883016151, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2883016151, 8, 100667494) - , (2883016151, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2883016151, 53, 101) - , (2883016151, 1, 0) - , (2883016151, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2883016151, 11, True) - , (2883016151, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882339511, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882339511, 1, 3934126099, 62.7182, 52.84688, 16.42045, -0.9982062, 0, 0, -0.05986938); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882339511, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882339511, 8, 100667494) - , (2882339511, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882339511, 53, 101) - , (2882339511, 1, 0) - , (2882339511, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882339511, 11, True) - , (2882339511, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882906391, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882906391, 1, 3916693544, 118.8396, 188.8022, 65.88181, -0.7028577, 0, 0, -0.7113305); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882906391, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882906391, 8, 100667494) - , (2882906391, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882906391, 53, 101) - , (2882906391, 1, 0) - , (2882906391, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882906391, 11, True) - , (2882906391, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882529602, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882529602, 1, 3916759052, 33.32554, 73.49392, 38.20924, -0.692688, 0, 0, -0.7212374); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882529602, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882529602, 8, 100667494) - , (2882529602, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882529602, 53, 101) - , (2882529602, 1, 0) - , (2882529602, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882529602, 11, True) - , (2882529602, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882908998, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882908998, 1, 3916890121, 32.23851, 23.04669, 19.39554, 0.9985483, 0, 0, -0.05386398); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882908998, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882908998, 8, 100667494) - , (2882908998, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882908998, 53, 101) - , (2882908998, 1, 0) - , (2882908998, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882908998, 11, True) - , (2882908998, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882918400, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882918400, 1, 3900178474, 131.2699, 29.3505, 44.25016, 0.9998413, 0, 0, -0.01781249); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882918400, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882918400, 8, 100667494) - , (2882918400, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882918400, 53, 101) - , (2882918400, 1, 0) - , (2882918400, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882918400, 11, True) - , (2882918400, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882912780, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882912780, 1, 3900178462, 85.30535, 126.1587, 49.00454, 0.02797687, 0, 0, -0.9996086); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882912780, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882912780, 8, 100667494) - , (2882912780, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882912780, 53, 101) - , (2882912780, 1, 0) - , (2882912780, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882912780, 11, True) - , (2882912780, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882891917, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882891917, 1, 3900178461, 87.70375, 117.857, 46.70367, 0.5161734, 0, 0, -0.8564841); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882891917, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882891917, 8, 100667494) - , (2882891917, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882891917, 53, 101) - , (2882891917, 1, 0) - , (2882891917, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882891917, 11, True) - , (2882891917, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882918593, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882918593, 1, 3900243999, 85.69969, 149.7375, 17.71116, -0.5250946, 0, 0, -0.8510438); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882918593, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882918593, 8, 100667494) - , (2882918593, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882918593, 53, 101) - , (2882918593, 1, 0) - , (2882918593, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882918593, 11, True) - , (2882918593, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882918597, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882918597, 1, 3900243999, 95.96458, 167.4164, 14.14464, 0.6302396, 0, 0, -0.7764007); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882918597, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882918597, 8, 100667494) - , (2882918597, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882918597, 53, 101) - , (2882918597, 1, 0) - , (2882918597, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882918597, 11, True) - , (2882918597, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882919451, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882919451, 1, 3900375059, 54.66745, 70.69868, 1.114137, -0.3286766, 0, 0, -0.9444425); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882919451, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882919451, 8, 100667494) - , (2882919451, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882919451, 53, 101) - , (2882919451, 1, 0) - , (2882919451, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882919451, 11, True) - , (2882919451, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882919385, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882919385, 1, 3900375071, 88.50359, 163.1952, 2.752251, -0.9998636, 0, 0, -0.01651966); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882919385, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882919385, 8, 100667494) - , (2882919385, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882919385, 53, 101) - , (2882919385, 1, 0) - , (2882919385, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882919385, 11, True) - , (2882919385, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882905251, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882905251, 1, 3917283331, 21.83501, 70.76364, -0.0975, -0.6092042, 0, 0, -0.7930135); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882905251, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882905251, 8, 100667494) - , (2882905251, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882905251, 53, 101) - , (2882905251, 1, 0) - , (2882905251, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882905251, 11, True) - , (2882905251, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882920011, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882920011, 1, 3917283338, 30.00664, 28.25782, 1.003975, 0.7271236, 0, 0, -0.6865066); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882920011, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882920011, 8, 100667494) - , (2882920011, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882920011, 53, 101) - , (2882920011, 1, 0) - , (2882920011, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882920011, 11, True) - , (2882920011, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882920708, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882920708, 1, 3934126122, 120.0629, 25.153, 15.8967, -0.9955065, 0, 0, -0.09469286); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882920708, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882920708, 8, 100667494) - , (2882920708, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882920708, 53, 101) - , (2882920708, 1, 0) - , (2882920708, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882920708, 11, True) - , (2882920708, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882921164, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882921164, 1, 3950903317, 63.64297, 105.8303, 14.61052, 0.4235155, 0, 0, -0.9058889); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882921164, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882921164, 8, 100667494) - , (2882921164, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882921164, 53, 101) - , (2882921164, 1, 0) - , (2882921164, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882921164, 11, True) - , (2882921164, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882921157, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882921157, 1, 3950903341, 123.4743, 96.55667, 31.6111, 0.9520792, 0, 0, -0.3058517); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882921157, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882921157, 8, 100667494) - , (2882921157, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882921157, 53, 101) - , (2882921157, 1, 0) - , (2882921157, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882921157, 11, True) - , (2882921157, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882919763, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882919763, 1, 3917217828, 115.6193, 78.59217, 26.72291, -0.7502334, 0, 0, -0.661173); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882919763, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882919763, 8, 100667494) - , (2882919763, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882919763, 53, 101) - , (2882919763, 1, 0) - , (2882919763, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882919763, 11, True) - , (2882919763, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882919776, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882919776, 1, 3917217825, 104.4102, 4.999252, 25.11609, -0.1083898, 0, 0, -0.9941085); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882919776, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882919776, 8, 100667494) - , (2882919776, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882919776, 53, 101) - , (2882919776, 1, 0) - , (2882919776, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882919776, 11, True) - , (2882919776, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882922671, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882922671, 1, 3933929483, 35.37468, 66.5674, 45.36204, -0.4841473, 0, 0, -0.8749865); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882922671, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882922671, 8, 100667494) - , (2882922671, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882922671, 53, 101) - , (2882922671, 1, 0) - , (2882922671, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882922671, 11, True) - , (2882922671, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882911889, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882911889, 1, 3933601799, 18.73487, 160.0093, 76.4791, 0.6270766, 0, 0, -0.7789575); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882911889, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882911889, 8, 100667494) - , (2882911889, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882911889, 53, 101) - , (2882911889, 1, 0) - , (2882911889, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882911889, 11, True) - , (2882911889, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882949096, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882949096, 1, 4033806370, 113.4002, 31.03942, -0.4475, -0.5710121, 0, 0, -0.8209416); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882949096, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882949096, 8, 100667494) - , (2882949096, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882949096, 53, 101) - , (2882949096, 1, 0) - , (2882949096, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882949096, 11, True) - , (2882949096, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882951400, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882951400, 1, 3967090707, 51.72516, 55.20267, 15.0914, 0.2141706, 0, 0, -0.9767963); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882951400, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882951400, 8, 100667494) - , (2882951400, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882951400, 53, 101) - , (2882951400, 1, 0) - , (2882951400, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882951400, 11, True) - , (2882951400, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882953489, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882953489, 1, 3950379042, 119.2446, 31.75835, 29.67311, -0.953407, 0, 0, -0.3016871); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882953489, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882953489, 8, 100667494) - , (2882953489, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882953489, 53, 101) - , (2882953489, 1, 0) - , (2882953489, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882953489, 11, True) - , (2882953489, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882953538, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882953538, 1, 3950379045, 108.1572, 111.3034, 28.96183, 0.2970418, 0, 0, -0.9548645); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882953538, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882953538, 8, 100667494) - , (2882953538, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882953538, 53, 101) - , (2882953538, 1, 0) - , (2882953538, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882953538, 11, True) - , (2882953538, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882952203, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882952203, 1, 3933798411, 44.65372, 54.73103, 130.3218, 0.9155453, 0, 0, -0.4022149); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882952203, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882952203, 8, 100667494) - , (2882952203, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882952203, 53, 101) - , (2882952203, 1, 0) - , (2882952203, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882952203, 11, True) - , (2882952203, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882951955, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882951955, 1, 3933863985, 150.2374, 5.413445, 65.01951, 0.7183763, 0, 0, -0.6956547); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882951955, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882951955, 8, 100667494) - , (2882951955, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882951955, 53, 101) - , (2882951955, 1, 0) - , (2882951955, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882951955, 11, True) - , (2882951955, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882981203, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882981203, 1, 3967746109, 169.5792, 105.7263, 3.73916, 0.8073518, 0, 0, -0.5900705); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882981203, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882981203, 8, 100667494) - , (2882981203, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882981203, 53, 101) - , (2882981203, 1, 0) - , (2882981203, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882981203, 11, True) - , (2882981203, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882981189, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882981189, 1, 3967811642, 188.3594, 37.99393, 0.608341, 0.2507019, 0, 0, -0.9680643); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882981189, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882981189, 8, 100667494) - , (2882981189, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882981189, 53, 101) - , (2882981189, 1, 0) - , (2882981189, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882981189, 11, True) - , (2882981189, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882981187, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882981187, 1, 3967746072, 51.67304, 188.9106, 12.51745, -0.9662586, 0, 0, -0.257574); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882981187, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882981187, 8, 100667494) - , (2882981187, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882981187, 53, 101) - , (2882981187, 1, 0) - , (2882981187, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882981187, 11, True) - , (2882981187, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882981174, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882981174, 1, 3967680575, 172.1691, 150.3213, -0.0975, 0.7466195, 0, 0, -0.6652513); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882981174, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882981174, 8, 100667494) - , (2882981174, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882981174, 53, 101) - , (2882981174, 1, 0) - , (2882981174, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882981174, 11, True) - , (2882981174, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882981180, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882981180, 1, 3967680555, 141.8182, 63.63305, -0.0975, -0.7349013, 0, 0, -0.6781741); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882981180, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882981180, 8, 100667494) - , (2882981180, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882981180, 53, 101) - , (2882981180, 1, 0) - , (2882981180, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882981180, 11, True) - , (2882981180, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882982337, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882982337, 1, 3984261126, 18.45408, 122.2273, 10.15238, -0.846964, 0, 0, -0.5316502); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882982337, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882982337, 8, 100667494) - , (2882982337, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882982337, 53, 101) - , (2882982337, 1, 0) - , (2882982337, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882982337, 11, True) - , (2882982337, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882982281, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882982281, 1, 3984261134, 37.86398, 143.3738, 7.383034, -0.9711691, 0, 0, -0.2383917); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882982281, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882982281, 8, 100667494) - , (2882982281, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882982281, 53, 101) - , (2882982281, 1, 0) - , (2882982281, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882982281, 11, True) - , (2882982281, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882877548, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882877548, 1, 3967352880, 133.1634, 187.5616, -0.0975, 0.7614385, 0, 0, -0.648237); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882877548, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882877548, 8, 100667494) - , (2882877548, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882877548, 53, 101) - , (2882877548, 1, 0) - , (2882877548, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882877548, 11, True) - , (2882877548, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882877831, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882877831, 1, 3967156233, 39.83165, 13.3892, 14.0025, -0.03900258, 0, 0, -0.9992391); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882877831, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882877831, 8, 100667494) - , (2882877831, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882877831, 53, 101) - , (2882877831, 1, 0) - , (2882877831, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882877831, 11, True) - , (2882877831, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2883015582, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2883015582, 1, 3950903300, 10.8112, 94.16608, 12.0025, 0.2821716, 0, 0, -0.9593639); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2883015582, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2883015582, 8, 100667494) - , (2883015582, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2883015582, 53, 101) - , (2883015582, 1, 0) - , (2883015582, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2883015582, 11, True) - , (2883015582, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2877380093, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2877380093, 1, 3967746110, 182.6945, 143.7905, 1.553364, 0.8334679, 0, 0, -0.5525678); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2877380093, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2877380093, 8, 100667494) - , (2877380093, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2877380093, 53, 101) - , (2877380093, 1, 0) - , (2877380093, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2877380093, 11, True) - , (2877380093, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2877380831, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2877380831, 1, 3950968878, 136.5162, 125.0099, 27.42322, -0.03850466, 0, 0, -0.9992584); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2877380831, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2877380831, 8, 100667494) - , (2877380831, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2877380831, 53, 101) - , (2877380831, 1, 0) - , (2877380831, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2877380831, 11, True) - , (2877380831, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882399028, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882399028, 1, 3917152294, 97.34969, 126.0118, 29.16645, -0.468579, 0, 0, -0.8834216); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882399028, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882399028, 8, 100667494) - , (2882399028, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882399028, 53, 101) - , (2882399028, 1, 0) - , (2882399028, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882399028, 11, True) - , (2882399028, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882403493, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882403493, 1, 3916890118, 8.360862, 140.9023, 24.69813, 0.476601, 0, 0, -0.8791197); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882403493, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882403493, 8, 100667494) - , (2882403493, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882403493, 53, 101) - , (2882403493, 1, 0) - , (2882403493, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882403493, 11, True) - , (2882403493, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882403038, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882403038, 1, 3916824583, 18.12264, 157.5251, 22.87573, -0.1548811, 0, 0, -0.9879331); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882403038, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882403038, 8, 100667494) - , (2882403038, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882403038, 53, 101) - , (2882403038, 1, 0) - , (2882403038, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882403038, 11, True) - , (2882403038, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882402503, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882402503, 1, 3916759077, 100.9055, 102.0564, 60.31565, 0.6060502, 0, 0, -0.7954264); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882402503, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882402503, 8, 100667494) - , (2882402503, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882402503, 53, 101) - , (2882402503, 1, 0) - , (2882402503, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882402503, 11, True) - , (2882402503, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882402538, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882402538, 1, 3899981883, 174.7714, 56.1811, 22.37568, -0.86961, 0, 0, -0.4937393); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882402538, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882402538, 8, 100667494) - , (2882402538, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882402538, 53, 101) - , (2882402538, 1, 0) - , (2882402538, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882402538, 11, True) - , (2882402538, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882401769, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882401769, 1, 3899916350, 181.2067, 135.1783, 22.20287, -0.8532593, 0, 0, -0.521487); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882401769, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882401769, 8, 100667494) - , (2882401769, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882401769, 53, 101) - , (2882401769, 1, 0) - , (2882401769, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882401769, 11, True) - , (2882401769, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2882401816, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2882401816, 1, 3916693549, 138.7784, 102.4001, 56.63426, 0.9952515, 0, 0, -0.09733614); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2882401816, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2882401816, 8, 100667494) - , (2882401816, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2882401816, 53, 101) - , (2882401816, 1, 0) - , (2882401816, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2882401816, 11, True) - , (2882401816, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2883272405, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2883272405, 1, 363986982, 109.9434, 122.4111, 19.31195, 0.02076424, 0, 0, -0.9997844); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2883272405, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2883272405, 8, 100667494) - , (2883272405, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2883272405, 1, 0) - , (2883272405, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2883272405, 11, True) - , (2883272405, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3626648671, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3626648671, 1, 716570641, 69.56686, 1.502257, 10.68071, -0.9465786, 0, 0, -0.3224733); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3626648671, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3626648671, 8, 100667494) - , (3626648671, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3626648671, 1, 0) - , (3626648671, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3626648671, 11, True) - , (3626648671, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3626649660, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3626649660, 1, 716767242, 31.88801, 29.28423, 23.05231, 0.816186, 0, 0, -0.5777893); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3626649660, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3626649660, 8, 100667494) - , (3626649660, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3626649660, 1, 0) - , (3626649660, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3626649660, 11, True) - , (3626649660, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3626496441, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3626496441, 1, 716832803, 107.3473, 55.03259, 20.15, -0.625361, 0, 0, -0.7803356); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3626496441, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3626496441, 8, 100667494) - , (3626496441, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3626496441, 1, 0) - , (3626496441, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3626496441, 11, True) - , (3626496441, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3626631955, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3626631955, 1, 414449698, 111.7668, 31.88868, 22.15, -0.1789647, 0, 0, -0.9838555); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3626631955, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3626631955, 8, 100667494) - , (3626631955, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3626631955, 1, 0) - , (3626631955, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3626631955, 11, True) - , (3626631955, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (3626283246, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (3626283246, 1, 498270221, 30.29149, 114.6774, -0.75, 0.7688649, 0, 0, -0.6394113); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (3626283246, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (3626283246, 8, 100667494) - , (3626283246, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (3626283246, 1, 0) - , (3626283246, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (3626283246, 11, True) - , (3626283246, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928871927, 148, 11567, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928871927, 1, 716570642, 54.90234, 30.68965, 15.55708, -0.9465786, 0, 0, -0.3224733); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928871927, 1, 'Carenzi Sentry Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928871927, 8, 100667494) - , (2928871927, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928871927, 1, 0) - , (2928871927, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928871927, 11, True) - , (2928871927, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928778410, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928778410, 1, 683081747, 67.65919, 51.60414, 64.01908, -0.5512413, 0, 0, -0.8343459); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928778410, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928778410, 8, 100667494) - , (2928778410, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928778410, 1, 0) - , (2928778410, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928778410, 11, True) - , (2928778410, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928778816, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928778816, 1, 683081755, 93.93385, 67.32441, 50.68258, 0.8934817, 0, 0, -0.4490995); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928778816, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928778816, 8, 100667494) - , (2928778816, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928778816, 1, 0) - , (2928778816, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928778816, 11, True) - , (2928778816, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928783426, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928783426, 1, 699990077, 175.6225, 116.3865, 22.15, -0.9219589, 0, 0, -0.3872876); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928783426, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928783426, 8, 100667494) - , (2928783426, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928783426, 1, 0) - , (2928783426, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928783426, 11, True) - , (2928783426, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928727624, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928727624, 1, 716767292, 184.3571, 83.04533, 20.15, -0.9982939, 0, 0, -0.05838806); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928727624, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928727624, 8, 100667494) - , (2928727624, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928727624, 1, 0) - , (2928727624, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928727624, 11, True) - , (2928727624, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928728001, 148, 11568, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928728001, 1, 716767288, 162.5344, 171.6429, 20.15, 0.3658301, 0, 0, -0.9306816); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928728001, 1, 'Carenzi Stalker Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928728001, 8, 100667494) - , (2928728001, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928728001, 1, 0) - , (2928728001, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928728001, 11, True) - , (2928728001, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928754967, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928754967, 1, 650510367, 80.21104, 155.1533, 4.589069, 0.9852811, 0, 0, -0.1709423); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928754967, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928754967, 8, 100667494) - , (2928754967, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928754967, 1, 0) - , (2928754967, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928754967, 11, True) - , (2928754967, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928756580, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928756580, 1, 633798692, 112.3487, 84.34427, 0.15, -0.4064407, 0, 0, -0.9136772); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928756580, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928756580, 8, 100667494) - , (2928756580, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928756580, 1, 0) - , (2928756580, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928756580, 11, True) - , (2928756580, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928951859, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928951859, 1, 498073649, 160.8016, 4.007462, 0.15, -0.08444723, 0, 0, -0.996428); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928951859, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928951859, 8, 100667494) - , (2928951859, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928951859, 1, 0) - , (2928951859, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928951859, 11, True) - , (2928951859, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928956086, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928956086, 1, 498270218, 47.54193, 33.8854, -0.75, 0.832119, 0, 0, -0.5545971); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928956086, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928956086, 8, 100667494) - , (2928956086, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928956086, 1, 0) - , (2928956086, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928956086, 11, True) - , (2928956086, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928969379, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928969379, 1, 447938607, 130.5583, 147.5427, 22.15, -0.1777377, 0, 0, -0.9840779); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928969379, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928969379, 8, 100667494) - , (2928969379, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928969379, 1, 0) - , (2928969379, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928969379, 11, True) - , (2928969379, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928973243, 148, 11565, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928973243, 1, 397672507, 170.8804, 48.33722, 21.93807, -0.1301091, 0, 0, -0.9914997); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928973243, 1, 'Carenzi Pouchling Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928973243, 8, 100667494) - , (2928973243, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928973243, 1, 0) - , (2928973243, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928973243, 11, True) - , (2928973243, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928973281, 148, 11563, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928973281, 1, 397737998, 38.19575, 140.2113, 20.15, 0.3563286, 0, 0, -0.9343607); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928973281, 1, 'Carenzi Burrower Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928973281, 8, 100667494) - , (2928973281, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928973281, 1, 0) - , (2928973281, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928973281, 11, True) - , (2928973281, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2929135863, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2929135863, 1, 482541620, 147.5513, 93.03513, 24.15, 0.8750136, 0, 0, -0.4840983); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2929135863, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2929135863, 8, 100667494) - , (2929135863, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2929135863, 1, 0) - , (2929135863, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2929135863, 11, True) - , (2929135863, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2928746749, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2928746749, 1, 499318805, 59.11784, 101.522, 22.15, -0.9999985, 0, 0, -0.001765401); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928746749, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2928746749, 8, 100667494) - , (2928746749, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928746749, 1, 0) - , (2928746749, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2928746749, 11, True) - , (2928746749, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2929139828, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2929139828, 1, 499384362, 121.3659, 38.44794, 24.03618, 0.4630448, 0, 0, -0.8863349); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2929139828, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2929139828, 8, 100667494) - , (2929139828, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2929139828, 1, 0) - , (2929139828, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2929139828, 11, True) - , (2929139828, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2929102374, 148, 27719, 0, NULL, 32769); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2929102374, 1, 533004342, 149.4801, 125.416, 66.15, 0.2819906, 0, 0, -0.9594172); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2929102374, 1, 'Carnivorous Carenzi Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2929102374, 8, 100667494) - , (2929102374, 1, 33557199); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2929102374, 1, 0) - , (2929102374, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2929102374, 11, True) - , (2929102374, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2930464813, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2930464813, 1, 3967615015, 114.5373, 151.3823, -0.4475, -0.1518669, 0, 0, -0.9884009); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2930464813, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2930464813, 8, 100667494) - , (2930464813, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2930464813, 53, 101) - , (2930464813, 1, 0) - , (2930464813, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2930464813, 11, True) - , (2930464813, 14, True); - -INSERT INTO `ace_object` (`aceObjectId`, `aceObjectDescriptionFlags`, `weenieClassId`, `weenieHeaderFlags`, `currentMotionState`, `physicsDescriptionFlag`) -VALUES (2930464857, 148, 27803, 0, NULL, 163841); - -INSERT INTO `ace_position` (`aceObjectId`, `positionType`, `landblockRaw`, `posX`, `posY`, `posZ`, `qW`, `qX`, `qY`, `qZ`) -VALUES (2930464857, 1, 3967614983, 6.902314, 156.6209, 12.0025, 0.7330937, 0, 0, -0.6801276); - -INSERT INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2930464857, 1, 'Infected Assailer Camp Generator'); - -INSERT INTO `ace_object_properties_did` (`aceObjectId`, `didPropertyId`, `propertyValue`) -VALUES (2930464857, 8, 100667494) - , (2930464857, 1, 33558108); - -INSERT INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2930464857, 53, 101) - , (2930464857, 1, 0) - , (2930464857, 93, 1040); - -INSERT INTO `ace_object_properties_bool` (`aceObjectId`, `boolPropertyId`, `propertyValue`) -VALUES (2930464857, 11, True) - , (2930464857, 14, True); - diff --git a/Database/3-Core/3-apprasialobjects/Generators_0.sql b/Database/3-Core/3-apprasialobjects/Generators_0.sql deleted file mode 100644 index 51e2859c2b..0000000000 --- a/Database/3-Core/3-apprasialobjects/Generators_0.sql +++ /dev/null @@ -1,12 +0,0 @@ -REPLACE INTO `ace_object_properties_string` (`aceObjectId`, `strPropertyId`, `propertyValue`) -VALUES (2928746749, 16, 'Inscribed spell: Astyrrian''s Gift -Increases damage the target takes from Lightning by 185%.') - , (2928746749, 14, 'Use this item to attempt to learn its spell.'); - -REPLACE INTO `ace_object_properties_int` (`aceObjectId`, `intPropertyId`, `propertyValue`) -VALUES (2928746749, 19, 2000) - , (2928746749, 5, 30); - -REPLACE INTO `ace_object_properties_spell` (`aceObjectId`, `spellId`) -VALUES (2928746749, 2172); - diff --git a/Database/4-CoreUpdates/000-ObjectsToDelete.sql b/Database/4-CoreUpdates/000-ObjectsToDelete.sql new file mode 100644 index 0000000000..7e5027709d --- /dev/null +++ b/Database/4-CoreUpdates/000-ObjectsToDelete.sql @@ -0,0 +1,37 @@ +/* Add objects to this script that should be deleted from ACE-World due to either being duplicates or recreated/regenerated by ACE generators */ + +/* Duplicates */ +DELETE FROM ace_object +WHERE aceObjectId = 3688967941; + +DELETE FROM ace_object +WHERE aceObjectId = 2932423033; + +DELETE FROM ace_object +WHERE aceObjectId = 3706113473; + +DELETE FROM ace_object +WHERE aceObjectId = 3697093316; + +DELETE FROM ace_object +WHERE aceObjectId = 3697092699; + +DELETE FROM ace_object +WHERE aceObjectId = 2885159582; + +DELETE FROM ace_object +WHERE aceObjectId = 2885159323; + +DELETE FROM ace_object +WHERE aceObjectId = 3692421382; + + +/* Regenerated by ACE generators */ +DELETE FROM ace_object +WHERE aceObjectId = 2012229714; + +DELETE FROM ace_object +WHERE aceObjectId = 2012229730; + +DELETE FROM ace_object +WHERE aceObjectId = 2012229709; diff --git a/Database/6-Generators/00000000-InitialGenerators.sql b/Database/6-Generators/00000000-InitialGenerators.sql new file mode 100644 index 0000000000..33803a179e --- /dev/null +++ b/Database/6-Generators/00000000-InitialGenerators.sql @@ -0,0 +1,814 @@ +USE `ace_world`; + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 99999; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'ace99999-counterreset'; /* Unique Name */ + + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 1159; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (1159, 'linkmonstergen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (1159, 0, 1159); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 1542; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkitemgen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (1542, 'linkitemgen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (1542, 0, 1542); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 3596; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonsterscattergen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (3596, 'linkmonsterscattergen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (3596, 0, 3596); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 3597; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkitemscattergen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (3597, 'linkitemscattergen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (3597, 0, 3597); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 3950; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkitemgen1hour'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (3950, 'linkitemgen1hour'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (3950, 0, 3950); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (3950, 41, 3600); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 3951; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen1hour'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (3951, 'linkmonstergen1hour'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (3951, 0, 3951); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (3951, 41, 3600); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 3952; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkitemgen30minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (3952, 'linkitemgen30minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (3952, 0, 3952); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (3952, 41, 1800); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 3953; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen30minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (3953, 'linkmonstergen30minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (3953, 0, 3953); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (3953, 41, 1800); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 3954; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkitemgen15minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (3954, 'linkitemgen15minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (3954, 0, 3954); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (3954, 41, 900); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 3955; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen15minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (3955, 'linkmonstergen15minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (3955, 0, 3955); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (3955, 41, 900); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 4142; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkitemgen2minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (4142, 'linkitemgen2minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (4142, 0, 4142); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (4142, 41, 120); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 4219; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen7minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (4219, 'linkmonstergen7minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (4219, 0, 4219); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (4219, 41, 420); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 5085; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkitemgen25seconds'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (5085, 'linkitemgen25seconds'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (5085, 0, 5085); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (5085, 41, 25); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 5086; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen30seconds'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (5086, 'linkmonstergen30seconds'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (5086, 0, 5086); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (5086, 41, 30); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 5485; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linknewbiemonstergen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (5485, 'linknewbiemonstergen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (5485, 0, 5485); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 6074; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkactivatebigswitchgen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (6074, 'linkactivatebigswitchgen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (6074, 0, 6074); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 6428; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkactivatebuttongen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (6428, 'linkactivatebuttongen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (6428, 0, 6428); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 6429; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkactivatepressureplategen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (6429, 'linkactivatepressureplategen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (6429, 0, 6429); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 6430; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkactivatebigpressureplategen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (6430, 'linkactivatebigpressureplategen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (6430, 0, 6430); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 6431; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkactivatelevergen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (6431, 'linkactivatelevergen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (6431, 0, 6431); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 6432; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkactivategearlevergen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (6432, 'linkactivategearlevergen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (6432, 0, 6432); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 7923; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen3minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (7923, 'linkmonstergen3minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (7923, 0, 7923); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (7923, 41, 180); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 7924; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen5minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (7924, 'linkmonstergen5minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (7924, 0, 7924); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (7924, 41, 300); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 7925; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen10minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (7925, 'linkmonstergen10minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (7925, 0, 7925); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (7925, 41, 600); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 7926; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen20minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (7926, 'linkmonstergen20minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (7926, 0, 7926); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (7926, 41, 1200); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 7932; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen4minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (7932, 'linkmonstergen4minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (7932, 0, 7932); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (7932, 41, 240); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 9284; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkeventgen'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (9284, 'linkeventgen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (9284, 0, 9284); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 15274; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen1minute'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (15274, 'linkmonstergen1minute'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (15274, 0, 15274); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (15274, 41, 60); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 15759; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkitemgen10seconds'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (15759, 'linkitemgen10seconds'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (15759, 0, 15759); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (15759, 41, 10); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 21120; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergenrent'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (21120, 'linkmonstergenrent'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (21120, 0, 21120); + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 24129; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen2minutes'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (24129, 'linkmonstergen2minutes'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (24129, 0, 24129); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (24129, 41, 120); /* RegenerationInterval in seconds */ + +/* Delete bad or outdated stuff */ +DELETE FROM ace_weenie_class +WHERE weenieClassId = 28282; /* Unique WCID */ + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'linkmonstergen10seconds'; /* Unique Name */ + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassId, + weenieClassDescription) +VALUES + (28282, 'linkmonstergen10seconds'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (28282, 0, 28282); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (28282, 41, 10); /* RegenerationInterval in seconds */ diff --git a/Database/6-Generators/1246.sql b/Database/6-Generators/1246.sql new file mode 100644 index 0000000000..73a28c20cc --- /dev/null +++ b/Database/6-Generators/1246.sql @@ -0,0 +1,83 @@ +/* Sample Script of how to build a generator with a new weenie */ +/* Technically this generator shouldn't need a new weenie and instead should use a linkmonstergen, probably the 5 or 10 minute respawn version */ + +USE `ace_world`; + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'RABBITWHITEgen'; + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassDescription) +VALUES + ('RABBITWHITEgen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (last_insert_id(), 148, last_insert_id()); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, last_insert_id()); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), /* PhysicsState = 1040 */ + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 2568), /* ActivationCreateClass = 2568 (wcid of White Rabbit) */ + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (last_insert_id(), 41, 300); /* RegenerationInterval in seconds */ + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'White Rabbit Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 306577664, 132.162, 69.3276, 46.8,0.996562, 0.000000, 0.000000, 0.082845); diff --git a/Database/6-Generators/7F03.sql b/Database/6-Generators/7F03.sql new file mode 100644 index 0000000000..af6cac37d9 --- /dev/null +++ b/Database/6-Generators/7F03.sql @@ -0,0 +1,908 @@ +USE `ace_world`; + +/* Insert new stuff */ +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 15759); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), /* CSetup */ + (last_insert_id(), 8, 100667494); /* Icon */ + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), /* PhysicsState = 1040 */ + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 13239), /* ActivationCreateClass */ + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Academy Cap Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903478, 22.2098, -40.2234, 0.67375, 0.102269, 0.000000, 0.000000, -0.994757); + + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 15759); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 13240), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Academy Gauntlets Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903472, 18.3629, -21.0976, 0, -0.922891, 0.000000, 0.000000, 0.385062); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 15759); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 13241), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Academy Leggings Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903478, 17.7939, -41.728, -0.002500013, -0.481744, 0.000000, 0.000000, -0.876312); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 28282); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 12698), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Sparring Golem Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903610, 60.9185, -20.011, 0.009000003, -0.7153111, 0.000000, 0.000000, -0.6988061); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 15759); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 5090), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Bruised Apple Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903469, 7.739, -30.103, 1.5, 0.702712, 0.000000, 0.000000, -0.711474); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 28282); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 12698), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Sparring Golem Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903705, 86.856, -20.211, 0.009000003, -0.707107, 0.000000, 0.000000, -0.707107); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 28282); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 12698), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Sparring Golem Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903682, 83.7375, -6.96577, 0.009000003, 0.487769, 0.000000, 0.000000, 0.872973); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 28282); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 12698), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Sparring Golem Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903660, 69.9163, -11.2541, 0.009000003, -0.655506, 0.000000, 0.000000, -0.75519); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 28282); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 12698), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Sparring Golem Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903662, 69.3977, -28.0201, 0.009000003, -0.691234, 0.000000, 0.000000, -0.722631); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 28282); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 12698), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Sparring Golem Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903684, 79.3977, -28.0201, 0.009000003, -0.691234, 0.000000, 0.000000, -0.722631); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 28282); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 12698), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Sparring Golem Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903684, 83.6883, -31.0056, 0.009000003, 0.853479, 0.000000, 0.000000, 0.521127); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 28282); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 12698), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Sparring Golem Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903705, 87.9597, -15.8886, 0.009000003, 0.5688431, 0.000000, 0.000000, 0.8224461); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 28282); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 12698), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Sparring Golem Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903683, 77.3078, -20.2622, 0.009000003, -0.695954, 0.000000, 0.000000, -0.718086); + +DELETE FROM ace_object +WHERE aceObjectId = 2012229714; + +DELETE FROM ace_object +WHERE aceObjectId = 2012229730; + +DELETE FROM ace_object +WHERE aceObjectId = 2012229709; + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 1542); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 30989), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Treasure Chest Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903620, 57.6229, -42.4067, 0, -0.3798201, 0.000000, 0.000000, -0.9250603); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 1542); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 30989), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Treasure Chest Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903601, 57.7551, 2.18029, 0, 0.9210611, 0.000000, 0.000000, 0.3894181); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, 1542); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 30989), + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'Treasure Chest Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2130903715, 92.4067, -42.3771, 0, 0.385543, 0.000000, 0.000000, -0.9226899); diff --git a/Database/6-Generators/A9B3.sql b/Database/6-Generators/A9B3.sql new file mode 100644 index 0000000000..6b862b09c1 --- /dev/null +++ b/Database/6-Generators/A9B3.sql @@ -0,0 +1,83 @@ +/* Sample Script of how to build a generator with a new weenie */ +/* Technically this generator shouldn't need a new weenie and instead should use a linkmonstergen, probably the 1, 2 or 5 minute respawn version */ + +USE `ace_world`; + +DELETE FROM ace_weenie_class +WHERE weenieClassDescription = 'CHICKENCROSSINGROADgen'; + +/* Insert new stuff */ +INSERT INTO ace_weenie_class + (weenieClassDescription) +VALUES + ('CHICKENCROSSINGROADgen'); + +INSERT INTO ace_object + (aceObjectId, + aceObjectDescriptionFlags, + weenieClassId) +VALUES + (last_insert_id(), 148, last_insert_id()); + +INSERT INTO ace_object + (aceObjectDescriptionFlags, + weenieClassId) +VALUES + (148, last_insert_id()); + +INSERT INTO ace_object_properties_did + (aceObjectId, + didPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 33555051), + (last_insert_id(), 8, 100667494); + +INSERT INTO ace_object_properties_int + (aceObjectId, + intPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 0), /* ItemType = 0 */ + (last_insert_id(), 81, 1), /* MaxGeneratedObjects = 1 */ + (last_insert_id(), 93, 1040), /* PhysicsState = 1040 */ + (last_insert_id(), 100, 2), /* GeneratorType = Absolute */ + (last_insert_id(), 104, 25578),/* ActivationCreateClass = 25578 (wcid of The Chicken) */ + (last_insert_id(), 142, 0), /* GeneratorTimeType = Undef */ + (last_insert_id(), 9006, 100); /* GeneratorProbability = 100 */ + +INSERT INTO ace_object_properties_bool + (aceObjectId, + boolPropertyId, + propertyValue) +VALUES + (last_insert_id(), 11, True), + (last_insert_id(), 14, True); + +INSERT INTO ace_object_properties_double + (aceObjectId, + dblPropertyId, + propertyValue) +VALUES + (last_insert_id(), 41, 120); /* RegenerationInterval in seconds */ + +INSERT INTO ace_object_properties_string + (aceObjectId, + strPropertyId, + propertyValue) +VALUES + (last_insert_id(), 1, 'The Chicken Generator'); + +INSERT INTO ace_position + (aceObjectId, + positionType, + landblockRaw, + posX, + posY, + posZ, + qW, + qX, + qY, + qZ) +VALUES + (last_insert_id(), 1, 2847080454, 17.83164, 125.1607, 93.992, 0.7071068, 0.000000, 0.000000, -0.7071068); /* Position close to Holtburg Lifestone */ diff --git a/Database/compiled/combine.bat b/Database/compiled/combine.bat index 7f42e071bb..224ed0ac80 100644 --- a/Database/compiled/combine.bat +++ b/Database/compiled/combine.bat @@ -7,6 +7,10 @@ copy /b ACE-World.sql + ..\2-BaseUpdates\*.sql ACE-World.sql echo. >> ACE-World.sql copy /b ACE-World.sql + ..\3-Core\1-weenies\*.sql ACE-World.sql echo. >> ACE-World.sql +copy /b ACE-World.sql + ..\3-Core\000-PrepDatabase.sql ACE-World.sql +echo. >> ACE-World.sql +copy /b ACE-World.sql + ..\6-Generators\*.sql ACE-World.sql +echo. >> ACE-World.sql copy /b ACE-World.sql + ..\3-Core\2-objects\*.sql ACE-World.sql echo. >> ACE-World.sql copy /b ACE-World.sql + ..\3-Core\3-apprasialobjects\*.sql ACE-World.sql