View Single Post
  #7  
Old 06-17-2011, 04:17 PM
sorvani
Dragon
 
Join Date: May 2010
Posts: 965
Default

The zone_points table had the wrong data in the target locations. The various target locations were pointing to the same location as the door destinations for the various island clicks. with one odd one pointing to efp (correctly) and one pointing to Oasis for some reason.

I updated the PEQ DB today with the correct values. Here is a SQL statement you can run to fix your local DB.

Code:
UPDATE zone_points
    SET target_x = -1570,
        target_y = -25,
        target_z = 20,
        target_heading = 231,
        target_zone_id = 10
WHERE id BETWEEN 1163 AND 1173;
Reply With Quote