- 威望
- 0
- 金钱
- 19807
- 贡献
- 0
- 最后登录
- 2024-6-11
- 注册时间
- 2022-10-11
- 主题
- 9710
- 精华
- 0
- 帖子
- 9711
|
魔兽世界让BOSS无法免疫控制结果的sql命令
UPDATE creature_template SET mechanic_immune_mask = 0 where rank=5;
UPDATE creature_template SET mechanic_immune_mask = 0 where rank=4;
UPDATE creature_template SET mechanic_immune_mask = 0 where rank=3;
UPDATE creature_template SET mechanic_immune_mask = 0 where rank=2;
UPDATE creature_template SET mechanic_immune_mask = 0 where rank=1;
UPDATE creature_template SET mechanic_immune_mask = 0 where rank=0;
将以上代码保存为.sql文件。
在Navicat8里,world库右键,运转批次处置使命,加载该sql文件。挑选格式为utf8即可。 |
|