mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
You need extract new dbc. Also recommended extract new map/vmaps. And apply ofc sql updates that including character convertion. Special thanks to TOM_RUS for continue work at next client versions support :)
22 lines
904 B
SQL
22 lines
904 B
SQL
ALTER TABLE db_version CHANGE COLUMN required_9133_01_mangos_spell_proc_event required_9136_02_mangos_quest_poi bit;
|
|
|
|
DROP TABLE IF EXISTS `quest_poi`;
|
|
CREATE TABLE `quest_poi` (
|
|
`questid` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`objIndex` int(11) NOT NULL DEFAULT '0',
|
|
`mapId` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`unk1` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`unk2` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`unk3` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`unk4` int(11) unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`questid`,`objIndex`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
|
|
DROP TABLE IF EXISTS `quest_poi_points`;
|
|
CREATE TABLE `quest_poi_points` (
|
|
`questId` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`objIndex` int(11) NOT NULL DEFAULT '0',
|
|
`x` int(11) NOT NULL DEFAULT '0',
|
|
`y` int(11) NOT NULL DEFAULT '0',
|
|
KEY `idx` (`questId`,`objIndex`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|