Advertisement
IcariumQA

Fixing PVP power on dungeon items with Resilience

May 27th, 2021
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.84 KB | None | 0 0
  1.  
  2. Select *
  3. FROM  item_template
  4.  
  5. WHERE InventoryType IN (2, 11, 12, 16)
  6. AND stat_type9 = 35 and if(name LIKE "Bloodforged%", stat_value9 BETWEEN 0 AND 100 , stat_value9 BETWEEN 1 AND 100) AND pvppower BETWEEN 1 and 100 AND spellid_4 <> 0
  7. AND requiredlevel BETWEEN 41 AND 70;
  8.  
  9.  
  10.  
  11. Select *
  12. FROM  item_template
  13.  
  14. WHERE InventoryType IN (13, 14, 15, 21, 21, 22, 23, 25, 26, 28)
  15. AND stat_type9 = 35 and if(name LIKE "Bloodforged%", stat_value9 BETWEEN 0 AND 100 , stat_value9 BETWEEN 1 AND 100) AND pvppower BETWEEN 1 and 100 AND spellid_4 <> 0
  16. AND requiredlevel BETWEEN 41 AND 70;
  17.  
  18.  
  19.  
  20. Select *
  21. FROM  item_template
  22.  
  23. WHERE InventoryType IN (17)
  24. AND stat_type9 = 35 and if(name LIKE "Bloodforged%", stat_value9 BETWEEN 0 AND 100 , stat_value9 BETWEEN 1 AND 100) AND pvppower BETWEEN 1 and 100 AND spellid_4 <> 0
  25. AND requiredlevel BETWEEN 41 AND 70;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement