Advertisement
IcariumQA

Fixing bloodforged items with no resilience

May 27th, 2021
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.35 KB | None | 0 0
  1. UPDATE item_template
  2. SET PvPpower = 1
  3. , stat_value10 = 1
  4. , spellid_4 = 101701
  5. WHERE PvPpower > 1
  6. AND requiredlevel BETWEEN 41 AND 70
  7. AND name LIKE "Bloodforged%"
  8. AND stat_type10 = 35
  9. AND (stat_value10 = 0 OR stat_value10 IS NULL);
  10.  
  11. /* Affected rows: 273  Found rows: 273  Warnings: 0  Duration for 3 queries: 1.187 sec. (+ 0.047 sec. network) */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement