-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* rewritten to be able to dynamicly load it's components - CLISetup -> checks for UtilityScripts (config, setup, dbc reader, etc.) -> checks for SetupScripts (individual sql/file generators) - each step may now have a help prompt attached. If none are provided, the containing script may provide it's help. - all Scripts are self contained modules. No more editing of 3+ files if some component is added/removed * removed intermediaries FileGen & SqlGen * functional changes - allow providing CLI arguments to siteconfig and account UtilityScript and skip the interactive prompts - set slot for consumable enchantment items so they are filtrable - zones dataset is now localized and generated from GlobalStrings.lua and DungeonMap.dbc. Related data dumps removed. - 'aowow' and 'prQueue' executables now have shebangs WARNING - command line options have been renamed!
- Loading branch information
Showing
149 changed files
with
9,619 additions
and
9,168 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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
|
||
require 'includes/kernel.php'; | ||
|
||
if (!CLI) | ||
if (PHP_SAPI !== 'cli') | ||
die("this script must be run from CLI\n"); | ||
if (CLI && getcwd().DIRECTORY_SEPARATOR.'aowow' != __FILE__) | ||
die("this script must be run from root directory\n"); | ||
else | ||
require 'setup/setup.php'; | ||
if (PHP_SAPI === 'cli' && getcwd().DIRECTORY_SEPARATOR.'aowow' != __FILE__) | ||
die("this script must be run from the aowow root directory\n"); | ||
|
||
require 'includes/kernel.php'; | ||
require 'setup/setup.php'; | ||
|
||
?> |
This file was deleted.
Oops, something went wrong.
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
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
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
Oops, something went wrong.