-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
- Loading branch information
1 parent
a8307cf
commit 17b4860
Showing
15 changed files
with
1,997 additions
and
5,900 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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'; | ||
|
Oops, something went wrong.