魔兽世界改模型代码,如何修改?
发布时间:2023-07-04 18:16:54 作者:小德 来源:0314游戏网 【 字体:大 中 小 】
魔兽世界改模型代码,如何修改?
我们现在总结下截止到《魔兽世界巫妖王之怒》3.35版中 所有的常规红瓶蓝瓶和大紫瓶!
以及这些物品所触发的技能ID[初级治疗药水](魔兽世界)
.additem 118
439
[次级治疗药水](魔兽世界)
.additem 858
440
[治疗药水](魔兽世界)
.additem 929
441
[强效治疗药水](魔兽世界)
.additem 1710
2024
[超强治疗药水](魔兽世界)
.additem 3928
4042
[极效治疗药水](魔兽世界)
.additem 13446
17534
[超强效治疗药水](燃烧的远征)
.additem 22829
28495
[符刻治疗药水](巫妖王之怒)
.additem 33447
43185
[奇效治疗药水](大地的裂变)
.additem 57191
未知
------------------------------------------------
[初级法力药水](魔兽世界)
.additem 2455
437
[次级法力药水](魔兽世界)
.additem 3385
438
[法力药水](魔兽世界)
.additem 3827
2023
[强效法力药水](魔兽世界)
.additem 6149
11903
[超强法力药水](魔兽世界)
.additem 13443
17530
[极效法力药水](魔兽世界)
.additem 13444
17531
[超强效法力药水](燃烧的远征)
.additem 22832
28499
[符刻法力药水](巫妖王之怒)
.additem 33448
43186
[奇效法力药水](大地的裂变)
.additem 57192
未知
------------------------------------------------
[初级活力药水](魔兽世界)
.additem 2456
2370
[特效活力药水](魔兽世界)
.additem 18253
22729
[超级活力药水](燃烧的远征)
.additem 22850
28517
[强效活力药水](巫妖王之怒)
.additem 40087
53761
[强力活力药水](大地的裂变)
.additem 57193
未知
------------------------------------------------
我们首先用navicat.exe软件把所有常规药水的冷却时间 物品类型 类型冷却时间 都修改下
红瓶 改为食物类型11
蓝瓶 紫瓶 改为饮料类型59
这样做可用食物与饮料的类型让药水在战斗中重复使用
我们在navicat.exe中选择查询——新建查询 复制以下药水代码后点击左上角的绿色运行按钮
navicat.exe具体导入命令如下(包含了大灾变的新药水 无视就好)
UPDATE item_template SET spellcooldown_1 = -1 where entry = 118;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 858;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 929;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 1710;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 3928;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 13446;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 22829;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 33447;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 57191;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 2455;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 3385;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 3827;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 6149;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 13443;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 13444;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 22832;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 33448;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 57192;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 2456;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 18253;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 22850;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 40087;
UPDATE item_template SET spellcooldown_1 = -1 where entry = 57193;
UPDATE item_template SET spellcategory_1 = 11 where entry = 118;
UPDATE item_template SET spellcategory_1 = 11 where entry = 858;
UPDATE item_template SET spellcategory_1 = 11 where entry = 929;
UPDATE item_template SET spellcategory_1 = 11 where entry = 1710;
UPDATE item_template SET spellcategory_1 = 11 where entry = 3928;
UPDATE item_template SET spellcategory_1 = 11 where entry = 13446;
UPDATE item_template SET spellcategory_1 = 11 where entry = 22829;
UPDATE item_template SET spellcategory_1 = 11 where entry = 33447;
UPDATE item_template SET spellcategory_1 = 11 where entry = 57191;
UPDATE item_template SET spellcategory_1 = 59 where entry = 2455;
UPDATE item_template SET spellcategory_1 = 59 where entry = 3385;
UPDATE item_template SET spellcategory_1 = 59 where entry = 3827;
UPDATE item_template SET spellcategory_1 = 59 where entry = 6149;
UPDATE item_template SET spellcategory_1 = 59 where entry = 13443;
UPDATE item_template SET spellcategory_1 = 59 where entry = 13444;
UPDATE item_template SET spellcategory_1 = 59 where entry = 22832;
UPDATE item_template SET spellcategory_1 = 59 where entry = 33448;
UPDATE item_template SET spellcategory_1 = 59 where entry = 57192;
UPDATE item_template SET spellcategory_1 = 59 where entry = 2456;
UPDATE item_template SET spellcategory_1 = 59 where entry = 18253;
UPDATE item_template SET spellcategory_1 = 59 where entry = 22850;
UPDATE item_template SET spellcategory_1 = 59 where entry = 40087;
UPDATE item_template SET spellcategory_1 = 59 where entry = 57193;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 118;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 858;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 929;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 1710;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 3928;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 13446;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 22829;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 33447;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 57191;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 2455;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 3385;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 3827;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 6149;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 13443;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 13444;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 22832;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 33448;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 57192;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 2456;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 18253;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 22850;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 40087;
UPDATE item_template SET spellcategorycooldown_1 = -1 where entry = 57193;
完成后再打开MyDbcEditor.exe
用该程序打开 游戏服务端 里 Core文件夹/dbc文件夹/Spell.dbc文件 查找药水物品触发的技能 并逐一修改
比如
[初级治疗药水]118号 它所发挥的技能ID为439
找到后把439号魔法后看上方的横向项目提示格
第2项(默认为4)第31项(默认为10000)第32项(默认为8)
其中
2项为技能种类分配
31项为技能冷却时间
32项为m_interruptFlags 打断标记
把这些项目都改为0后玩家将可在游戏中自由使用相应修改后的药水 而且修改后的药水之间不会相互关联冷却
猜你喜欢

