mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* restructure setup to allow for self contained setup steps to self register (just the sql for now) * should ease adding new scripts in future
33 lines
838 B
PHP
33 lines
838 B
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
if (!CLI)
|
|
die('not in cli mode');
|
|
|
|
|
|
SqlGen::register(new class extends SetupScript
|
|
{
|
|
protected $command = 'spelldifficulty';
|
|
|
|
protected $tblDependancyTC = ['spelldifficulty_dbc'];
|
|
protected $dbcSourceFiles = ['spelldifficulty'];
|
|
|
|
public function generate(array $ids = []) : bool
|
|
{
|
|
// has no unique keys..
|
|
DB::Aowow()->query('TRUNCATE TABLE ?_spelldifficulty');
|
|
|
|
DB::Aowow()->query('INSERT INTO ?_spelldifficulty SELECT * FROM dbc_spelldifficulty');
|
|
|
|
$rows = DB::World()->select('SELECT spellid0, spellid1, spellid2, spellid3 FROM spelldifficulty_dbc');
|
|
foreach ($rows as $r)
|
|
DB::Aowow()->query('INSERT INTO ?_spelldifficulty VALUES (?a)', array_values($r));
|
|
|
|
return true;
|
|
}
|
|
});
|
|
|
|
?>
|