Got an iPhone or iPad? We have a brand new Pastebin App for both devices, and it's totally free! Click here to download the new Pastebin App for iOS.
Guest

Untitled

By: a guest on Feb 9th, 2010  |  syntax: None  |  size: 0.93 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. --Update DisenchantID's for the items in questions
  2. --Insert an abyss crystal and a golden ticket
  3. Update item_template set DisenchantID = entry where name like 'Deadly Gladiat%';
  4. replace into disenchant_loot_template (entry,item,ChanceOrQuestChance,lootmode,groupid,mincountOrRef,maxcount,lootcondition,condition_value1,condition_value2) Select
  5.  
  6. entry,34057,100,1,0,1,1,0,0,0 from item_template where `name` LIKE '%deadly glad%';
  7. replace into disenchant_loot_template (entry,item,ChanceOrQuestChance,lootmode,groupid,mincountOrRef,maxcount,lootcondition,condition_value1,condition_value2) Select
  8.  
  9. entry,70026,100,1,1,1,1,0,0,0 from item_template where `name` LIKE '%deadly glad%';
  10.  
  11. --Update uow_craftables with crafted item data
  12. replace into uow_craftables (entry, tradeskill,skilllevel,resource1,quantity1,resource2,quantity2,tier) Select entry,0,0,34057,1,70026,1,1 from world_hardcore.item_template
  13.  
  14. where `name` LIKE '%deadly glad%';