View Single Post
  #1  
Old 12-16-2014, 04:02 PM
Bandor
Hill Giant
 
Join Date: May 2014
Posts: 209
Default Problem with start zones

So I modified the start_zones in my DB via SQL and everything is looking correct,all points (xyz) and headings are correct and I have players zoning into the zoneid I set. My problem is they are zoning in at the #zone area of the zone rather than the points I set in the DB. Any ideas how to resolve this?

The codes I ran are:


Code:
UPDATE `start_zones` SET `x` = '-231.28', `y` = '-887.93', `z` = '184.19', `heading` = '54.8', `zone_id` = '397', `start_zone` = `zone_id`, `bind_x` = `x`, `bind_y` = `y`, `bind_z` = `z`
Code:
INSERT INTO `variables` (`varname`,`value`,`information`) VALUES 
('startzone','mesa','Setting default Startzone for all clients and races to mesa');
Reply With Quote