1、 鉴于大家都在讨论如何能更加便利的体验游戏 以下修改代码是本人参考了众多大大的修正秘诀节选出来的 有了它们,生活更便利~~~~ /*帐户注册*/ insert into account(username,sha_pass_hash,joindate,email,last_ip) values(UPPER('账号'),SHA1(CONCAT(UPPER('账号'),':',UPPER('密码'))),'2013-1-1',UPPER('随意邮箱地址'),'127.0.0.1'); UPDATE `item_template` SET stackable = 9
2、999 where stackable > 1 ; /*所有堆叠数大于1的改为9999*/ UPDATE `item_template` SET `stackable`='9999' WHERE (`entry`='6265') ; /*灵魂碎片堆叠数改为9999*/ UPDATE `skinning_loot_template` SET `maxcount` = 20 ; /*剥皮最大产量为20单位*/ UPDATE `fishing_loot_template` SET `maxcount` = 20 ; /* 钓鱼*/ UPDAT
3、E `prospecting_loot_template` SET `maxcount` = 20 ; /*采矿附产品(孔雀石、虎眼石、等)最大产量为20单位*/ UPDATE `creature_loot_template` SET `maxcount`='20' WHERE `item`='2589' ; /*亚麻布最大产量为20*/ UPDATE `creature_loot_template` SET `maxcount`='20' WHERE `item`='2592' ; /*毛料*/ UPDATE `creature_loot
4、template` SET `maxcount`='20' WHERE `item`='4306' ; /*丝绸*/ UPDATE `creature_loot_template` SET `maxcount`='20' WHERE `item`='4338' ; /* 魔纹布*/ UPDATE `creature_loot_template` SET `maxcount`='20' WHERE `item`='14047' ; /*符文布*/ UPDATE `creature_loot_template` SET `maxcount`='
5、20' WHERE `item`='14256' ; /* 恶魔布*/ UPDATE `creature_loot_template` SET `maxcount`='20' WHERE `item`='21877' ; /* 灵纹布*/ UPDATE `gameobject` SET `spawntimesecs` = 5 ; /* 草、矿、宝箱等刷新时间为5秒*/ UPDATE `item_template` SET spellcategorycooldown_1 = 5000 where spellcategorycooldown_1 = 120
6、000 and class = 0 ; /* 将药水的冷却时间设为5秒*/ /*炼化重铸物品需求3改2*/ update itemcomposeconfig set item_count=2,appenditemid=90594; update itemcomposeconfig set appenditemcoun=12 where appenditemcoun is null; /*任务最小接受等级降低3级*/ update quest_template set minlevel=minlevel-3 where minlevel>5; /*任务物品100%掉落*/
7、update creature_loot_template set ChanceOrQuestChance = -100 where ChanceOrQuestChance<0; /* 炼化物品所需碎片需求降低 */ update itemcomposeconfig set appenditemcoun=appenditemcoun/10 where appenditemcoun>99 and appenditemcoun<1000 ; /*碎片需求100~1000的减少10倍需求*/ update itemcomposeconfig set appenditemcoun=appe
8、nditemcoun/10 where appenditemcoun>999; /*碎片需求大于1000的减少10倍需求*/ /*以下如果不感兴趣就不用了*/ /*藏宝湾卖鹦鹉的商人处添加出售物品*/ INSERT INTO `npc_vendor` VALUES (2663, 0, 90070, 0, 0, 0); /*艾泽拉斯金币---游戏金币购买,拼命打钱把*/ INSERT INTO `npc_vendor` VALUES (2663, 0, 90073, 0, 0, 0); /*权力印记*/ INSERT INTO `npc_vendor` VALUES (2
9、663, 0, 90074, 0, 0, 0); /*时光印记*/ INSERT INTO `npc_vendor` VALUES (2663, 0, 90075, 0, 0, 0); /*生命印记*/ INSERT INTO `npc_vendor` VALUES (2663, 0, 90112, 0, 0, 0); /*晶化生命碎片*/ INSERT INTO `npc_vendor` VALUES (2663, 0, 90834, 0, 0, 0); /*神秘的罗盘*/ /*宠物20倍血,20倍魔,属性10倍*/ update pet_levelstats
10、 set hp = hp * 20 , mana = mana * 20 , armor = armor * 20 , str = str * 10 , agi = agi * 10 , sta = sta * 10 , inte = inte * 10 , spi = spi * 10 /*人物10倍属性*/ update player_levelstats set str = str * 5 , agi = agi * 5 , sta = sta * 5 , inte = inte * 5 , spi = spi * 5 教程 3 武器攻击伤害成倍修改 3倍 UPD
11、ATE `item_template` SET dmg_min1=dmg_min1*3; UPDATE `item_template` SET dmg_max1=dmg_max1*3; 遗产 账号是root密码是ascent 咋用呢?用N8按F6复制导入? 装备批量精准属性修改 护甲值 3倍 UPDATE item_template SET armor = armor*3; 最小和最大武器伤害值 *30是30倍的意思 UPDATE item_template SET dmg_min1 = dmg
12、min1*30; UPDATE item_template SET dmg_max1 = dmg_max1*30; 武器攻击速度延迟 /2是除2的意思 UPDATE item_template SET delay = delay/2; 装备的抵抗抗性 2倍 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
13、 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; 购买商品价钱 3倍 UPDATE item_template SET buyprice = buyprice*3; 卖出商品价钱 3倍 UPDATE item_template SET sellprice = sellprice*3; 修改敏捷 UPDATE item
14、template SET stat_value1 = stat_value1*3 WHERE stat_type1=3; UPDATE iitem_template SET stat_value2 = stat_value2*3 WHERE stat_type2=3; UPDATE item_template SET stat_value3 = stat_value3*3 WHERE stat_type3=3; UPDATE item_template SET stat_value4 = stat_value4*3 WHERE stat_type4=3; UPDATE i
15、tem_template SET stat_value5 = stat_value5*3 WHERE stat_type5=3; UPDATE item_template SET stat_value6 = stat_value6*3 WHERE stat_type6=3; UPDATE item_template SET stat_value7 = stat_value7*3 WHERE stat_type7=3; 修改力量 UPDATE item_template SET stat_value1 = stat_value1*3 WHERE stat_type1=4;
16、UPDATE item_template SET stat_value2 = stat_value2*3 WHERE stat_type2=4; UPDATE item_template SET stat_value3 = stat_value3*3 WHERE stat_type3=4; UPDATE item_template SET stat_value4 = stat_value4*3 WHERE stat_type4=4; UPDATE item_template SET stat_value5 = stat_value5*3 WHERE stat_type5=
17、4; UPDATE item_template SET stat_value6 = stat_value6*3 WHERE stat_type6=4; UPDATE item_template SET stat_value7 = stat_value7*3 WHERE stat_type7=4; 修改智力 UPDATE item_template SET stat_value1 = stat_value1*3 WHERE stat_type1=5; UPDATE item_template SET stat_value2 = stat_value2*3 WHERE s
18、tat_type2=5; UPDATE item_template SET stat_value3 = stat_value3*3 WHERE stat_type3=5; UPDATE item_template SET stat_value4 = stat_value4*3 WHERE stat_type4=5; UPDATE item_template SET stat_value5 = stat_value5*3 WHERE stat_type5=5; UPDATE item_template SET stat_value6 = stat_value6*3 WHE
19、RE stat_type6=5; UPDATE item_template SET stat_value7 = stat_value7*3 WHERE stat_type7=5; 修改精神 UPDATE item_template SET stat_value1 = stat_value1*3 WHERE stat_type1=6; UPDATE item_template SET stat_value2 = stat_value2*3 WHERE stat_type2=6; UPDATE item_template SET stat_value3 = stat_va
20、lue3*3 WHERE stat_type3=6; UPDATE item_template SET stat_value4 = stat_value4*3 WHERE stat_type4=6; UPDATE item_template SET stat_value5 = stat_value5*3 WHERE stat_type5=6; UPDATE item_template SET stat_value6 = stat_value6*3 WHERE stat_type6=6; UPDATE item_template SET stat_value7 = sta
21、t_value7*3 WHERE stat_type7=6; 修改耐力 UPDATE item_template SET stat_value1 = stat_value1*3 WHERE stat_type1=7; UPDATE item_template SET stat_value2 = stat_value2*3 WHERE stat_type2=7; UPDATE item_template SET stat_value3 = stat_value3*3 WHERE stat_type3=7; UPDATE item_template SET stat_va
22、lue4 = stat_value4*3 WHERE stat_type4=7; UPDATE item_template SET stat_value5 = stat_value5*3 WHERE stat_type5=7; UPDATE item_template SET stat_value6 = stat_value3*3 WHERE stat_type6=7; UPDATE item_template SET stat_value7 = stat_value7*3 WHERE stat_type7=7; 修改武器等级 UPDATE item_template
23、 SET stat_value1 = stat_value1*3 WHERE stat_type1=11; UPDATE item_template SET stat_value2 = stat_value2*3 WHERE stat_type2=11; UPDATE item_template SET stat_value3 = stat_value3*3 WHERE stat_type3=11; UPDATE item_template SET stat_value4 = stat_value4*3 WHERE stat_type4=11; UPDATE item_
24、template SET stat_value5 = stat_value5*3 WHERE stat_type5=11; UPDATE item_template SET stat_value6 = stat_value6*3 WHERE stat_type6=11; UPDATE item_template SET stat_value7 = stat_value7*3 WHERE stat_type7=11; UPDATE item_template SET stat_value8 = stat_value8*3 WHERE stat_type8=11; UPDATE
25、 item_template SET stat_value9 = stat_value9*3 WHERE stat_type9=11; UPDATE item_template SET stat_value10 = stat_value10*3 WHERE stat_type10=11; 修改防御等级 UPDATE item_template SET stat_value1 = stat_value1*10 WHERE stat_type1=12; UPDATE item_template SET stat_value2 = stat_value2*10 WHERE
26、 stat_type2=12; UPDATE item_template SET stat_value3 = stat_value3*10 WHERE stat_type3=12; UPDATE item_template SET stat_value4 = stat_value4*10 WHERE stat_type4=12; UPDATE item_template SET stat_value5 = stat_value5*10 WHERE stat_type5=12; UPDATE item_template SET stat_value6 = stat_val
27、ue6*10 WHERE stat_type6=12; UPDATE item_template SET stat_value7 = stat_value7*10 WHERE stat_type7=12; UPDATE item_template SET stat_value8 = stat_value8*10 WHERE stat_type8=12; UPDATE item_template SET stat_value9 = stat_value9*10 WHERE stat_type9=12; UPDATE item_template SET stat_value10
28、 = stat_value10*10 WHERE stat_type10=12; 修改躲避等级 UPDATE item_template SET stat_value1 = stat_value1*10 WHERE stat_type1=13; UPDATE item_template SET stat_value2 = stat_value2*10 WHERE stat_type2=13; UPDATE item_template SET stat_value3 = stat_value3*10 WHERE stat_type3=13; UPDATE item_te
29、mplate SET stat_value4 = stat_value4*10 WHERE stat_type4=13; UPDATE item_template SET stat_value5 = stat_value5*10 WHERE stat_type5=13; UPDATE item_template SET stat_value6 = stat_value6*10 WHERE stat_type6=13; UPDATE item_template SET stat_value7 = stat_value7*10 WHERE stat_type7=13; UP
30、DATE item_template SET stat_value8 = stat_value8*10 WHERE stat_type8=13; UPDATE item_template SET stat_value9 = stat_value9*10 WHERE stat_type9=13; UPDATE item_template SET stat_value10 = stat_value10*10 WHERE stat_type10=13; 修改招架等级 UPDATE item_template SET stat_value1 = stat_value1*10 W
31、HERE stat_type1=14; UPDATE item_template SET stat_value2 = stat_value2*10 WHERE stat_type2=14; UPDATE item_template SET stat_value3 = stat_value3*10 WHERE stat_type3=14; UPDATE item_template SET stat_value4 = stat_value4*10 WHERE stat_type4=14; UPDATE item_template SET stat_value5 = stat
32、value5*10 WHERE stat_type5=14; UPDATE item_template SET stat_value6 = stat_value6*10 WHERE stat_type6=14; UPDATE item_template SET stat_value7 = stat_value7*10 WHERE stat_type7=14; UPDATE item_template SET stat_value8 = stat_value8*10 WHERE stat_type8=14; UPDATE item_template SET stat_v
33、alue9 = stat_value9*10 WHERE stat_type9=14; UPDATE item_template SET stat_value10 = stat_value10*10 WHERE stat_type10=14; 修改盾格档等级 UPDATE item_template SET stat_value1 = stat_value1*3 WHERE stat_type1=15; UPDATE item_template SET stat_value2 = stat_value2*3 WHERE stat_type2=15; UPDATE it
34、em_template SET stat_value3 = stat_value3*3 WHERE stat_type3=15; UPDATE item_template SET stat_value4 = stat_value4*3 WHERE stat_type4=15; UPDATE item_template SET stat_value5 = stat_value5*3 WHERE stat_type5=15; UPDATE item_template SET stat_value6 = stat_value6*3 WHERE stat_type6=15; U
35、PDATE item_template SET stat_value7 = stat_value7*3 WHERE stat_type7=15; UPDATE item_template SET stat_value8 = stat_value8*3 WHERE stat_type8=15; UPDATE item_template SET stat_value9 = stat_value9*3 WHERE stat_type9=15; UPDATE item_template SET stat_value10 = stat_value10*3 WHERE stat_ty
36、pe10=15; 修改命中等级 UPDATE item_template SET stat_value1 = stat_value1*3 WHERE stat_type1=16; UPDATE item_template SET stat_value2 = stat_value2*3 WHERE stat_type2=16; UPDATE item_template SET stat_value3 = stat_value3*3 WHERE stat_type3=16; UPDATE item_template SET stat_value4 = stat_value
37、4*3 WHERE stat_type4=16; UPDATE item_template SET stat_value5 = stat_value5*3 WHERE stat_type5=16; UPDATE item_template SET stat_value6 = stat_value6*3 WHERE stat_type6=16; UPDATE item_template SET stat_value7 = stat_value7*3 WHERE stat_type7=16; UPDATE item_template SET stat_value8 = st
38、at_value8*3 WHERE stat_type8=16; UPDATE item_template SET stat_value9 = stat_value9*3 WHERE stat_type9=16; UPDATE item_template SET stat_value10 = stat_value10*3 WHERE stat_type10=16; 修改远程命中等级 UPDATE item_template SET stat_value1 = stat_value1*10 WHERE stat_type1=17; UPDATE item_templat
39、e SET stat_value2 = stat_value2*10 WHERE stat_type2=17; UPDATE item_template SET stat_value3 = stat_value3*10 WHERE stat_type3=17; UPDATE item_template SET stat_value4 = stat_value4*10 WHERE stat_type4=17; UPDATE item_template SET stat_value5 = stat_value5*10 WHERE stat_type5=17; UPDATE
40、item_template SET stat_value6 = stat_value6*10 WHERE stat_type6=17; UPDATE item_template SET stat_value7 = stat_value7*10 WHERE stat_type7=17; UPDATE item_template SET stat_value8 = stat_value8*10 WHERE stat_type8=17; UPDATE item_template SET stat_value9 = stat_value9*10 WHERE stat_type9=17
41、 UPDATE item_template SET stat_value10 = stat_value10*10 WHERE stat_type10=17; 修改法术命中等级 UPDATE item_template SET stat_value1 = stat_value1*10 WHERE stat_type1=18; UPDATE item_template SET stat_value2 = stat_value2*10 WHERE stat_type2=18; UPDATE item_template SET stat_value3 = stat_va
42、lue3*10 WHERE stat_type3=18; UPDATE item_template SET stat_value4 = stat_value4*10 WHERE stat_type4=18; UPDATE item_template SET stat_value5 = stat_value5*10 WHERE stat_type5=18; UPDATE item_template SET stat_value6 = stat_value6*10 WHERE stat_type6=18; UPDATE item_template SET stat_value7
43、 = stat_value7*10 WHERE stat_type7=18; UPDATE item_template SET stat_value8 = stat_value8*10 WHERE stat_type8=18; UPDATE item_template SET stat_value9 = stat_value9*10 WHERE stat_type9=18; UPDATE item_template SET stat_value10 = stat_value10*10 WHERE stat_type10=18; 修改法术暴击等级 UPDATE item
44、template SET stat_value1 = stat_value1*3 WHERE stat_type1=21; UPDATE item_template SET stat_value2 = stat_value2*3 WHERE stat_type2=21; UPDATE item_template SET stat_value3 = stat_value3*3 WHERE stat_type3=21; UPDATE item_template SET stat_value4 = stat_value4*3 WHERE stat_type4=21; UPD
45、ATE item_template SET stat_value5 = stat_value5*3 WHERE stat_type5=21; UPDATE item_template SET stat_value6 = stat_value6*3 WHERE stat_type6=21; UPDATE item_template SET stat_value7 = stat_value7*3 WHERE stat_type7=21; UPDATE item_template SET stat_value8 = stat_value8*3 WHERE stat_type8=
46、21; UPDATE item_template SET stat_value9 = stat_value9*3 WHERE stat_type9=21; UPDATE item_template SET stat_value10 = stat_value10*3 WHERE stat_type10=21; 修改近战躲避等级 UPDATE item_template SET stat_value1 = stat_value1*10 WHERE stat_type1=22; UPDATE item_template SET stat_value2 = stat_valu
47、e2*10 WHERE stat_type2=22; UPDATE item_template SET stat_value3 = stat_value3*10 WHERE stat_type3=22; UPDATE item_template SET stat_value4 = stat_value4*10 WHERE stat_type4=22; UPDATE item_template SET stat_value5 = stat_value5*10 WHERE stat_type5=22; UPDATE item_template SET stat_value6
48、 = stat_value6*10 WHERE stat_type6=22; UPDATE item_template SET stat_value7 = stat_value7*10 WHERE stat_type7=22; UPDATE item_template SET stat_value8 = stat_value8*10 WHERE stat_type8=22; UPDATE item_template SET stat_value9 = stat_value9*10 WHERE stat_type9=22; UPDATE item_template SET
49、 stat_value10 = stat_value10*10 WHERE stat_type10=22; 修改远程躲避等级 UPDATE item_template SET stat_value1 = stat_value1*10 WHERE stat_type1=23; UPDATE item_template SET stat_value2 = stat_value2*10 WHERE stat_type2=23; UPDATE item_template SET stat_value3 = stat_value3*10 WHERE stat_type3=23;
50、 UPDATE item_template SET stat_value4 = stat_value4*10 WHERE stat_type4=23; UPDATE item_template SET stat_value5 = stat_value5*10 WHERE stat_type5=23; UPDATE item_template SET stat_value6 = stat_value6*10 WHERE stat_type6=23; UPDATE item_template SET stat_value7 = stat_value7*10 WHERE sta






