mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* initial implementation * this includes a complete reindexing of everything touching icons * this also means, no linking to red-rocket-site though, they index them differently
37 lines
765 B
PHP
37 lines
765 B
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
if (!CLI)
|
|
die('not in cli mode');
|
|
|
|
|
|
$customData = array(
|
|
);
|
|
$reqDBC = ['spellicon', 'itemdisplayinfo'];
|
|
|
|
function icons()
|
|
{
|
|
DB::Aowow()->query('TRUNCATE ?_icons');
|
|
DB::Aowow()->query('ALTER TABLE ?_icons AUTO_INCREMENT = 1');
|
|
|
|
$baseQuery = '
|
|
INSERT INTO ?_icons (`name`) SELECT x FROM
|
|
(
|
|
(SELECT LOWER(SUBSTRING_INDEX(iconPath, "\\\\", -1)) AS x FROM dbc_spellicon WHERE iconPath LIKE "%icons%")
|
|
UNION
|
|
(SELECT LOWER(inventoryIcon1) AS x FROM dbc_itemdisplayinfo WHERE inventoryIcon1 <> "")
|
|
) y
|
|
GROUP BY
|
|
x
|
|
ORDER BY
|
|
x ASC';
|
|
|
|
DB::Aowow()->query($baseQuery);
|
|
|
|
return true;
|
|
}
|
|
|
|
?>
|