UPDATE item_template SET spellcategorycooldown_1 = 60000 where class = 0 and subclass = 0 ;
N8里面运行这句批量执行语句,效果为所有消耗品类物品(包括药水,药剂,工程炸弹,裁缝投网,声望奖章等等)的使用间隔设置为60000毫秒.具体想要修改为使用间隔多少请自行调整以上语句里的那个数值60000.
附送几个我自己基本上都会用上的sql批量修改操作语句:
背包空间太小?压缩材料类物品的背包占用,
物品堆叠数量提高到200
UPDATE item_template SET stackable = 200 where stackable > 2 ;
货币数量上限调整
UPDATE item_template SET stackable = 99999999 where class = 10 ;
子弹和箭矢堆叠数量20000
UPDATE item_template SET stackable = 20000 where class = 6 and stackable > 100 ;
钓鱼所得数量提高五倍
UPDATE fishing_loot_template set maxcount = maxcount * 5 ;
采花采矿太费时间?矿石、花草获取数量提高,最低数量翻倍最大数量3倍.
特别提示:因为部分物品具有唯一属性(例如血色十字军钥匙),因此如果使用了这两条语句一定要记得执行最后一条语句!!!一定要执行!!!必须要执行!!!重要的事情要说三遍
UPDATE gameobject_loot_template set mincountorref = mincountorref * 2 where Chanceorquestchance = 100 and mincountorref > 0;
UPDATE gameobject_loot_template set maxcount = maxcount * 3 where Chanceorquestchance = 100 and maxcount > 1 ;
UPDATE gameobject_loot_template set mincountorref = 1 where mincountorref > 1 and maxcount < 2;
剥皮所得数量提高3倍
UPDATE skinning_loot_template set mincountorref = mincountorref * 3 where Chanceorquestchance = 10 and mincountorref > 0;
UPDATE skinning_loot_template set maxcount = maxcount * 3 where Chanceorquestchance = 10 and maxcount > 1 ;