View Single Post
  #7  
Old 05-28-2015, 10:16 AM
Denath
Fire Beetle
 
Join Date: Aug 2005
Posts: 5
Default

Quote:
Originally Posted by jsr View Post
I would do it using queries and account status, e.g. to lock everything down to vanilla;

Code:
update zone set min_status = 200 where expansion > 1
or to vanilla + kunark;
Code:
update zone set min_status = 200 where expansion > 2
to unlock kunark;
Code:
update zone set min_status = 0 where expansion =< 2
Sorry to necro an old thread but can anyone explain how this would be implemented?
Reply With Quote