魔兽世界改模型代码,如何修改?
发布时间:2023-07-04 18:16:54 作者:csgo001 来源:24csgo开箱网 【 字体:大 中 小 】
>>>良心cs:go开箱网站,高爆率,提货快!>>点击进入<<<
魔兽世界改模型代码,如何修改?
我们现在总结下截止到《魔兽世界巫妖王之怒》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后玩家将可在游戏中自由使用相应修改后的药水 而且修改后的药水之间不会相互关联冷却
看文章不过瘾,点击进入国服CSGO社区论坛,发表您的高见,与众多CSGO大神一起进行交流!
本文地址:游戏攻略频道 https://www.xilichi.com//gonglue/5083.html,24CSGO开箱网是一个专业的CSGO开箱网站评测导航网站,本站部分内容由用户投稿分享,如有错误,或涉及到您的权益,请联系我们修改/清理,另外,请勿转载本站内容,违者必究,谢谢!
猜你喜欢
fifa19生涯模式ce修改,FIFA19生涯CE修改教程分享
以上步骤,你可以轻松地使用CE对FIFA一十九生涯模式进行修改,提升你的游戏体验。无论是想要增强球队实力,还是希望尝试一些有趣的玩法,CE都能为你提供无限的可能。希望这篇教程能够帮助到你,让你在FIF...
辐射4 物品代码,辐射4物品代码大全解析
掌握《辐射4》的物品代码,可以让玩家在游戏中事半功倍。无论是想要快速获取强力武器,还是需要补充药品,物品代码都是你不可或缺的工具。希望本文的物品代码大全能为你的游戏旅程提供帮助,让你在废土世界中生存得...
方舟生存进化代码大全物品,方舟生存进化代码大全:物品全解析
掌握《方舟:生存进化》的物品代码,不仅能让你在游戏中事半功倍,还能提升你的生存体验。希望本文提供的物品代码大全能帮助你在方舟的世界中更好地探索与生存。无论是面对凶猛的恐龙,还是在资源匮乏的环境中生存,...
如何查看自己cf充值了多少,“CF充值查询教程,快速查看金额”
以上步骤,您可以轻松查看自己在CF中充值了多少。无论是官方网站还是游戏内功能,了解自己的充值情况都是提升游戏体验的重要环节。希望这篇CF充值查询教程能够帮助到您,让您在游戏中更加得心应手!
上古卷轴5招募随从代码,上古卷轴5随从招募代码攻略分享
在《上古卷轴五:天际》中,招募随从不仅能增强你的战斗力,还能丰富游戏的体验。了解不同随从的特点、招募方式以及管理技巧,玩家可以更好地享受这款游戏带来的乐趣。希望本文的攻略能帮助你在天际的冒险中找到合适...
nba2k20手游修改器万能脚本,NBA2K20手游万能脚本,修改器攻略大全
NBA二K二十手游修改器脚本为玩家提供了更多的游戏乐趣和可能。合理使用这些脚本,玩家可以在游戏中获得更好的体验。使用时需谨慎,确保安全和账号的稳定。希望本文的攻略能够帮助到广大NBA二K二十的玩家,让...
罪恶都市无敌不掉血代码,罪恶都市无敌码,不掉血攻略
在《罪恶都市》中,使用不掉血代码可以让玩家体验到不同的游戏乐趣。合理利用这些代码和实用技巧,玩家不仅可以轻松完成任务,还能享受游戏带来的。无论是新手还是老玩家,都可以这些方法在罪恶都市中畅游无阻,尽情...
朱紫如何获得洗翠宝可梦,朱紫洗翠宝可梦获取攻略
获取洗翠宝可梦并不是一件简单的事情,但合理的策略和方法,玩家可以在朱紫的世界中成功捕捉到这一珍稀宝可梦。希望以上的攻略能够帮助到每一位训练师,让你在宝可梦的旅程中更加顺利,享受游戏的乐趣。
重装机兵4金手指代码,重装机兵4金手指代码全攻略!
本文的介绍,相信大家对《重装机兵四》的金手指代码有了更深入的了解。合理使用这些代码,可以让你在游戏中获得更多的乐趣和成就感。希望每位玩家都能在《重装机兵四》的世界中,享受到无尽的冒险与挑战!
芝麻信誉差如何快速修复,芝麻信用差速修复技巧解析
修复芝麻信用分并不是一朝一夕的事情,需要耐心和恒心。了解信用构成、检查信用报告、保持良好还款记录、增加信用活动以及保持良好的消费习惯,您一定能够快速提升自己的芝麻信用分,重拾良好的信用形象。