Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Feb 9th, 2010 | Syntax: None | Size: 0.85 KB | Hits: 11 | Expires: Never
Copy text to clipboard
  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%';