Advertisement
kronixusa

Null Out Class and Race Requirements

Mar 6th, 2013
867
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.50 KB | None | 0 0
  1. /* These are used to remove Class/Race Requirements for all gear that have it. */
  2.  
  3. UPDATE `item_template` SET AllowableClass='-1' WHERE AllowableClass>'-1';
  4. UPDATE `item_template` SET AllowableRace='-1' WHERE AllowableRace>'-1';
  5.  
  6. /* These are used to remove Faction/Repuation Requirements for all gear that have it. */
  7.  
  8. UPDATE `item_template` SET RequiredReputationFaction='0' WHERE RequiredReputationFaction>'0';
  9. UPDATE `item_template` SET RequiredReputationRank='0' WHERE RequiredReputationRank>'0';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement