View Single Post
  #3  
Old 06-22-2009, 07:37 PM
Shendare
Dragon
 
Join Date: Apr 2009
Location: California
Posts: 814
Default

If you wanted to set all races, classes, and selections to start in the same zone, it appears that you could use the following SQL command:

UPDATE start_zones SET zone_id=(Zone), x=(x), y=(y), z=(z), start_zone=(Zone), bind_x=(x), bind_y=(y), bind_z=(z);

Change (Zone), (x), (y), and (z) to the values you want to use. You don't need the parentheses.

Everyone would then start in the specified zone at the specified coordinates.

Apparently the zone and coords are in there twice so you can set a player to be bound by default to a location different from the actual starting location, so you don't get too many players popping into the same spot on log-in and death.
Reply With Quote