大芒果魔兽世界单机版怎么提升所有装备属性。不要说命令什么的,想批量提升魔兽里面的装备提升百分比

比如:如果装备属性是耐力40,提升到60。不是单一的修改。有没有可以全部提升如50%等

各个版本数据库可能不一样 3.3.5的是这样
用navicat 输入如下 这个只加50%的属性
UPDATE item_template SET stat_value1 = stat_value1*3/2 where stat_type1<>0;
UPDATE item_template SET stat_value2 = stat_value2*3/2 where stat_type2<>0;
UPDATE item_template SET stat_value3 = stat_value3*3/2 where stat_type3<>0;
UPDATE item_template SET stat_value4 = stat_value4*3/2 where stat_type4<>0;
UPDATE item_template SET stat_value5 = stat_value5*3/2 where stat_type5<>0;
以下加6倍武器伤害 自己调倍数
UPDATE item_template SET dmg_min1=dmg_min1*6;
UPDATE item_template SET dmg_max1=dmg_max1*6;

以下调护甲 和各种抗性
UPDATE item_template SET armor=armor*2;

UPDATE item_template SET holy_res=holy_res*5;
UPDATE item_template SET fire_res=fire_res*5;
UPDATE item_template SET nature_res=nature_res*5;
UPDATE item_template SET Frost_res=Frost_res*5;
UPDATE item_template SET shadow_res=shadow_res*5;
UPDATE item_template SET arcane_res=arcane_res*5;
温馨提示:答案为网友推荐,仅供参考
第1个回答  2016-10-11
可以使用软件N8 用批量数据库命令操作,很快的,具体可以到有爱魔兽论坛来学习。
第2个回答  2016-09-27
卧槽,特玩网魔兽世界专区早就有解决方法了好吗?你自己看