网站首页 游戏教程游戏攻略游戏问答游戏资讯软件教程CSGO游戏
当前所在位置:首页 > 游戏问答 >

魔兽世界改模型代码,如何修改?

发布时间: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后玩家将可在游戏中自由使用相应修改后的药水 而且修改后的药水之间不会相互关联冷却

猜你喜欢

wcl上传工具 高效管理Warcraft Logs的必备利器

wcl上传工具 高效管理Warcraft Logs的必备利器

全面解析wcl上传工具的使用方法和选择技巧,涵盖官方客户端、第三方软件及浏览器插件的功能对比。详细介绍如何通过优化设置提升日志上传效率,并探讨移动端适配与数据安全等进阶应用场景。

2025-10-21
点击 8692
麦迪文的触摸:魔兽世界中最具争议的诅咒与命运转折点

麦迪文的触摸:魔兽世界中最具争议的诅咒与命运转折点

探索魔兽世界中麦迪文的触摸这一神秘诅咒的起源与影响,了解被诅咒者的症状与治疗方法,分析这一魔法现象在艾泽拉斯历史中的重要意义和文化影响。

2025-10-21
点击 5749
怒之煞刷新位置详解:魔兽世界稀有精英的完整追踪指南

怒之煞刷新位置详解:魔兽世界稀有精英的完整追踪指南

详细介绍魔兽世界怒之煞的刷新位置在昆莱山(53,65),解析15-20分钟刷新机制,提供高效蹲守策略和击杀技巧,包含装备坐骑掉落信息,帮助玩家成功获取这个潘达利亚稀有精英的奖励。

2025-10-21
点击 2620
wlk 钓鱼宏 高效钓鱼技巧与宏命令设置指南

wlk 钓鱼宏 高效钓鱼技巧与宏命令设置指南

wlk钓鱼宏完整设置指南,详细介绍巫妖王之怒版本钓鱼宏命令编写方法,包含基础到高级宏设置技巧,帮助玩家提升钓鱼效率,获取稀有鱼类和完成钓鱼成就的专业教程。

2025-10-21
点击 7082
部落单手锤在哪学 部落单手锤学习地点与获取方法详解

部落单手锤在哪学 部落单手锤学习地点与获取方法详解

详细介绍部落阵营学习单手锤技能的地点与方法,包括奥格瑞玛武器训练师位置、学习条件、适用职业,以及各种单手锤装备的获取途径,帮助玩家快速掌握单手锤使用技巧。

2025-10-21
点击 2729
上古卷轴5指令 游戏内控制台命令完全指南

上古卷轴5指令 游戏内控制台命令完全指南

完整介绍上古卷轴5控制台指令使用方法,包括基础操作、角色属性调整、物品获取、任务控制等各类命令详解,帮助玩家更好地掌控游戏体验,解决游戏过程中遇到的各种问题。

2025-10-20
点击 4210
达拉然戒指获取指南与属性解析

达拉然戒指获取指南与属性解析

详细解析达拉然戒指的获取途径与升级流程,包含完整属性分析和配装建议。涵盖珠宝加工专业要求、材料收集方法和实战应用技巧,为魔兽世界玩家提供全面的装备指南。

2025-10-20
点击 6331
苦痛之环:如何打破负面循环,重获内心平静

苦痛之环:如何打破负面循环,重获内心平静

苦痛之环是常见的心理困境,涉及负面情绪、思维和行为的循环。本文探讨如何识别并打破这种模式,通过自我觉察、认知行为技巧和社会支持重获内心平静,提供实用策略和步骤。

2025-10-20
点击 5757
steam错误代码:-100 解决方法与原因分析

steam错误代码:-100 解决方法与原因分析

steam错误代码-100是常见的网络连接问题,本文详细分析其原因并提供多种有效解决方案,包括网络设置调整、防火墙配置、DNS修改等方法,帮助用户快速恢复Steam正常使用。

2025-10-20
点击 3846
法师单人a怪升级地点汇总 魔兽世界怀旧服法师高效冲级路线指南

法师单人a怪升级地点汇总 魔兽世界怀旧服法师高效冲级路线指南

完整汇总魔兽世界怀旧服法师单人AOE升级地点,包含10-60级各阶段最佳刷怪位置,详细解析技能搭配和装备选择,帮助法师玩家最大化升级效率,快速达到满级。

2025-10-19
点击 4159
返回顶部