View Single Post
  #6  
Old 01-30-2010, 04:51 PM
Derision
Developer
 
Join Date: Feb 2004
Location: UK
Posts: 1,540
Default

Quote:
Originally Posted by Shiny151 View Post
Do you know how to actually activate the Guild Lobby from PoK so it doesn't port me back to another place within PoK by default?
In my copy of the PEQ database, the min_status in the zone table for the Guild Lobby and Guild Hall is 100. You could try this query
Code:
UPDATE `zone` SET `min_status` = '0' WHERE `zone`.`short_name`  = 'guildhall' LIMIT 1 ;
UPDATE `zone` SET `min_status` = '0' WHERE `zone`.`short_name`  = 'guildlobby' LIMIT 1 ;
and restart your server and try again.
Reply With Quote