Thread: Peq DB
View Single Post
  #2  
Old 08-22-2008, 02:34 PM
cavedude's Avatar
cavedude
The PEQ Dude
 
Join Date: Apr 2003
Location: -
Posts: 1,988
Default

You'd have to remove the flag requirements for PoP zones. Status will also need to be set to 0 for the elementals/Time which aren't quite done yet. This query will do it:

Code:
update zone set flag_needed = '', min_status = 0 where zoneidnumber > 199 and zoneidnumber < 224;
For zones past PoP, you just need to set the status:

Code:
update zone set min_status = 0 where zoneidnumber > 223;
This will effect every zone that has a zoneidnumber higher than 223 (potimeb), so be careful.

Last edited by cavedude; 08-22-2008 at 10:38 PM..
Reply With Quote