/*所有堆叠数大于1的改为9999*/
UPDATE item_template SET stackable = 9999 where stackable > 1 ; /*灵魂碎片堆叠数改为9999*/
UPDATE item_template SET stackable ='9999' WHERE ( entry ='6265') ;
/*剥皮最大产量改为20单位*/
UPDATE skinning_loot_template SET maxcount = 20 ; /* 钓鱼最大产量改为20单位*/
UPDATE fishing_loot_template SET maxcount = 20 ; /*采矿附产品(孔雀石、虎眼石、等)最大产量改为20单位*/
UPDATE prospecting_loot_template SET maxcount = 20 ; /*亚麻布、毛料、丝绸、魔纹布、符文布、恶魔布、灵纹布最大产量改为20*/
UPDATE creature_loot_template SET maxcount ='20' WHERE item ='2589' ;
UPDATE creature_loot_template SET maxcount ='20' WHERE item ='2592' ;
UPDATE creature_loot_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 ='20' WHERE item ='14256';
UPDATE creature_loot_template SET maxcount ='20' WHERE item ='21877';
/* 将id为XXX的gameobject刷新时间改为5秒,这里的id = */
UPDATE gameobject SET spawntimesecs = 5 WHERE id = 'XXX';
/* 将药水的冷却时间改为5秒*/
UPDATE item_template SET spellcategorycooldown_1 = 5000 where spellcategorycooldown_1 = 120000 and class = 0 ;
select * from item_template where flags & X = X
update item_template set flags = flags - 4096 where (flags & 4096) = 4096;
本文发布于:2024-01-29 09:28:56,感谢您对本站的认可!
本文链接:https://www.4u4v.net/it/170649173914320.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
留言与评论(共有 0 条评论) |