Skip to content

Commit

Permalink
update db
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinZhu committed Dec 26, 2023
1 parent fb61d31 commit 871c44c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion db_alvin_custom/alvinwow_fix.sql
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ UPDATE `creature_template` SET `flags_extra` = 514 WHERE `entry` in (23340, 2334
REPLACE INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES (38132, 'spell_lady_vashj_paralyze');

-- fix no way point
UPDATE `creature` SET `MovementType` = 1, `wander_distance` = 5 WHERE `guid` in (6973, 6974, 6975, 6989, 7210, 42575, 43480, 43481, 48850, 74169, 75654, 82897, 84011, 86626, 125869, 126441, 128577, 137481, 137482, 137483, 137484, 137611, 201253, 207210, 207211);
UPDATE `creature` SET `MovementType` = 1, `wander_distance` = 5 WHERE `guid` in (42575, 43480, 43481, 48850, 74169, 75654, 82897, 84011, 86626, 125869, 126441, 128577, 137481, 137482, 137483, 137484, 137611, 201253, 207210, 207211);

-- fix link id missing
DELETE FROM `smart_scripts` WHERE (`entryorguid` = 4507) AND (`source_type` = 0) AND (`id` IN (3, 4, 6, 2));
Expand Down
2 changes: 1 addition & 1 deletion db_alvin_custom/alvinwow_locale.sql
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ UPDATE `acore_string` SET `locale_zhCN` = '要进入,你必须完成以下成
UPDATE `acore_string` SET `locale_zhCN` = '玩家没有可恢复的物品' WHERE `entry` = '198';
UPDATE `acore_string` SET `locale_zhCN` = '角色' WHERE `entry` = '5040';
UPDATE `acore_string` SET `locale_zhCN` = '|cff00ff00工单回复|r: [%s]|r' WHERE `entry` = '2029';
UPDATE `acore_string` SET `locale_zhCN` = NULL WHERE `entry` = '515';
UPDATE `acore_string` SET `locale_zhCN` = '%d%s - (entry: %d) |cffffffff|H生物:%d|h[%s X:%f Y:%f Z:%f 地图号:%d]|h|r' WHERE `entry` = '515';
UPDATE `acore_string` SET `locale_zhCN` = '未发现幻化。' WHERE `entry` = '11109';
UPDATE `acore_string` SET `locale_zhCN` = '子命令 \'%.*s%c%.*s\' 有歧义:' WHERE `entry` = '7';
UPDATE `acore_string` SET `locale_zhCN` = '没有找到id: %i 的 acore_string.' WHERE `entry` = '6617';
Expand Down

3 comments on commit 871c44c

@icedcolor
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[1146] Table 'acore_world.charsections_dbc' doesn't exist
Your database structure is not up to date. Please make sure you've executed all queries in the sql/updates folders.

请教下,编译完运行worldserver自动生成数据库后运行到最后就提示这个错误

@alexyang-sea
Copy link

@alexyang-sea alexyang-sea commented on 871c44c Dec 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

大佬的端很受欢迎,期待越来越好。自定义的sql除了auth和characters这两个以外,其余的都导入world的表里吧?
另外自定义里面的那2个Pdump是怎么用的?

@alexyang-sea
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[1146] Table 'acore_world.charsections_dbc' doesn't exist Your database structure is not up to date. Please make sure you've executed all queries in the sql/updates folders.

请教下,编译完运行worldserver自动生成数据库后运行到最后就提示这个错误

你要手动把modules里拍卖行和一命模式的sql导入数据库,还不行就要把其它那些mode的sql也手动导入。我是就个人渐进的和playerbot的没手动导入,其它几个都手动导入了一遍,然后就不报错啦。希望以后能做成自动更新全部的数据就好啦

Please sign in to comment.