mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Misc/Readme
* update required TDB-version (hint: its never 'latest') * fixed artifacts from setup conversion * version push
This commit is contained in:
@@ -24,11 +24,11 @@ Also, this project is not meant to be used for commercial puposes of any kind!
|
|||||||
+ Mysqli
|
+ Mysqli
|
||||||
+ mbString
|
+ mbString
|
||||||
+ MySQL ≥ 5.5.30
|
+ MySQL ≥ 5.5.30
|
||||||
+ [TDB 335.64](https://github.com/TrinityCore/TrinityCore/releases/tag/TDB335.64) - including world updates up to 09.10.2018
|
+ [TDB 335.20021](https://github.com/TrinityCore/TrinityCore/releases/tag/TDB335.20021)
|
||||||
+ Tools require cmake: Please refer to the individual repositories for detailed information
|
+ Tools require cmake: Please refer to the individual repositories for detailed information
|
||||||
+ [MPQExtractor](https://github.com/Sarjuuk/MPQExtractor) / [FFmpeg](https://ffmpeg.org/download.html) / [BLPConverter](https://github.com/Sarjuuk/BLPConverter) (optional)
|
+ [MPQExtractor](https://github.com/Sarjuuk/MPQExtractor) / [FFmpeg](https://ffmpeg.org/download.html) / (optional: [BLPConverter](https://github.com/Sarjuuk/BLPConverter))
|
||||||
+ WIN users may find it easier to use these alternatives
|
+ WIN users may find it easier to use these alternatives
|
||||||
+ [MPQEditor](http://www.zezula.net/en/mpq/download.html) / [FFmpeg](http://ffmpeg.zeranoe.com/builds/) / [BLPConverter](https://github.com/PatrickCyr/BLPConverter) (optional)
|
+ [MPQEditor](http://www.zezula.net/en/mpq/download.html) / [FFmpeg](http://ffmpeg.zeranoe.com/builds/) / (optional: [BLPConverter](https://github.com/PatrickCyr/BLPConverter))
|
||||||
|
|
||||||
audio processing may require [lame](https://sourceforge.net/projects/lame/files/lame/3.99/) or [vorbis-tools](https://www.xiph.org/downloads/) (which may require libvorbis (which may require libogg))
|
audio processing may require [lame](https://sourceforge.net/projects/lame/files/lame/3.99/) or [vorbis-tools](https://www.xiph.org/downloads/) (which may require libvorbis (which may require libogg))
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
define('AOWOW_REVISION', 29);
|
define('AOWOW_REVISION', 30);
|
||||||
define('CLI', PHP_SAPI === 'cli');
|
define('CLI', PHP_SAPI === 'cli');
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -248,7 +248,7 @@ SqlGen::register(new class extends SetupScript
|
|||||||
$offset = 0;
|
$offset = 0;
|
||||||
|
|
||||||
CLI::write(' - applying stats for enchantments');
|
CLI::write(' - applying stats for enchantments');
|
||||||
$enchStats = enchantment_stats();
|
$enchStats = $this->enchantment_stats();
|
||||||
CLI::write(' '.count($enchStats).' enchantments parsed');
|
CLI::write(' '.count($enchStats).' enchantments parsed');
|
||||||
CLI::write(' - applying stats for items');
|
CLI::write(' - applying stats for items');
|
||||||
|
|
||||||
|
|||||||
@@ -186,7 +186,7 @@ SqlGen::register(new class extends SetupScript
|
|||||||
}
|
}
|
||||||
|
|
||||||
// if areaId is set, area was determined by TC .. we're fine .. mostly
|
// if areaId is set, area was determined by TC .. we're fine .. mostly
|
||||||
$final = $spawn['areaId'] ? $points[0] : $checkCoords($points);
|
$final = $spawn['areaId'] ? $points[0] : $this->checkCoords($points);
|
||||||
|
|
||||||
if ($idx < 5)
|
if ($idx < 5)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user