Thread: No pets?
View Single Post
  #6  
Old 03-14-2012, 08:12 PM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,072
Default

Quote:
Originally Posted by Serryon123 View Post
Ok great thanks im going to do that then. 1 more thing, would u be able to tell me how to change my starting zone and locs all at once? trheres like 345 rows cut and pasting suuucks!
You can change your starting zone for Titanium clients in the 'variables' table, you have to add an entry called 'startzone' and then in the value is your short name of the zone.

For SoF clients and up you change it in the `rules_values` table with the rule name of 'World:SoFStartZoneID', you set the value to be the zone ID name.

Otherwise if you really do want to change all of the values in the `start_zones` table you can do something like this:

Code:
UPDATE `start_zones` SET `x` = somevalue, `y` = somevalue, `z` = somevalue, `id` = somevalue;
Reply With Quote