View Single Post
  #9  
Old 03-23-2017, 06:22 PM
GRUMPY
Discordant
 
Join Date: Oct 2016
Posts: 445
Default

If you want to enable access to all zones by all players, regardless of level or status you can run this query
into DB to simplify things.

Code:
UPDATE zone set min_level = 0;
UPDATE zone set min_status = 0;
Reply With Quote