Guest User

Untitled

a guest
Feb 9th, 2010
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. --Update DisenchantID's for the items in questions
  2. --Remove all Disenchnat Loot Item Entries from disenchant_loot_template
  3. --Insert an abyss crystal and a golden ticket
  4.  
  5. Update item_template set DisenchantID = entry where name like 'Deadly Gladiat%';
  6. Delete from disenchant_loot_template where entry =(select entry from item_template where name like 'Deadly Gladiat%');
  7. insert into disenchant_loot_template (entry,item,ChanceOrQuestChance,lootmode,groupid,mincountOrRef,maxcount,lootcondition,condition_value1,condition_value2) Select entry,34057,100,1,1,1,1,0,0,0 from item_template where `name` LIKE '%deadly glad%';
  8. insert into disenchant_loot_template (entry,item,ChanceOrQuestChance,lootmode,groupid,mincountOrRef,maxcount,lootcondition,condition_value1,condition_value2) Select entry,70026,100,1,1,1,1,0,0,0 from item_template where `name` LIKE '%deadly glad%';
Advertisement
Add Comment
Please, Sign In to add comment