您当前的位置:首页 > 魔兽技术

魔兽修改装备属性和武器伤害倍数的命令

本文出处:网游动力作者:本站发布时间:2008-08-14阅读次数:

下面是在Navicat里的命令,具体用法:启用连线后点mangos数据库。打开控制台,直接输入命令上去,在回车!OK

装备属性修改:
UPDATE item_template SET stat_value1 = stat_value1*5;
UPDATE item_template SET stat_value2 = stat_value2*5;
UPDATE item_template SET stat_value3 = stat_value3*5;
UPDATE item_template SET stat_value4 = stat_value4*5;
UPDATE item_template SET stat_value5 = stat_value5*5;

上面的意思是把装备的附加属性(比如耐力,智力等)改为原来的5B.

装备护甲修改:
UPDATE item_template SET armor = armor*2;

这个是4抗
UPDATE item_template SET holy_res = holy_res*2;
UPDATE item_template SET fire_res = fire_res*2;
UPDATE item_template SET nature_res = nature_res*2;
UPDATE item_template SET frost_res = frost_res*2;
UPDATE item_template SET shadow_res = shadow_res*2;
UPDATE item_template SET arcane_res = arcane_res*2;

武器的攻击力改的命令:

UPDATE item_template SET dmg_min1 = dmg_min1*2;
UPDATE item_template SET dmg_max1 = dmg_max1*2;

上面的意思是把武器的攻击力改为原来的2B,可以自己修改倍数