demon1准星代码 专业玩家必备的精准瞄准解决方案
专业解析demon1准星代码的使用方法和优化技巧,帮助FPS游戏玩家提升瞄准精度,包含安装指南、参数调整建议和职业选手使用心得,全面提升射击游戏表现。


饥荒秘籍代码大全 游戏生存必备指令合集
本文详细介绍饥荒游戏中的秘籍代码大全,包括物品生成、角色控制、天气管理等实用指令,帮助玩家更好地享受游戏乐趣,提升生存体验。


原神mod下载 安全获取与安装指南
了解如何安全下载和安装原神mod,包括可靠来源推荐、安装步骤、兼容性提示及社区资源,帮助玩家避免风险并享受个性化游戏体验。


奥杜尔boss顺序 完整攻略与打法详解
详细解析奥杜尔副本所有boss的挑战顺序、机制要点和战术策略。包含四个区域的首领介绍、团队配置建议、普通与英雄模式区别,帮助玩家高效通关这个经典团队副本。


恐怖黎明女巫的契约 如何获取与使用指南
探索恐怖黎明女巫的契约的获取方法、使用策略和游戏影响,包括任务步骤、奖励选择以及实战技巧,帮助玩家优化角色构建和提升游戏体验。


猎人印记和宠物攻击宏 魔兽世界猎人必备技能与宏命令指南
全面解析魔兽世界猎人印记技能与宠物攻击宏设置技巧,包含基础宏命令编写、PVP与PVE实用宏推荐、版本更新影响分析,帮助猎人玩家提升操作效率与战斗表现。


魔兽世界巫妖王怀旧服最新攻略与职业推荐
全面解析魔兽世界巫妖王怀旧服最新攻略,包括职业选择建议、装备获取方式和副本攻略。帮助玩家更好地探索诺森德大陆,体验经典版本的魅力与挑战。


魔兽窝窝头 怀旧服玩家必备的插件与资源指南
魔兽窝窝头提供魔兽世界怀旧服必备插件、详细攻略和职业指南,帮助玩家优化游戏体验,涵盖任务导航、副本战术及社区互动资源,适用于新手和老玩家。


厄运之槌副本攻略与掉落详解
详细解析魔兽世界经典副本厄运之槌的三大区域攻略技巧、首领战斗机制、珍贵装备掉落列表及专业技能配方获取方式,帮助玩家高效通关并获得最大收益。


蛋刀幻化成就 魔兽世界玩家必刷的经典外观获取指南
蛋刀幻化成就是魔兽世界中的经典挑战,指导玩家获取埃辛诺斯战刃外观。涵盖掉落位置、任务步骤和技巧,帮助玩家解锁这一标志性幻化,提升游戏体验与怀旧价值。
