View Single Post
  #1  
Old 06-02-2013, 09:47 AM
jsr
Hill Giant
 
Join Date: Aug 2008
Location: melbourne
Posts: 187
Default

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
Reply With Quote