Quote:
I am trying to change to starting zones for all characters and well, with the combinations of races classes and deities, it makes quite a few entries... and im tired of doing them one by one...
|
Assuming you have a populated start_zone table in your db, you could do the following:
Quote:
UPDATE start_zone
SET zone_id = 'desired_zone_id'
|
Of course, you'd probably want to modify that to update the x, y, and z coordinates as well as the player's initial bind location.