网站首页 CSGO开箱网站CSGO开箱模拟器CSGO开箱教程CSGO饰品交易CSGO游戏百科加速器攻略游戏攻略 CSGO论坛
当前所在位置:24CSGO首页 > 游戏攻略 >

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

发布时间:2023-07-04 18:16:54  作者:csgo001  来源:24csgo开箱网 【 字体:

>>>55skins(快闪开盒)注册送5币免费ROLL房点击进入<<<

>>>55skins 正规开箱网老铁们都在玩领新人CDK 点击进入<<<

>>>Rskins开箱网 高爆箱子点击进入<<<

>>>Rcsgo开箱网站免费抽一次:>>点击进入<<<

>>>良心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开箱网站评测导航网站,本站部分内容由用户投稿分享,如有错误,或涉及到您的权益,请联系我们修改/清理,另外,请勿转载本站内容,违者必究,谢谢!

猜你喜欢

森林之子控制台代码,森林之子控制台代码攻略

森林之子控制台代码,森林之子控制台代码攻略

探索森林之子的控制台代码攻略  在充满神秘和冒险的《森林之子》中,玩家身处一个险象环生的世界,面对各种生存挑战。为了让玩家能够更好地体验这个游戏,一些控制台代码提供了无穷的乐趣和便利。这篇攻略将为你详...

2024-11-22
点击 0
4捏脸代码,辐射4颜值定制攻略:捏脸代码大揭秘

4捏脸代码,辐射4颜值定制攻略:捏脸代码大揭秘

揭秘《辐射4》:捏脸代码让你的角色颜值爆表  《辐射4》作为一款经典的开放世界角色扮演游戏,以其宏大的背景设定和自由的玩法迅速俘获了大批玩家的心。而相比冒险剧情,许多玩家更是沉迷于角色定制,特别是游戏...

2024-11-22
点击 0
,女生腹泻意外尴尬,如何应对?

,女生腹泻意外尴尬,如何应对?

女生拉肚子屎流下来,女生腹泻意外尴尬,如何应对?  在游戏的世界里,玩家们通常沉浸在虚拟的冒险中,享受着战斗和合作的乐趣。生活中难免会遭遇各种意外情况,比如女生在游戏中突然腹泻的尴尬情境。对此,我们该...

2024-11-21
点击 0
5技能点代码,上古卷轴5技能点代码攻略大全

5技能点代码,上古卷轴5技能点代码攻略大全

上古卷轴5技能点代码,打造你的角色  在《上古卷轴5:天际》中,玩家可以多种方式提升角色的能力,但其中最为直接的方法莫过于技能点的分配。在浩瀚的天际世界中,无论你是想要成为一名强大的战士,还是灵活的盗...

2024-11-21
点击 0
fm修改器,火柴人战争遗产FM修改器攻略

fm修改器,火柴人战争遗产FM修改器攻略

引领火柴人征途:FM修改器攻略大全  在奇妙的火柴人宇宙中,总有一些你未曾想到的冒险等待着你去探索。作为一款深受玩家喜爱的战略游戏,《火柴人战争遗产》为你提供了无穷乐趣和挑战。那么,如何在游戏中战胜一...

2024-11-21
点击 0
5顶级装备代码大全,上古卷轴5顶级装备代码一览

5顶级装备代码大全,上古卷轴5顶级装备代码一览

上古卷轴5顶级装备代码大全,上古卷轴5顶级装备代码一览  在广袤的天际世界中,《上古卷轴5:天际》以其丰富的剧情、开放世界的自由度和深度的角色扮演元素而受到玩家们的热爱。无论你是新手还是老玩家,掌握顶...

2024-11-21
点击 0
5秘籍代码大全,侠盗飞车5秘籍代码一览

5秘籍代码大全,侠盗飞车5秘籍代码一览

侠盗飞车5秘籍代码大全,侠盗飞车5秘籍代码一览  在开放世界游戏的历史上,《侠盗猎车手5》(GTA 5)无疑是一个经典之作。其广阔的地图、多样的任务和丰富的角色,让无数玩家沉浸在这个虚拟世界中。而秘籍...

2024-11-20
点击 0
,美女隐私泄露:如何保护个人隐私安全

,美女隐私泄露:如何保护个人隐私安全

美女隐私泄露:如何保护个人隐私安全  在现如今的游戏世界中,玩家们不仅追求游戏的乐趣,还面临着不少现实问题。尤其是在一些社交元素较强的游戏中,个人隐私的泄露成为了一个不可忽视的话题。美女的隐私免费露出...

2024-11-20
点击 0
,中土世界战争之影修改器秘籍

,中土世界战争之影修改器秘籍

中土世界战争之影修改器与秘籍全方位攻略  在中土世界的奇幻领域,玩家们策略和战斗来追求荣耀与胜利。有时通关之路并不是那么平坦。在这个时候,中土世界战争之影修改器便成了许多玩家的福音。它不仅能提升游戏的...

2024-11-20
点击 0
如何注册邮箱163免费,163邮箱注册攻略:免费快速上手

如何注册邮箱163免费,163邮箱注册攻略:免费快速上手

如何注册邮箱163免费,163邮箱注册攻略:免费快速上手  在现代游戏时代,拥有一个稳定的邮箱成为了玩家们沟通与管理账户的重要工具。对于很多喜欢玩游戏的玩家来说,163邮箱因其免费、便捷以及功能强大而...

2024-11-20
点击 0
返回顶部