EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Support::General Support (https://www.eqemulator.org/forums/forumdisplay.php?f=598)
-   -   Disabling zones/expansions via EOC (https://www.eqemulator.org/forums/showthread.php?t=42500)

Stubbay 06-19-2019 12:24 AM

Disabling zones/expansions via EOC
 
I'm using the EOC to disable specific expansions and zones. I'm not sure if I'm doing it correctly.

My expansion variable is set to "16731", based on the chart I found in the EOC wiki. My hope here is to activate Kunark, Velious, Luclin, & Ykesha, while skipping PoP. Did I use the right code? Is it possible to be that selective; i.e. skip an expansion?

I'm also attempting to disable the tutorial zone; The EOC wiki doesn't seem to have an answer to this, although I'm willing to bet I missed it. I'm not sure how to disable the tutorial zones via the EOC, so I'm hoping someone can "show" me how.

Stubbay 06-19-2019 12:28 AM

Quote:

Originally Posted by Stubbay (Post 262833)
I'm using the EOC to disable specific expansions and zones. I'm not sure if I'm doing it correctly.

My expansion variable is set to "16731", based on the chart I found in the EOC wiki. My hope here is to activate Kunark, Velious, Luclin, & Ykesha, while skipping PoP. Did I use the right code? Is it possible to be that selective; i.e. skip an expansion?

I'm also attempting to disable the tutorial zone; The EOC wiki doesn't seem to have an answer to this, although I'm willing to bet I missed it. I'm not sure how to disable the tutorial zones via the EOC, so I'm hoping someone can "show" me how.

I'm also hoping to disable AA's (which I forgot about, while making this post), and am wondering if simply deleting the rulesets for them, is sufficient to accomplish that?

chrsschb 06-19-2019 09:44 AM

Quote:

Originally Posted by Stubbay (Post 262833)
I'm using the EOC to disable specific expansions and zones. I'm not sure if I'm doing it correctly.

My expansion variable is set to "16731", based on the chart I found in the EOC wiki. My hope here is to activate Kunark, Velious, Luclin, & Ykesha, while skipping PoP. Did I use the right code? Is it possible to be that selective; i.e. skip an expansion?

I'm also attempting to disable the tutorial zone; The EOC wiki doesn't seem to have an answer to this, although I'm willing to bet I missed it. I'm not sure how to disable the tutorial zones via the EOC, so I'm hoping someone can "show" me how.

Expansions:
http://www.eqemulator.org/forums/sho...89&postcount=3
(this is an older post so it's missing bitmask values past SoF, but you get the idea).

Start Zones:
http://www.eqemulator.org/forums/showthread.php?t=40374
Quote:

Originally Posted by Stubbay (Post 262834)
I'm also hoping to disable AA's (which I forgot about, while making this post), and am wondering if simply deleting the rulesets for them, is sufficient to accomplish that?

Simplest way (to me) is just changing the requirements so that the base AA (or all of them if you just wanna do a bulk edit) is unattainable in each tree.

Huppy 06-19-2019 11:46 AM

The github wiki has a lot of references lists to use (including bitmasks for clients and expansions). https://github.com/EQEmu/Server/wiki
As far as disabling any and all AA's, that can be done with a simple sql query:

Code:

UPDATE aa_ability SET enabled = 0;

Stubbay 06-19-2019 07:23 PM

Thank you very much, guys!

I now see I was supposed to add the expansion values, not simply append them to one another.

And I've been messing around with the SQL library a bit, in my attempt to modify items not found in the EOC, so I'm glad to have an example of how to use the query system, thanks!

Stubbay 06-19-2019 09:21 PM

Quote:

Originally Posted by chrsschb (Post 262835)

I'm trying to set the starting zones to their defaults. I can't seem to figure it out.

The Titanium and SoF client is set to "-1" by default. I assumed I needed to set those values to "0", as well as, all the values from the post (meant for PoK) to "0" (I deleted the x,y,z,heading arguments).

I assumed "0" would simply set them to some activated state, where the program would look to their defaults, but clearly, I am wrong, as it's spitting my characters out in South Qeynos lol.

I'm about to attempt setting them back "-1". I suppose I'm posting to document the process, and hopes that someone can better explain this to me.

Huppy 06-19-2019 09:58 PM

It helps to back back up your database (before editing, and along the way) But keep in mind, when it comes to changing or altering the start zone for a toon, it has to be set in the char_create_combinations as well. The following sql query will set your start_zones table back to default settings:

Code:

UPDATE `start_zones` SET `x` = 504, `y` = 1147, `z` = -38.22, `heading` = 96, `zone_id` = 75, `bind_id` = 0, `start_zone` = 75, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 2 AND `player_deity` = 203 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = -385, `y` = -1071, `z` = 67.72, `heading` = 0, `zone_id` = 24, `bind_id` = 0, `start_zone` = 24, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 2 AND `player_deity` = 209 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = -80, `y` = -639, `z` = 67.72, `heading` = 144, `zone_id` = 24, `bind_id` = 0, `start_zone` = 24, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 2 AND `player_deity` = 210 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = -374, `y` = -1040, `z` = 51.72, `heading` = 192, `zone_id` = 24, `bind_id` = 0, `start_zone` = 24, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 3 AND `player_deity` = 209 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = -64, `y` = -656, `z` = 67.72, `heading` = 48, `zone_id` = 24, `bind_id` = 0, `start_zone` = 24, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 3 AND `player_deity` = 210 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 456, `y` = 880, `z` = -120.18, `heading` = 128, `zone_id` = 75, `bind_id` = 0, `start_zone` = 75, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 5 AND `player_deity` = 203 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 840, `y` = 781, `z` = -22.25, `heading` = 0, `zone_id` = 75, `bind_id` = 0, `start_zone` = 75, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 11 AND `player_deity` = 203 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 740, `y` = 887, `z` = 83.72, `heading` = 192, `zone_id` = 23, `bind_id` = 0, `start_zone` = 23, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 12 AND `player_deity` = 209 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 740, `y` = 887, `z` = 83.72, `heading` = 192, `zone_id` = 23, `bind_id` = 0, `start_zone` = 23, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 12 AND `player_deity` = 210 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 740, `y` = 887, `z` = 83.72, `heading` = 192, `zone_id` = 23, `bind_id` = 0, `start_zone` = 23, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 12 AND `player_deity` = 213 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 740, `y` = 887, `z` = 83.72, `heading` = 192, `zone_id` = 23, `bind_id` = 0, `start_zone` = 23, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 12 AND `player_deity` = 396 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 920, `y` = 716, `z` = 83.72, `heading` = 0, `zone_id` = 23, `bind_id` = 0, `start_zone` = 23, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 13 AND `player_deity` = 209 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 920, `y` = 716, `z` = 83.72, `heading` = 0, `zone_id` = 23, `bind_id` = 0, `start_zone` = 23, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 13 AND `player_deity` = 210 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 920, `y` = 716, `z` = 83.72, `heading` = 0, `zone_id` = 23, `bind_id` = 0, `start_zone` = 23, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 13 AND `player_deity` = 396 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 753, `y` = 536, `z` = 83.72, `heading` = 64, `zone_id` = 23, `bind_id` = 0, `start_zone` = 23, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 14 AND `player_deity` = 209 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 753, `y` = 536, `z` = 83.72, `heading` = 64, `zone_id` = 23, `bind_id` = 0, `start_zone` = 23, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 14 AND `player_deity` = 210 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = 753, `y` = 536, `z` = 83.72, `heading` = 64, `zone_id` = 23, `bind_id` = 0, `start_zone` = 23, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 0 AND `player_class` = 14 AND `player_deity` = 396 AND `player_race` = 3;
UPDATE `start_zones` SET `x` = -371, `y` = 329, `z` = -38.22, `heading` = 170, `zone_id` = 45, `bind_id` = 0, `start_zone` = 45, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 201 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -510, `y` = 57, `z` = 31.75, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 207 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -510, `y` = 57, `z` = 31.75, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -510, `y` = 57, `z` = 31.75, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 212 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -510, `y` = 57, `z` = 31.75, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -625, `y` = 354, `z` = -35.25, `heading` = 64, `zone_id` = 45, `bind_id` = 0, `start_zone` = 45, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 2 AND `player_deity` = 201 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -440, `y` = -173, `z` = 3.75, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 2 AND `player_deity` = 207 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -677, `y` = -75, `z` = -10.25, `heading` = 0, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 2 AND `player_deity` = 212 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -509, `y` = -149, `z` = 6.75, `heading` = 192, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 3 AND `player_deity` = 207 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -677, `y` = -187, `z` = -10.25, `heading` = 128, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 3 AND `player_deity` = 212 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 84, `y` = 127, `z` = 2.75, `heading` = 128, `zone_id` = 3, `bind_id` = 0, `start_zone` = 3, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 4 AND `player_deity` = 207 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 84, `y` = 127, `z` = 2.75, `heading` = 128, `zone_id` = 3, `bind_id` = 0, `start_zone` = 3, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 4 AND `player_deity` = 215 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -319, `y` = 416, `z` = -38.22, `heading` = 64, `zone_id` = 45, `bind_id` = 0, `start_zone` = 45, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 5 AND `player_deity` = 201 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -430, `y` = -209, `z` = 6.75, `heading` = 192, `zone_id` = 3, `bind_id` = 0, `start_zone` = 3, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 6 AND `player_deity` = 207 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -430, `y` = -209, `z` = 6.75, `heading` = 192, `zone_id` = 3, `bind_id` = 0, `start_zone` = 3, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 6 AND `player_deity` = 215 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 288, `y` = 344, `z` = 3.75, `heading` = 64, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 7 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 202 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 205 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 207 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 209 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 210 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 211 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 212 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 213 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 214 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 215 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 216 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -141, `y` = 515, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 167, `y` = 30, `z` = -29.25, `heading` = 192, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 9 AND `player_deity` = 201 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 167, `y` = 30, `z` = -29.25, `heading` = 192, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 167, `y` = 30, `z` = -29.25, `heading` = 192, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 9 AND `player_deity` = 207 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 167, `y` = 30, `z` = -29.25, `heading` = 192, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 9 AND `player_deity` = 212 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 167, `y` = 30, `z` = -29.25, `heading` = 192, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -427, `y` = 302, `z` = -38.22, `heading` = 192, `zone_id` = 45, `bind_id` = 0, `start_zone` = 45, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 11 AND `player_deity` = 201 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -353, `y` = 309, `z` = -38.22, `heading` = 0, `zone_id` = 45, `bind_id` = 2, `start_zone` = 0, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 12 AND `player_deity` = 201 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -653, `y` = 314, `z` = -3.75, `heading` = 192, `zone_id` = 1, `bind_id` = 2, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 12 AND `player_deity` = 207 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -653, `y` = 314, `z` = -3.75, `heading` = 192, `zone_id` = 1, `bind_id` = 2, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 12 AND `player_deity` = 212 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -653, `y` = 314, `z` = -3.75, `heading` = 192, `zone_id` = 1, `bind_id` = 2, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 12 AND `player_deity` = 213 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -653, `y` = 314, `z` = 3.75, `heading` = 192, `zone_id` = 1, `bind_id` = 2, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 12 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -363, `y` = 382, `z` = -38.22, `heading` = 32, `zone_id` = 45, `bind_id` = 0, `start_zone` = 45, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 13 AND `player_deity` = 201 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -654, `y` = 319, `z` = 3.75, `heading` = 160, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 13 AND `player_deity` = 207 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -654, `y` = 319, `z` = 3.75, `heading` = 160, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 13 AND `player_deity` = 212 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -654, `y` = 319, `z` = 3.75, `heading` = 160, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 13 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -370, `y` = 397, `z` = -38.22, `heading` = 176, `zone_id` = 45, `bind_id` = 0, `start_zone` = 45, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 14 AND `player_deity` = 201 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -654, `y` = 305, `z` = 3.75, `heading` = 232, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 14 AND `player_deity` = 207 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -654, `y` = 305, `z` = 3.75, `heading` = 232, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 14 AND `player_deity` = 212 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -654, `y` = 305, `z` = 3.75, `heading` = 232, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 14 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -372, `y` = 294, `z` = -38.65, `heading` = 0, `zone_id` = 45, `bind_id` = 0, `start_zone` = 45, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 201 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -513, `y` = 48, `z` = 31.44, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 207 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -513, `y` = 48, `z` = 31.44, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 209 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -513, `y` = 48, `z` = 31.44, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -513, `y` = 48, `z` = 31.44, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 212 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -513, `y` = 48, `z` = 31.44, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 214 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -513, `y` = 48, `z` = 31.44, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -148, `y` = -491, `z` = -3.44, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 3 AND `player_deity` = 207 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -148, `y` = -491, `z` = -3.44, `heading` = 0, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 3 AND `player_deity` = 212 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 84, `y` = 133, `z` = 2.44, `heading` = 128, `zone_id` = 3, `bind_id` = 0, `start_zone` = 3, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 4 AND `player_deity` = 207 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 84, `y` = 133, `z` = 2.44, `heading` = 128, `zone_id` = 3, `bind_id` = 0, `start_zone` = 3, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 4 AND `player_deity` = 215 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -413, `y` = -210, `z` = 5.74, `heading` = 192, `zone_id` = 3, `bind_id` = 0, `start_zone` = 3, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 6 AND `player_deity` = 207 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -413, `y` = -210, `z` = 5.74, `heading` = 192, `zone_id` = 3, `bind_id` = 0, `start_zone` = 3, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 6 AND `player_deity` = 215 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 202 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 205 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 207 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 209 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 210 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 211 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 212 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 213 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 214 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 215 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 216 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -140, `y` = 528, `z` = 3.75, `heading` = 128, `zone_id` = 1, `bind_id` = 0, `start_zone` = 1, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 8 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 168, `y` = 31, `z` = -29.56, `heading` = 192, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 9 AND `player_deity` = 201 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 168, `y` = 31, `z` = -29.56, `heading` = 192, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 168, `y` = 31, `z` = -29.56, `heading` = 192, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 9 AND `player_deity` = 207 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 168, `y` = 31, `z` = -29.56, `heading` = 192, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 9 AND `player_deity` = 212 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 168, `y` = 31, `z` = -29.56, `heading` = 192, `zone_id` = 2, `bind_id` = 0, `start_zone` = 2, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 1 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 300, `y` = -1455, `z` = -48.42, `heading` = 168, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 5 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -1539, `y` = -235, `z` = -135.76, `heading` = 168, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 7 AND `player_deity` = 210 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 578, `y` = -1358, `z` = -48.93, `heading` = 128, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 11 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -456, `y` = 560, `z` = -26.62, `heading` = 192, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = -456, `y` = 560, `z` = -26.62, `heading` = 192, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 1 AND `player_deity` = 214 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = -456, `y` = 560, `z` = -26.62, `heading` = 192, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = 141, `y` = 271, `z` = 9.38, `heading` = 64, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = 141, `y` = 271, `z` = 9.38, `heading` = 64, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 9 AND `player_deity` = 214 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = 141, `y` = 271, `z` = 9.38, `heading` = 64, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = 449, `y` = 332, `z` = -19.62, `heading` = 64, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 10 AND `player_deity` = 214 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = 210, `y` = 586, `z` = 4.38, `heading` = 192, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 15 AND `player_deity` = 208 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = 210, `y` = 586, `z` = 4.38, `heading` = 192, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 15 AND `player_deity` = 214 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = 325, `y` = 565, `z` = 4.38, `heading` = 48, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 16 AND `player_deity` = 211 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = 325, `y` = 565, `z` = 4.38, `heading` = 48, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 16 AND `player_deity` = 214 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = 325, `y` = 565, `z` = 4.38, `heading` = 48, `zone_id` = 29, `bind_id` = 0, `start_zone` = 29, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 2 AND `player_class` = 16 AND `player_deity` = 396 AND `player_race` = 2;
UPDATE `start_zones` SET `x` = -152, `y` = 100, `z` = 46.16, `heading` = 144, `zone_id` = 19, `bind_id` = 0, `start_zone` = 19, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 3 AND `player_class` = 1 AND `player_deity` = 202 AND `player_race` = 11;
UPDATE `start_zones` SET `x` = -152, `y` = 100, `z` = 46.16, `heading` = 144, `zone_id` = 19, `bind_id` = 0, `start_zone` = 19, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 3 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 11;
UPDATE `start_zones` SET `x` = -152, `y` = 100, `z` = 46.16, `heading` = 144, `zone_id` = 19, `bind_id` = 0, `start_zone` = 19, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 3 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 11;
UPDATE `start_zones` SET `x` = -369, `y` = -228, `z` = -17.81, `heading` = 192, `zone_id` = 19, `bind_id` = 0, `start_zone` = 19, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 3 AND `player_class` = 2 AND `player_deity` = 205 AND `player_race` = 11;
UPDATE `start_zones` SET `x` = -312, `y` = -247, `z` = -9.81, `heading` = 128, `zone_id` = 19, `bind_id` = 0, `start_zone` = 19, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 3 AND `player_class` = 3 AND `player_deity` = 207 AND `player_race` = 11;
UPDATE `start_zones` SET `x` = -439, `y` = -47, `z` = -11.81, `heading` = 0, `zone_id` = 19, `bind_id` = 0, `start_zone` = 19, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 3 AND `player_class` = 4 AND `player_deity` = 207 AND `player_race` = 11;
UPDATE `start_zones` SET `x` = -424, `y` = -52, `z` = -11.81, `heading` = 0, `zone_id` = 19, `bind_id` = 0, `start_zone` = 19, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 3 AND `player_class` = 6 AND `player_deity` = 207 AND `player_race` = 11;
UPDATE `start_zones` SET `x` = -181, `y` = -58, `z` = 40.19, `heading` = 224, `zone_id` = 19, `bind_id` = 0, `start_zone` = 19, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 3 AND `player_class` = 9 AND `player_deity` = 202 AND `player_race` = 11;
UPDATE `start_zones` SET `x` = -181, `y` = -58, `z` = 40.19, `heading` = 224, `zone_id` = 19, `bind_id` = 0, `start_zone` = 19, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 3 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 11;
UPDATE `start_zones` SET `x` = -181, `y` = -58, `z` = 40.19, `heading` = 224, `zone_id` = 19, `bind_id` = 0, `start_zone` = 19, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 3 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 11;
UPDATE `start_zones` SET `x` = -42, `y` = -309, `z` = -10.25, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -42, `y` = -309, `z` = -10.25, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -42, `y` = -309, `z` = -10.25, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -42, `y` = -309, `z` = -10.25, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -42, `y` = -309, `z` = -10.25, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 335, `y` = 147, `z` = 73.72, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 2 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -199, `y` = -30, `z` = -94.22, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 2 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 201, `y` = -126, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 2 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 326, `y` = 129, `z` = -24.25, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 3 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -183, `y` = 241, `z` = 3.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 3 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -303, `y` = -220, `z` = -108.22, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 5 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -807, `y` = -239, `z` = -10.25, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 7 AND `player_deity` = 210 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 202 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 205 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 209 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 210 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 211 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 213 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 214 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 215 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 216 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 560, `y` = -145, `z` = 17.75, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -864, `y` = -321, `z` = -108.22, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 9 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -864, `y` = -321, `z` = -108.22, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -864, `y` = -321, `z` = -108.22, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 9 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -864, `y` = -321, `z` = -108.22, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -184, `y` = -68, `z` = -94.22, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 11 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -710, `y` = 138, `z` = 17.75, `heading` = 0, `zone_id` = 9, `bind_id` = 9, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 12 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -250, `y` = -38, `z` = -94.22, `heading` = 0, `zone_id` = 10, `bind_id` = 9, `start_zone` = 0, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 12 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -710, `y` = 138, `z` = 17.75, `heading` = 0, `zone_id` = 9, `bind_id` = 9, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 12 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -710, `y` = 138, `z` = -17.75, `heading` = 0, `zone_id` = 9, `bind_id` = 9, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 12 AND `player_deity` = 213 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -710, `y` = 138, `z` = 17.75, `heading` = 0, `zone_id` = 9, `bind_id` = 9, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 12 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -747, `y` = 146, `z` = 31.75, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 13 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -254, `y` = -42, `z` = -94.22, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 13 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -747, `y` = 146, `z` = 31.75, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 13 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -747, `y` = 146, `z` = 31.75, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 13 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 72, `y` = -812, `z` = -52.22, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 14 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -252, `y` = -37, `z` = -94.22, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 14 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 72, `y` = -812, `z` = -52.22, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 14 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 72, `y` = -812, `z` = -52.22, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 14 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -291, `y` = -44, `z` = -10.56, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 204 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -291, `y` = -44, `z` = -10.56, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 206 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -291, `y` = -44, `z` = -10.56, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 208 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -291, `y` = -44, `z` = -10.56, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 209 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -291, `y` = -44, `z` = -10.56, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -291, `y` = -44, `z` = -10.56, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 214 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -291, `y` = -44, `z` = -10.56, `heading` = 0, `zone_id` = 9, `bind_id` = 0, `start_zone` = 9, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 328, `y` = 118, `z` = -24.56, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 3 AND `player_deity` = 204 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 328, `y` = 118, `z` = -24.56, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 3 AND `player_deity` = 208 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 202 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 204 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 205 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 208 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 209 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 210 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 211 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 213 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 214 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 215 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 216 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 561, `y` = -126, `z` = 17.31, `heading` = 0, `zone_id` = 8, `bind_id` = 0, `start_zone` = 8, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 8 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -864, `y` = -309, `z` = -108.53, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 9 AND `player_deity` = 204 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -864, `y` = -309, `z` = -108.53, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -864, `y` = -309, `z` = -108.53, `heading` = 0, `zone_id` = 10, `bind_id` = 0, `start_zone` = 10, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 4 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -1633, `y` = 1393, `z` = -195.23, `heading` = 80, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 3 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -500, `y` = 1123, `z` = -126.73, `heading` = 0, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 3 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -896, `y` = -511, `z` = -187.26, `heading` = 48, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 12 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 600, `y` = -1566, `z` = -49.22, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 12 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -896, `y` = -511, `z` = -187.26, `heading` = 48, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 12 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -896, `y` = -511, `z` = -187.26, `heading` = 48, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 12 AND `player_deity` = 213 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -896, `y` = -511, `z` = -187.26, `heading` = 48, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 12 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -1133, `y` = -76, `z` = -52.84, `heading` = 0, `zone_id` = 41, `bind_id` = 0, `start_zone` = 41, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 1 AND `player_deity` = 206 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -1133, `y` = -76, `z` = -52.84, `heading` = 0, `zone_id` = 41, `bind_id` = 0, `start_zone` = 41, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -1133, `y` = -76, `z` = -52.84, `heading` = 0, `zone_id` = 41, `bind_id` = 0, `start_zone` = 41, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -774, `y` = 405, `z` = -52.84, `heading` = 200, `zone_id` = 42, `bind_id` = 0, `start_zone` = 42, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 2 AND `player_deity` = 206 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -1238, `y` = 1255, `z` = -80.84, `heading` = 0, `zone_id` = 42, `bind_id` = 0, `start_zone` = 42, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 5 AND `player_deity` = 206 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -1305, `y` = 634, `z` = -80.84, `heading` = 185, `zone_id` = 42, `bind_id` = 0, `start_zone` = 42, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -1305, `y` = 634, `z` = -80.84, `heading` = 185, `zone_id` = 42, `bind_id` = 0, `start_zone` = 42, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 9 AND `player_deity` = 206 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -1305, `y` = 634, `z` = -80.84, `heading` = 185, `zone_id` = 42, `bind_id` = 0, `start_zone` = 42, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -1253, `y` = 1255, `z` = -80.84, `heading` = 0, `zone_id` = 42, `bind_id` = 0, `start_zone` = 42, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 11 AND `player_deity` = 206 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -947, `y` = 141, `z` = -38.84, `heading` = 192, `zone_id` = 41, `bind_id` = 0, `start_zone` = 41, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 12 AND `player_deity` = 206 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -947, `y` = 141, `z` = -38.84, `heading` = 192, `zone_id` = 41, `bind_id` = 0, `start_zone` = 41, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 12 AND `player_deity` = 213 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -947, `y` = 141, `z` = -38.84, `heading` = 192, `zone_id` = 41, `bind_id` = 0, `start_zone` = 41, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 12 AND `player_deity` = 396 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -980, `y` = 148, `z` = -38.84, `heading` = 64, `zone_id` = 41, `bind_id` = 0, `start_zone` = 41, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 13 AND `player_deity` = 206 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -980, `y` = 148, `z` = -38.84, `heading` = 64, `zone_id` = 41, `bind_id` = 0, `start_zone` = 41, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 13 AND `player_deity` = 396 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -951, `y` = 144, `z` = -38.84, `heading` = 224, `zone_id` = 41, `bind_id` = 0, `start_zone` = 41, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 14 AND `player_deity` = 206 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -951, `y` = 144, `z` = -38.84, `heading` = 224, `zone_id` = 41, `bind_id` = 0, `start_zone` = 41, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 14 AND `player_deity` = 396 AND `player_race` = 6;
UPDATE `start_zones` SET `x` = -1633, `y` = 1393, `z` = -195.23, `heading` = 80, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 3 AND `player_deity` = 204 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -500, `y` = 1123, `z` = -126.73, `heading` = 0, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 3 AND `player_deity` = 208 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -150, `y` = 310, `z` = 25, `heading` = 182, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 1 AND `player_deity` = 203 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = -150, `y` = 310, `z` = 25, `heading` = 182, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 1 AND `player_deity` = 206 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = -150, `y` = 310, `z` = 25, `heading` = 182, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = -150, `y` = 310, `z` = 25, `heading` = 182, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = -935, `y` = 515, `z` = 15, `heading` = 186, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 5 AND `player_deity` = 203 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = -935, `y` = 515, `z` = 15, `heading` = 186, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 5 AND `player_deity` = 206 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = -487, `y` = 39, `z` = 55, `heading` = 128, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 10 AND `player_deity` = 203 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = -487, `y` = 39, `z` = 55, `heading` = 128, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 10 AND `player_deity` = 206 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = -407, `y` = 12, `z` = 75, `heading` = 147, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 15 AND `player_deity` = 203 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = -407, `y` = 12, `z` = 75, `heading` = 147, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 5 AND `player_class` = 15 AND `player_deity` = 206 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = -1704, `y` = 1493, `z` = 16.77, `heading` = 240, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 2 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 574, `y` = -1520, `z` = -49.5, `heading` = 144, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 2 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -796, `y` = 806, `z` = -166.73, `heading` = 192, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 2 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 319, `y` = -433, `z` = 3.13, `heading` = 0, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 1 AND `player_deity` = 208 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = 340, `y` = -472, `z` = 3.13, `heading` = 0, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 2 AND `player_deity` = 208 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = 391, `y` = -444, `z` = 3.13, `heading` = 0, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 3 AND `player_deity` = 208 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = 383, `y` = -424, `z` = 3.13, `heading` = 0, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 10 AND `player_deity` = 208 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = 385, `y` = -483, `z` = 3.13, `heading` = 0, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 12 AND `player_deity` = 208 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = 117, `y` = 244, `z` = -5.3, `heading` = 70, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 16 AND `player_deity` = 203 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = 117, `y` = 244, `z` = -5.3, `heading` = 70, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 16 AND `player_deity` = 206 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = 117, `y` = 244, `z` = -5.3, `heading` = 70, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 16 AND `player_deity` = 211 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = 117, `y` = 244, `z` = -5.3, `heading` = 70, `zone_id` = 52, `bind_id` = 0, `start_zone` = 52, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 6 AND `player_class` = 16 AND `player_deity` = 396 AND `player_race` = 9;
UPDATE `start_zones` SET `x` = 612, `y` = -1297, `z` = -49.22, `heading` = 32, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 9 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 612, `y` = -1297, `z` = -49.22, `heading` = 32, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 612, `y` = -1297, `z` = -49.22, `heading` = 32, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 9 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 612, `y` = -1297, `z` = -49.22, `heading` = 32, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -924, `y` = -550, `z` = -187.26, `heading` = 128, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 13 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 561, `y` = -1562, `z` = -49.74, `heading` = 144, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 13 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -924, `y` = -550, `z` = -187.26, `heading` = 128, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 13 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -924, `y` = -550, `z` = -187.26, `heading` = 128, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 13 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -880, `y` = -248, `z` = -77.26, `heading` = 112, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 14 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 586, `y` = -1507, `z` = -49.74, `heading` = 56, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 14 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -880, `y` = -248, `z` = -77.26, `heading` = 112, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 14 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -880, `y` = -248, `z` = -77.26, `heading` = 112, `zone_id` = 383, `bind_id` = 0, `start_zone` = 383, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 14 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -681, `y` = 663, `z` = -21.52, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 1 AND `player_deity` = 204 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 591, `y` = -1447, `z` = -49.21, `heading` = 160, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 1 AND `player_deity` = 206 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -681, `y` = 663, `z` = -21.52, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 1 AND `player_deity` = 208 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -681, `y` = 663, `z` = -21.52, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 1 AND `player_deity` = 209 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -681, `y` = 663, `z` = -21.52, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -681, `y` = 663, `z` = -21.52, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 1 AND `player_deity` = 214 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -681, `y` = 663, `z` = -21.52, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 612, `y` = -1297, `z` = -49.22, `heading` = 32, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 9 AND `player_deity` = 204 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 612, `y` = -1297, `z` = -49.22, `heading` = 32, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 612, `y` = -1297, `z` = -49.22, `heading` = 32, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 71, `y` = -2, `z` = -25, `heading` = 0, `zone_id` = 49, `bind_id` = 0, `start_zone` = 49, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 1 AND `player_deity` = 203 AND `player_race` = 10;
UPDATE `start_zones` SET `x` = 71, `y` = -2, `z` = -25, `heading` = 0, `zone_id` = 49, `bind_id` = 0, `start_zone` = 49, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 10;
UPDATE `start_zones` SET `x` = 71, `y` = -2, `z` = -25, `heading` = 0, `zone_id` = 49, `bind_id` = 0, `start_zone` = 49, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 10;
UPDATE `start_zones` SET `x` = -7, `y` = 334, `z` = 6.5, `heading` = 192, `zone_id` = 49, `bind_id` = 0, `start_zone` = 49, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 5 AND `player_deity` = 203 AND `player_race` = 10;
UPDATE `start_zones` SET `x` = -7, `y` = 334, `z` = 6.5, `heading` = 192, `zone_id` = 49, `bind_id` = 0, `start_zone` = 49, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 5 AND `player_deity` = 211 AND `player_race` = 10;
UPDATE `start_zones` SET `x` = 991, `y` = 648, `z` = 81.7, `heading` = 143, `zone_id` = 49, `bind_id` = 0, `start_zone` = 49, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 10 AND `player_deity` = 211 AND `player_race` = 10;
UPDATE `start_zones` SET `x` = 1074, `y` = 289, `z` = 81.7, `heading` = 77, `zone_id` = 49, `bind_id` = 0, `start_zone` = 49, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 15 AND `player_deity` = 211 AND `player_race` = 10;
UPDATE `start_zones` SET `x` = -255, `y` = 303, `z` = 5.5, `heading` = 124, `zone_id` = 49, `bind_id` = 0, `start_zone` = 49, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 16 AND `player_deity` = 203 AND `player_race` = 10;
UPDATE `start_zones` SET `x` = -255, `y` = 303, `z` = 5.5, `heading` = 124, `zone_id` = 49, `bind_id` = 0, `start_zone` = 49, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 16 AND `player_deity` = 211 AND `player_race` = 10;
UPDATE `start_zones` SET `x` = -255, `y` = 303, `z` = 5.5, `heading` = 124, `zone_id` = 49, `bind_id` = 0, `start_zone` = 49, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 7 AND `player_class` = 16 AND `player_deity` = 396 AND `player_race` = 10;
UPDATE `start_zones` SET `x` = -681, `y` = 663, `z` = -21.52, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 1 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 591, `y` = -1447, `z` = -49.21, `heading` = 160, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 1 AND `player_deity` = 206 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -681, `y` = 663, `z` = -21.52, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 1 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -681, `y` = 663, `z` = -21.52, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -681, `y` = 663, `z` = -21.52, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = 304, `y` = 41, `z` = 14.5, `heading` = 0, `zone_id` = 60, `bind_id` = 0, `start_zone` = 60, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 1 AND `player_deity` = 202 AND `player_race` = 8;
UPDATE `start_zones` SET `x` = 304, `y` = 41, `z` = 14.5, `heading` = 0, `zone_id` = 60, `bind_id` = 0, `start_zone` = 60, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 8;
UPDATE `start_zones` SET `x` = 132, `y` = 771, `z` = 2.5, `heading` = 0, `zone_id` = 67, `bind_id` = 0, `start_zone` = 67, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 2 AND `player_deity` = 202 AND `player_race` = 8;
UPDATE `start_zones` SET `x` = 132, `y` = 1351, `z` = 46.47, `heading` = 128, `zone_id` = 67, `bind_id` = 0, `start_zone` = 67, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 3 AND `player_deity` = 202 AND `player_race` = 8;
UPDATE `start_zones` SET `x` = 218, `y` = 546, `z` = -33.5, `heading` = 240, `zone_id` = 67, `bind_id` = 0, `start_zone` = 67, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 9 AND `player_deity` = 202 AND `player_race` = 8;
UPDATE `start_zones` SET `x` = 218, `y` = 546, `z` = -33.5, `heading` = 240, `zone_id` = 67, `bind_id` = 0, `start_zone` = 67, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 8;
UPDATE `start_zones` SET `x` = 218, `y` = 546, `z` = -33.5, `heading` = 240, `zone_id` = 67, `bind_id` = 0, `start_zone` = 67, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 8;
UPDATE `start_zones` SET `x` = 298, `y` = 494, `z` = -33.5, `heading` = 92, `zone_id` = 67, `bind_id` = 0, `start_zone` = 67, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 16 AND `player_deity` = 202 AND `player_race` = 8;
UPDATE `start_zones` SET `x` = 298, `y` = 494, `z` = -33.5, `heading` = 92, `zone_id` = 67, `bind_id` = 0, `start_zone` = 67, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 16 AND `player_deity` = 205 AND `player_race` = 8;
UPDATE `start_zones` SET `x` = 298, `y` = 494, `z` = -33.5, `heading` = 92, `zone_id` = 67, `bind_id` = 0, `start_zone` = 67, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 8 AND `player_class` = 16 AND `player_deity` = 396 AND `player_race` = 8;
UPDATE `start_zones` SET `x` = 283, `y` = 340, `z` = 77.09, `heading` = 205, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 1 AND `player_deity` = 207 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 283, `y` = 340, `z` = 77.09, `heading` = 205, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 283, `y` = 340, `z` = 77.09, `heading` = 205, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 1 AND `player_deity` = 215 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 283, `y` = 340, `z` = 77.09, `heading` = 205, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 523, `y` = -447, `z` = 117.53, `heading` = 128, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 4 AND `player_deity` = 215 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 226, `y` = -629, `z` = 77.06, `heading` = 160, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 6 AND `player_deity` = 215 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 202 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 204 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 205 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 207 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 208 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 209 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 210 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 211 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 212 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 213 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 214 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 215 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 216 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 252, `y` = -234, `z` = 77.09, `heading` = 135, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 396 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = -216, `y` = -504, `z` = 161.09, `heading` = 160, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = -216, `y` = -504, `z` = 161.09, `heading` = 160, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 9 AND `player_deity` = 207 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = -216, `y` = -504, `z` = 161.09, `heading` = 160, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 9 AND `player_deity` = 215 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = -216, `y` = -504, `z` = 161.09, `heading` = 160, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 4;
UPDATE `start_zones` SET `x` = 282, `y` = 340, `z` = 77.41, `heading` = 125, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 1 AND `player_deity` = 209 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 282, `y` = 340, `z` = 77.41, `heading` = 125, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 282, `y` = 340, `z` = 77.41, `heading` = 125, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 1 AND `player_deity` = 214 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 282, `y` = 340, `z` = 77.41, `heading` = 125, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 1 AND `player_deity` = 215 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 282, `y` = 340, `z` = 77.41, `heading` = 125, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 493, `y` = -431, `z` = 117.5, `heading` = 92, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 4 AND `player_deity` = 215 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 226, `y` = -629, `z` = 77.06, `heading` = 160, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 6 AND `player_deity` = 215 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 243, `y` = -238, `z` = 77.28, `heading` = 128, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 202 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 243, `y` = -238, `z` = 77.28, `heading` = 128, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 205 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 243, `y` = -238, `z` = 77.28, `heading` = 128, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 209 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 243, `y` = -238, `z` = 77.28, `heading` = 128, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 210 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 243, `y` = -238, `z` = 77.28, `heading` = 128, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 211 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 243, `y` = -238, `z` = 77.28, `heading` = 128, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 213 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 243, `y` = -238, `z` = 77.28, `heading` = 128, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 214 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 243, `y` = -238, `z` = 77.28, `heading` = 128, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 215 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 243, `y` = -238, `z` = 77.28, `heading` = 128, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 216 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 243, `y` = -238, `z` = 77.28, `heading` = 128, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 8 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -210, `y` = -501, `z` = 161.41, `heading` = 160, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -210, `y` = -501, `z` = 161.41, `heading` = 160, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 9 AND `player_deity` = 215 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -210, `y` = -501, `z` = 161.41, `heading` = 160, `zone_id` = 54, `bind_id` = 0, `start_zone` = 54, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 9 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -445, `y` = 11, `z` = 0, `heading` = 64, `zone_id` = 61, `bind_id` = 0, `start_zone` = 61, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 2 AND `player_deity` = 215 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -317, `y` = 8, `z` = 8.75, `heading` = 208, `zone_id` = 61, `bind_id` = 0, `start_zone` = 61, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 3 AND `player_deity` = 215 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -422, `y` = 506, `z` = 0, `heading` = 64, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 12 AND `player_deity` = 204 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -422, `y` = 506, `z` = 0, `heading` = 64, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 12 AND `player_deity` = 207 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -422, `y` = 506, `z` = 0, `heading` = 64, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 12 AND `player_deity` = 208 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -422, `y` = 506, `z` = 0, `heading` = 64, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 12 AND `player_deity` = 213 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -422, `y` = 506, `z` = 0, `heading` = 64, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 12 AND `player_deity` = 215 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -422, `y` = 506, `z` = 0, `heading` = 64, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 12 AND `player_deity` = 396 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -603, `y` = 784, `z` = 4, `heading` = 16, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 13 AND `player_deity` = 204 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -603, `y` = 784, `z` = 4, `heading` = 16, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 13 AND `player_deity` = 207 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -603, `y` = 784, `z` = 4, `heading` = 16, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 13 AND `player_deity` = 208 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -603, `y` = 784, `z` = 4, `heading` = 16, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 13 AND `player_deity` = 215 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -603, `y` = 784, `z` = 4, `heading` = 16, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 13 AND `player_deity` = 396 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -830, `y` = 559, `z` = 4, `heading` = 176, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 14 AND `player_deity` = 204 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -830, `y` = 559, `z` = 4, `heading` = 176, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 14 AND `player_deity` = 207 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -830, `y` = 559, `z` = 4, `heading` = 176, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 14 AND `player_deity` = 208 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -830, `y` = 559, `z` = 4, `heading` = 176, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 14 AND `player_deity` = 215 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -830, `y` = 559, `z` = 4, `heading` = 176, `zone_id` = 62, `bind_id` = 0, `start_zone` = 62, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 14 AND `player_deity` = 396 AND `player_race` = 5;
UPDATE `start_zones` SET `x` = -295, `y` = 3, `z` = 3.31, `heading` = 192, `zone_id` = 61, `bind_id` = 0, `start_zone` = 61, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 10 AND `player_class` = 3 AND `player_deity` = 215 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -511, `y` = 2113, `z` = -182.06, `heading` = 80, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 1 AND `player_deity` = 201 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -442, `y` = 854, `z` = -30.12, `heading` = 96, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 1 AND `player_deity` = 202 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -442, `y` = 854, `z` = -30.12, `heading` = 96, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 1 AND `player_deity` = 211 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -442, `y` = 854, `z` = -30.12, `heading` = 96, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -401, `y` = 2091, `z` = -182.06, `heading` = 45, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 2 AND `player_deity` = 201 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -549, `y` = 1191, `z` = -40.09, `heading` = 192, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 2 AND `player_deity` = 202 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -549, `y` = 1191, `z` = -40.09, `heading` = 192, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 2 AND `player_deity` = 205 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -553, `y` = 1231, `z` = -40.09, `heading` = 64, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 3 AND `player_deity` = 202 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -443, `y` = 2132, `z` = -182.06, `heading` = 32, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 5 AND `player_deity` = 201 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -497, `y` = 2073, `z` = -182.06, `heading` = 176, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 9 AND `player_deity` = 201 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -596, `y` = 1231, `z` = -54.09, `heading` = 240, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 9 AND `player_deity` = 202 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -596, `y` = 1231, `z` = -54.09, `heading` = 240, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 9 AND `player_deity` = 205 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -596, `y` = 1231, `z` = -54.09, `heading` = 240, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -406, `y` = 2086, `z` = -182.06, `heading` = 0, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 11 AND `player_deity` = 201 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -585, `y` = 2040, `z` = -182.06, `heading` = 160, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 12 AND `player_deity` = 201 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -992, `y` = 1065, `z` = 29.88, `heading` = 128, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 12 AND `player_deity` = 202 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -992, `y` = 1065, `z` = 29.88, `heading` = 128, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 12 AND `player_deity` = 213 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -992, `y` = 1065, `z` = 29.88, `heading` = 128, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 12 AND `player_deity` = 396 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -588, `y` = 2037, `z` = -182.06, `heading` = 128, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 13 AND `player_deity` = 201 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -1023, `y` = 1093, `z` = 29.88, `heading` = 240, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 13 AND `player_deity` = 202 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -1023, `y` = 1093, `z` = 29.88, `heading` = 240, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 13 AND `player_deity` = 396 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -588, `y` = 2036, `z` = -182.06, `heading` = 96, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 14 AND `player_deity` = 201 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -993, `y` = 1092, `z` = 29.88, `heading` = 48, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 14 AND `player_deity` = 202 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = -993, `y` = 1092, `z` = 29.88, `heading` = 48, `zone_id` = 55, `bind_id` = 0, `start_zone` = 55, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 11 AND `player_class` = 14 AND `player_deity` = 396 AND `player_race` = 12;
UPDATE `start_zones` SET `x` = 16, `y` = -477, `z` = 59.72, `heading` = 32, `zone_id` = 106, `bind_id` = 0, `start_zone` = 106, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 12 AND `player_class` = 1 AND `player_deity` = 203 AND `player_race` = 128;
UPDATE `start_zones` SET `x` = -189, `y` = 1027, `z` = 73.72, `heading` = 128, `zone_id` = 106, `bind_id` = 0, `start_zone` = 106, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 12 AND `player_class` = 5 AND `player_deity` = 203 AND `player_race` = 128;
UPDATE `start_zones` SET `x` = -50, `y` = 421, `z` = 6.75, `heading` = 64, `zone_id` = 106, `bind_id` = 0, `start_zone` = 106, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 12 AND `player_class` = 7 AND `player_deity` = 203 AND `player_race` = 128;
UPDATE `start_zones` SET `x` = -189, `y` = 1017, `z` = 18.75, `heading` = 0, `zone_id` = 106, `bind_id` = 0, `start_zone` = 106, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 12 AND `player_class` = 10 AND `player_deity` = 203 AND `player_race` = 128;
UPDATE `start_zones` SET `x` = 761, `y` = 316, `z` = 76.72, `heading` = 64, `zone_id` = 82, `bind_id` = 0, `start_zone` = 82, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 12 AND `player_class` = 11 AND `player_deity` = 203 AND `player_race` = 128;
UPDATE `start_zones` SET `x` = -204, `y` = 1040, `z` = 45.72, `heading` = 0, `zone_id` = 106, `bind_id` = 0, `start_zone` = 106, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 12 AND `player_class` = 15 AND `player_deity` = 203 AND `player_race` = 128;
UPDATE `start_zones` SET `x` = -535, `y` = -143, `z` = -259, `heading` = 64, `zone_id` = 155, `bind_id` = 0, `start_zone` = 155, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 13 AND `player_class` = 1 AND `player_deity` = 396 AND `player_race` = 130;
UPDATE `start_zones` SET `x` = 529, `y` = -3, `z` = -103.6, `heading` = 0, `zone_id` = 155, `bind_id` = 0, `start_zone` = 155, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 13 AND `player_class` = 8 AND `player_deity` = 396 AND `player_race` = 130;
UPDATE `start_zones` SET `x` = -300, `y` = 190, `z` = -247.5, `heading` = 64, `zone_id` = 155, `bind_id` = 0, `start_zone` = 155, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 13 AND `player_class` = 9 AND `player_deity` = 396 AND `player_race` = 130;
UPDATE `start_zones` SET `x` = 100, `y` = 55, `z` = -259.5, `heading` = 128, `zone_id` = 155, `bind_id` = 0, `start_zone` = 155, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 13 AND `player_class` = 10 AND `player_deity` = 396 AND `player_race` = 130;
UPDATE `start_zones` SET `x` = 76, `y` = 318, `z` = -259.6, `heading` = 80, `zone_id` = 155, `bind_id` = 0, `start_zone` = 155, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 13 AND `player_class` = 15 AND `player_deity` = 396 AND `player_race` = 130;
UPDATE `start_zones` SET `x` = 50, `y` = 70, `z` = -258.1, `heading` = 128, `zone_id` = 155, `bind_id` = 0, `start_zone` = 155, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 13 AND `player_class` = 16 AND `player_deity` = 396 AND `player_race` = 130;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 202 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 204 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 205 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 208 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 209 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 210 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 211 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 213 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 214 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 215 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 216 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 396 AND `player_race` = 1;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 202 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 204 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 205 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 208 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 209 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 210 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 211 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 213 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 214 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 215 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 216 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = -920, `y` = -1080, `z` = 12.43, `heading` = 96, `zone_id` = 382, `bind_id` = 0, `start_zone` = 382, `bind_x` = 0, `bind_y` = 0, `bind_z` = 0, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 8 AND `player_deity` = 396 AND `player_race` = 7;
UPDATE `start_zones` SET `x` = 368, `y` = -1622, `z` = 0.41, `heading` = 144, `zone_id` = 50, `bind_id` = 0, `start_zone` = 50, `bind_x` = 343, `bind_y` = -1676, `bind_z` = -0.2, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 1 AND `player_deity` = 208 AND `player_race` = 330;
UPDATE `start_zones` SET `x` = 2037, `y` = -1889, `z` = 1.4, `heading` = 64, `zone_id` = 50, `bind_id` = 0, `start_zone` = 50, `bind_x` = 343, `bind_y` = -1676, `bind_z` = -0.2, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 2 AND `player_deity` = 206 AND `player_race` = 330;
UPDATE `start_zones` SET `x` = 346, `y` = -1697, `z` = 0.81, `heading` = 150, `zone_id` = 50, `bind_id` = 0, `start_zone` = 50, `bind_x` = 343, `bind_y` = -1676, `bind_z` = -0.2, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 2 AND `player_deity` = 208 AND `player_race` = 330;
UPDATE `start_zones` SET `x` = 340, `y` = -1690, `z` = 0.69, `heading` = 32, `zone_id` = 50, `bind_id` = 0, `start_zone` = 50, `bind_x` = 343, `bind_y` = -1676, `bind_z` = -0.2, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 3 AND `player_deity` = 208 AND `player_race` = 330;
UPDATE `start_zones` SET `x` = 2132, `y` = -1764, `z` = 1.52, `heading` = 32, `zone_id` = 50, `bind_id` = 0, `start_zone` = 50, `bind_x` = 343, `bind_y` = -1676, `bind_z` = -0.2, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 5 AND `player_deity` = 206 AND `player_race` = 330;
UPDATE `start_zones` SET `x` = 2114, `y` = -1764, `z` = 1.16, `heading` = 224, `zone_id` = 50, `bind_id` = 0, `start_zone` = 50, `bind_x` = 343, `bind_y` = -1676, `bind_z` = -0.2, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 9 AND `player_deity` = 206 AND `player_race` = 330;
UPDATE `start_zones` SET `x` = 420, `y` = -1679, `z` = 1.76, `heading` = 80, `zone_id` = 50, `bind_id` = 0, `start_zone` = 50, `bind_x` = 343, `bind_y` = -1676, `bind_z` = -0.2, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 10 AND `player_deity` = 208 AND `player_race` = 330;
UPDATE `start_zones` SET `x` = 1959, `y` = -2035, `z` = 0.54, `heading` = 128, `zone_id` = 50, `bind_id` = 0, `start_zone` = 50, `bind_x` = 343, `bind_y` = -1676, `bind_z` = -0.2, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 11 AND `player_deity` = 206 AND `player_race` = 330;
UPDATE `start_zones` SET `x` = 298, `y` = -1634, `z` = 0.41, `heading` = 208, `zone_id` = 50, `bind_id` = 0, `start_zone` = 50, `bind_x` = 343, `bind_y` = -1676, `bind_z` = -0.2, `select_rank` = 50 WHERE `player_choice` = 14 AND `player_class` = 12 AND `player_deity` = 208 AND `player_race` = 330;


Stubbay 06-19-2019 11:53 PM

Quote:

Originally Posted by Huppy (Post 262840)
It helps to back back up your database (before editing, and along the way) But keep in mind, when it comes to changing or altering the start zone for a toon, it has to be set in the char_create_combinations as well. The following sql query will set your start_zones table back to default settings:



Oh gawd, thank you. I needed this. I didn't realize, until too late, that one of the steps from the other post cleared everything out, in that spl DB/file. I was literally about to look up how to restore it, when I thought to check back here. Lifesaver!

Stubbay 06-20-2019 12:08 AM

I just realized my char_create_combination table is completely blank. Don't suppose anyone has a Query for that? I'm trying to find the answer, as I type, but hoping for another assist... lol

Huppy 06-20-2019 12:14 AM

In that case, with a blank table you would need an insert query :
Code:

INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 201, 45, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 207, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 212, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 396, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 211, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 201, 45, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 207, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 212, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (54, 1, 3, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (54, 1, 3, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (54, 1, 3, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (54, 1, 3, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (54, 1, 3, 207, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (54, 1, 3, 212, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (55, 1, 4, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (55, 1, 4, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (55, 1, 4, 207, 3, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (55, 1, 4, 215, 3, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (57, 1, 5, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (57, 1, 5, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (57, 1, 5, 201, 45, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (49, 1, 6, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (49, 1, 6, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (49, 1, 6, 207, 3, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (49, 1, 6, 215, 3, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (52, 1, 7, 210, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (52, 1, 7, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (52, 1, 7, 396, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 209, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 213, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 214, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 210, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 207, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 212, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 396, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 209, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 213, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 211, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 216, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 215, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 214, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 202, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 210, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 205, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 212, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 207, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 201, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 396, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 205, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (53, 1, 11, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (53, 1, 11, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (53, 1, 11, 201, 45, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 213, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 207, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 212, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 201, 45, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 396, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 213, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 212, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 201, 45, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 207, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 396, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 212, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 201, 45, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 207, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 396, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (4, 2, 1, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (4, 2, 1, 214, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (4, 2, 1, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (4, 2, 1, 396, 29, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (4, 2, 1, 214, 29, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (4, 2, 1, 211, 29, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (2, 2, 9, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (2, 2, 9, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (2, 2, 9, 214, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (2, 2, 9, 396, 29, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (2, 2, 9, 205, 29, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (2, 2, 9, 214, 29, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (3, 2, 10, 214, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (3, 2, 10, 214, 29, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (0, 2, 15, 208, 394, 2052);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (0, 2, 15, 214, 394, 2052);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (0, 2, 15, 208, 29, 4);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (0, 2, 15, 214, 29, 4);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (1, 2, 16, 211, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (1, 2, 16, 396, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (1, 2, 16, 214, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (1, 2, 16, 396, 29, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (1, 2, 16, 211, 29, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (1, 2, 16, 214, 29, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (17, 3, 2, 203, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (17, 3, 2, 210, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (17, 3, 2, 209, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (17, 3, 2, 203, 75, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (17, 3, 2, 210, 24, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (17, 3, 2, 209, 24, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (21, 3, 3, 209, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (21, 3, 3, 210, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (21, 3, 3, 209, 24, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (21, 3, 3, 210, 24, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (22, 3, 5, 203, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (22, 3, 5, 203, 75, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (20, 3, 11, 203, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (20, 3, 11, 203, 75, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 12, 209, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 12, 213, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 12, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 12, 210, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 12, 396, 23, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 12, 209, 23, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 12, 213, 23, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 12, 210, 23, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 13, 209, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 13, 210, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 13, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 13, 396, 23, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 13, 209, 23, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (19, 3, 13, 210, 23, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (18, 3, 14, 209, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (18, 3, 14, 210, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (18, 3, 14, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (18, 3, 14, 396, 23, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (18, 3, 14, 210, 23, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (18, 3, 14, 209, 23, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (85, 4, 1, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (85, 4, 1, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (85, 4, 1, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (85, 4, 1, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (85, 4, 1, 396, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (85, 4, 1, 207, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (85, 4, 1, 211, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (85, 4, 1, 215, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (83, 4, 4, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (83, 4, 4, 215, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (82, 4, 6, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (82, 4, 6, 215, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 209, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 214, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 213, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 210, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 396, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 205, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 207, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 208, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 211, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 216, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 215, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 214, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 202, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 213, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 210, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 209, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 212, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (81, 4, 8, 204, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (84, 4, 9, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (84, 4, 9, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (84, 4, 9, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (84, 4, 9, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (84, 4, 9, 396, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (84, 4, 9, 215, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (84, 4, 9, 207, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (84, 4, 9, 205, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (43, 5, 2, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (43, 5, 2, 215, 61, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (46, 5, 3, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (46, 5, 3, 215, 61, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 213, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 396, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 207, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 204, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 213, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 215, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 12, 208, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 13, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 13, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 13, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 13, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 13, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 13, 396, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 13, 207, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 13, 208, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 13, 215, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (45, 5, 13, 204, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (44, 5, 14, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (44, 5, 14, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (44, 5, 14, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (44, 5, 14, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (44, 5, 14, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (44, 5, 14, 396, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (44, 5, 14, 207, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (44, 5, 14, 204, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (44, 5, 14, 215, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (44, 5, 14, 208, 62, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (11, 6, 1, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (11, 6, 1, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (11, 6, 1, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (11, 6, 1, 396, 41, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (11, 6, 1, 211, 41, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (11, 6, 1, 206, 41, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (5, 6, 2, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (5, 6, 2, 206, 42, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (10, 6, 5, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (10, 6, 5, 206, 42, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (9, 6, 9, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (9, 6, 9, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (9, 6, 9, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (9, 6, 9, 396, 42, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (9, 6, 9, 205, 42, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (9, 6, 9, 206, 42, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (8, 6, 11, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (8, 6, 11, 206, 42, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (7, 6, 12, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (7, 6, 12, 213, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (7, 6, 12, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (7, 6, 12, 396, 41, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (7, 6, 12, 206, 41, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (7, 6, 12, 213, 41, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (7, 6, 13, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (7, 6, 13, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (7, 6, 13, 396, 41, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (7, 6, 13, 206, 41, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (6, 6, 14, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (6, 6, 14, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (6, 6, 14, 396, 41, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (6, 6, 14, 206, 41, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 214, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 209, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 396, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 211, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 215, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 214, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 209, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 212, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 201, 45, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 207, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 396, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 211, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 214, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 209, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (33, 7, 3, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (33, 7, 3, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (33, 7, 3, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (33, 7, 3, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (33, 7, 3, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (33, 7, 3, 207, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (33, 7, 3, 215, 61, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (33, 7, 3, 212, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (34, 7, 4, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (34, 7, 4, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (34, 7, 4, 207, 3, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (34, 7, 4, 215, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (34, 7, 4, 215, 3, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (32, 7, 6, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (32, 7, 6, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (32, 7, 6, 207, 3, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (32, 7, 6, 215, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (32, 7, 6, 215, 3, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 210, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 214, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 213, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 209, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 208, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 396, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 212, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 214, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 202, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 213, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 210, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 209, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 205, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 207, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 211, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 216, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 215, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 396, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 211, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 216, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 215, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 214, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 202, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 213, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 210, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 209, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 205, 1, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 204, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 212, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 215, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 396, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 205, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 201, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 207, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 212, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 215, 54, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 396, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 205, 2, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (16, 8, 1, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (16, 8, 1, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (16, 8, 1, 396, 60, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (16, 8, 1, 202, 60, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (13, 8, 2, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (13, 8, 2, 202, 67, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (14, 8, 3, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (14, 8, 3, 202, 67, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (15, 8, 9, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (15, 8, 9, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (15, 8, 9, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (15, 8, 9, 396, 67, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (15, 8, 9, 205, 67, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (15, 8, 9, 202, 67, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (12, 8, 16, 202, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (12, 8, 16, 205, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (12, 8, 16, 396, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (12, 8, 16, 396, 67, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (12, 8, 16, 205, 67, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (12, 8, 16, 202, 67, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (74, 9, 1, 203, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (74, 9, 1, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (74, 9, 1, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (74, 9, 1, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (74, 9, 1, 396, 52, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (74, 9, 1, 206, 52, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (74, 9, 1, 211, 52, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (74, 9, 1, 203, 52, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (72, 9, 5, 203, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (72, 9, 5, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (72, 9, 5, 203, 52, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (72, 9, 5, 206, 52, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (73, 9, 10, 203, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (73, 9, 10, 206, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (73, 9, 10, 203, 52, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (73, 9, 10, 206, 52, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (70, 9, 15, 203, 394, 2052);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (70, 9, 15, 206, 394, 2052);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (70, 9, 15, 203, 52, 4);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (70, 9, 15, 206, 52, 4);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (71, 9, 16, 203, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (71, 9, 16, 211, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (71, 9, 16, 396, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (71, 9, 16, 206, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (71, 9, 16, 396, 52, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (71, 9, 16, 211, 52, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (71, 9, 16, 203, 52, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (71, 9, 16, 206, 52, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (107, 10, 1, 203, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (107, 10, 1, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (107, 10, 1, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (107, 10, 1, 396, 49, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (107, 10, 1, 203, 49, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (107, 10, 1, 211, 49, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (67, 10, 5, 203, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (67, 10, 5, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (67, 10, 5, 203, 49, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (67, 10, 5, 211, 49, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (68, 10, 10, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (68, 10, 10, 211, 49, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (65, 10, 15, 211, 394, 2052);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (65, 10, 15, 211, 49, 4);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (108, 10, 16, 203, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (108, 10, 16, 396, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (108, 10, 16, 211, 394, 2112);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (108, 10, 16, 396, 49, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (108, 10, 16, 211, 49, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (108, 10, 16, 203, 49, 64);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (42, 11, 1, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (42, 11, 1, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (42, 11, 1, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (42, 11, 1, 396, 19, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (42, 11, 1, 211, 19, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (42, 11, 1, 202, 19, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (37, 11, 2, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (37, 11, 2, 205, 19, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (39, 11, 3, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (39, 11, 3, 207, 19, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (40, 11, 4, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (40, 11, 4, 207, 19, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (38, 11, 6, 207, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (38, 11, 6, 207, 19, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (41, 11, 9, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (41, 11, 9, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (41, 11, 9, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (41, 11, 9, 396, 19, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (41, 11, 9, 205, 19, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (41, 11, 9, 202, 19, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (30, 12, 1, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (30, 12, 1, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (30, 12, 1, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (30, 12, 1, 211, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (30, 12, 1, 396, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (30, 12, 1, 211, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (30, 12, 1, 202, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (30, 12, 1, 201, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (23, 12, 2, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (23, 12, 2, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (23, 12, 2, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (23, 12, 2, 201, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (23, 12, 2, 202, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (23, 12, 2, 205, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (27, 12, 3, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (27, 12, 3, 202, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (29, 12, 5, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (29, 12, 5, 201, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (28, 12, 9, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (28, 12, 9, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (28, 12, 9, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (28, 12, 9, 205, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (28, 12, 9, 396, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (28, 12, 9, 201, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (28, 12, 9, 202, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (28, 12, 9, 205, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (26, 12, 11, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (26, 12, 11, 201, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 12, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 12, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 12, 213, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 12, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 12, 396, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 12, 201, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 12, 202, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 12, 213, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 13, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 13, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 13, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 13, 396, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 13, 202, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (25, 12, 13, 201, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (24, 12, 14, 201, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (24, 12, 14, 396, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (24, 12, 14, 202, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (24, 12, 14, 396, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (24, 12, 14, 201, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (24, 12, 14, 202, 55, 0);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (64, 128, 1, 203, 394, 2059);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (64, 128, 1, 203, 106, 1);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (62, 128, 5, 203, 394, 2059);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (62, 128, 5, 203, 106, 1);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (60, 128, 7, 203, 394, 2059);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (60, 128, 7, 203, 106, 1);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (63, 128, 10, 203, 394, 2059);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (63, 128, 10, 203, 106, 1);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (61, 128, 11, 203, 394, 2059);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (61, 128, 11, 203, 82, 1);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (59, 128, 15, 203, 394, 2053);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (59, 128, 15, 203, 106, 5);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (80, 130, 1, 396, 394, 2052);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (80, 130, 1, 396, 155, 4);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (75, 130, 8, 396, 394, 2052);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (75, 130, 8, 396, 155, 4);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (78, 130, 9, 396, 394, 2052);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (78, 130, 9, 396, 155, 4);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (79, 130, 10, 396, 394, 2052);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (79, 130, 10, 396, 155, 4);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (76, 130, 15, 396, 394, 2052);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (76, 130, 15, 396, 155, 4);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (77, 130, 16, 396, 394, 2116);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (77, 130, 16, 396, 155, 68);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (92, 330, 1, 208, 394, 2064);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (92, 330, 1, 208, 50, 16);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (86, 330, 2, 206, 394, 2064);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (86, 330, 2, 208, 394, 2064);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (86, 330, 2, 206, 50, 16);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (86, 330, 2, 208, 50, 16);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (88, 330, 3, 208, 394, 2064);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (88, 330, 3, 208, 50, 16);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (90, 330, 5, 206, 394, 2064);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (90, 330, 5, 206, 50, 16);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (89, 330, 9, 206, 394, 2064);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (89, 330, 9, 206, 50, 16);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (91, 330, 10, 208, 394, 2064);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (91, 330, 10, 208, 50, 16);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (87, 330, 11, 206, 394, 2064);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (87, 330, 11, 206, 50, 16);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (93, 330, 12, 208, 394, 2064);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (93, 330, 12, 208, 50, 16);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (94, 522, 1, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (95, 522, 2, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (96, 522, 3, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (97, 522, 4, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (98, 522, 5, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (99, 522, 6, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (100, 522, 7, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (101, 522, 8, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (102, 522, 9, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (103, 522, 11, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (104, 522, 12, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (105, 522, 13, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (106, 522, 14, 216, 394, 2048);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (54, 1, 3, 208, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (54, 1, 3, 204, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 396, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 216, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 215, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 214, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 213, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 211, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 210, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 209, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 208, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 205, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 204, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (31, 7, 8, 202, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 396, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 216, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 215, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 214, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 213, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 211, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 210, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 209, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 208, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 205, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 204, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (47, 1, 8, 202, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 396, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 211, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 208, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 206, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (58, 1, 1, 204, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 396, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 205, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (35, 7, 9, 204, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 396, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 214, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 211, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 209, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 208, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 206, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (36, 7, 1, 204, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 396, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 208, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 206, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (50, 1, 14, 204, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 396, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 208, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 206, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 13, 204, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 396, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 206, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 205, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (56, 1, 9, 204, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 208, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 206, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (48, 1, 2, 204, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (33, 7, 3, 208, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (33, 7, 3, 204, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 396, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 213, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 208, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 206, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (51, 1, 12, 204, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (53, 1, 11, 206, 382, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (52, 1, 7, 210, 383, 1024);
INSERT INTO `char_create_combinations`(`allocation_id`, `race`, `class`, `deity`, `start_zone`, `expansions_req`) VALUES (57, 1, 5, 206, 382, 1024);


Stubbay 06-20-2019 12:28 AM

Quote:

Originally Posted by Huppy (Post 262843)
In that case, with a blank table you would need an insert query :

You sir, have saved my butt, about 4x, this week. Thank you, seriously.

Stubbay 06-20-2019 12:40 AM

I've just had a thougbt... I keep testing with Frogloks... But Grobb is back under Troll control. Are my Frogloks being dumped in South Qeynos because there is technically, not Gukta? Do I need to rebuild that zone, or a replacement zone, for my little froggies to go?

Edit: My Expansion setting is 23 )(LoY 16, SoL 4, SoV 2, RoK 1), for reference.

Huppy 06-20-2019 01:40 AM

By default, frogs start in rathe mountains. Been that way for many years. If the start zones are not working with the correct (default) settings, something you got going on is a little screwy, lol

Stubbay 06-20-2019 02:02 AM

Quote:

Originally Posted by Huppy (Post 262846)
By default, frogs start in rathe mountains. Been that way for many years. If the start zones are not working with the correct (default) settings, something you got going on is a little screwy, lol

lol. I haven't checked each race, yet. From the couple I have tried, it does seem to be the Frogloks, specifically, though.

It's been ages since I played live (even after the fooled me, by saying the game was free-to-play, and I had a "silver" membership). I think LDoN was the last one I played.

Looks like I have some numbers, to stare at >.<

Stubbay 06-20-2019 06:56 AM

Curently, my issue is trying to find the db file(s) that pertain to character creation. At character creation, the town my Frogs are allowed to start in, is still referred to as Gukta, when I assume it should say Rathe.

I have tried it with multiple frogs, and multiple classes, and continue to be spit out, in South Qeynos.

The other potential I'm looking at, is if the x/y/z coords, are potentially to blame.

Otherwise, my start_zones & char_create_combinations, appear to have the correct ID's.

Huppy 06-20-2019 10:42 AM

Quote:

Originally Posted by Stubbay (Post 262848)
Curently, my issue is trying to find the db file(s) that pertain to character creation.

Those two database tables is the answer to your own question. When your database is sourced in, (and ultimately updated), it consists of over 200+ tables. Those tables, the columns and fields/values inside them, is what makes up your entire peq database. As for what database editing program or utility that each individual uses, is a personal preference. I use Navicat to access my database. This is what I see when I do that. (not all 218 tables are viewable in screenshot).

https://i.ibb.co/7CHh0RQ/peqdb001.jpg

Stubbay 06-22-2019 02:19 AM

After some time, I reinstalled the entire server. I wanted to be sure I hadn't done something along the way, I didn't mean to, or hadn't known would screw me.

I've been playing about in the DB, using Heidi, and it's starting to make more sense to me.

I now, see, however, that this is my problem:

HTML Code:

[Update] No script update necessary...
[Error:eqemu_server.pl] MySQL path not found, please add the path for automatic database upgrading to continue...

##deleted info that seemed unnecessary to the post

[World Server] Account (Stubbay) Logging(Out) to character select :: LSID: 2
[World Server] Found 'TitaniumStartZoneID' rule setting: -1
[Status] SoF Start zone query: SELECT x, y, z, heading, start_zone, bind_id, bind_x, bind_y, bind_z FROM start_zones WHERE zone_id = 14 AND player_class = 1 AND player_deity = 208 AND player_race = 330

#this happens with EVERY character, as I found as I tested further.
#Frogloks just happen to be the most obvious, as they wound up in S.Qeynos. Other races were dropped in default positions inside their own cities.

No start_zones entry in database, using defaults
[World Server] (Pajeciti) Zoning from character select qeynos (Zone ID 1: Instance ID: 0)
[World Server] Account (Stubbay) Logging(Out) to character select :: LSID: 2


I've been attempting to point the eqemu_server.pl to my MariaDB folder, by editing the "get_mysql_path" lines, around about line 990. No matter what format I used, I couldn't get it to use the path I manually inserted.

I suspect the problem is that my MariaDB folder is actually labeled "MariaDB 10.0". The server file is looking for "MariaDB/i". I realize the "i" is for the "include" folder, but as you'll see below, I was concerned by how the filepath was stated.

I came to this conclusion, when I had changed my MariaDB folder name from "MariaDB 10.0" to "MariaDB", because I suddenly couldn't run MySQL.exe, nor could I find any way to alter the filepath (MySQL.exe) to the right one.

What I believe is the offending code from eqemu_Server.pl:

HTML Code:

sub get_mysql_path {
    if ($OS eq "Windows") {
        $has_mysql_path = `echo %PATH%`;
        if ($has_mysql_path =~ /MySQL|MariaDB/i) {
            @mysql = split(';', $has_mysql_path);
            foreach my $v (@mysql) {
                if ($v =~ /MySQL|MariaDB/i) {
                    $v =~ s/\n//g;
                    $path = trim($v) . "/mysql";
                    last;
                }
            }
        }

I have tried replacing the MariaDB portions to the full file path, partials, quoted, quoted in sections, and just about every syntax I could think of or find, online.

For all I know, I'm doing this all wrong, but I wanted to try and figure it out, myself. After about 5hrs (plus the about 2 days, I've been stuck on this problem as a whole), I'm not sure what to do lol.

EDIT: The more I look at the prompts for World, Zone, etc., the more I think I was in the wrong place. They appear to access the MySQL just fine; the server loads, and seems playable (although, i've only had a chance to run around and test the spawn points loc's).

Stubbay 06-22-2019 08:05 AM

UPDATE: PARTIALLY SOLVED!

Ok, so as it turns out, I was missing Environmental Variables, for the Windows Command Prompt to work with. This post led me to that answer. But here's the short version!

Fixing: [Error:eqemu_server.pl] MySQL path not found, please add the path for automatic database upgrading to continue...
  1. (note: this is for Windows 10; see above post for link to article for older versions): Navigate to Control Panel > View Advanced Sysytem Settings
  2. Click "Environmental Variable"; scroll down to "path"; select and hit edit
  3. Hit "New"; Hit "Browse";navigate to your MariaDB\bin folder; Hit Ok.
  4. Repeat the above process for: MariaDB\Include; MariaDB\Data.
  5. Once completed, hit "Ok" on your window.
  6. (I can't be sure this part work, BUT I also did this): I added these, to the PATHEXT field (in the Environmental Variables window): .H;.PDB;/PL;.FRM

HOWEVER, I'm still experiencing the problem with Starting Zones. I've seen a couple other posts but no answers. The server appears to be using the variable (peq>start_zones) player_choice (i.e. Gukta on the character creation screen for starting zone) to identify the starting zone, instead of zone_id.

One person had an issue with expansions not being locked out, and it was simply about setting rules_values > World:UseClientBasedExpansionSettings > false. I've done this, and am still popping up in places, I shouldn't be. My quest continues.

Stubbay 06-22-2019 10:41 AM

I'm way too tired at the moment to try this, but is it possible that the difference in DB and table entry names, could be to blame?

example: in char_create_combinations, it's listed as start_zone, where as, the DB file is labeled start_zones?

Huppy 06-22-2019 06:43 PM

Quote:

Originally Posted by Stubbay (Post 262859)
I'm way too tired at the moment to try this, but is it possible that the difference in DB and table entry names, could be to blame?

example: in char_create_combinations, it's listed as start_zone, where as, the DB file is labeled start_zones?

In the database, you have tables, (not files), each of those tables (like char_create_combinations) will have columns with fields/values in them. So you will see a column named "start_zone" inside a table, but you may see another table named "start_zones", which will have all it's own columns with the fields/values in them. The odd things that are happening for you are unique and specific to something on your server setup. It's just a matter of finding out what has gone wrong. Sometimes, it could be something conflicting between your server (and/or) it's settings and your client. Troubleshooting can be overwhelming for some issues. If you are having issues with an absolute clean server/database (no custom editing), then there may be other problems that are getting overlooked. Example: Do you have these character create problems with a complete default server install? If it works smoothly, then tracing your steps back to when it first happened may help to find out what happened.
I know you may have difficulty understanding the database and (possibly), the problems you experience, but one thing I can assure you, the default server, as a whole, functions as intended. I am constantly goofing around testing (abnormal) things, then when I am done, I delete the whole database and download a fresh copy, which functions, as it should with all it's default settings. Sometimes, when there is updated source code (for the binaries), I will re-compile those as well.
In most cases, the reason anyone has issues with part of a server not working properly, it's something that happened on their end.(on their computer). This could be anything from a needed app that wasn't installed correctly, to configs that were edited wrong, or databases that got edited and/or corrupt in some way that caused a malfuntion. I just installed a fresh database last night and it's working as expected, with all it's default settings. That whole process, including getting it fully updated only takes me about 10 minutes.
But that's something anyone can do, once they have the knowledge and experience to work with these servers. It also helps to have some more advanced knowledge of your computer. (files, folders, apps, etc.). Believe me, 25 years ago, when I had absolutely no knowledge of computers, if I would of came to a site like this, I would of shut my puter off and went back to my nintendo ;)
Before I did start monkeying with this project 9 years ago, I had never dabbled in anything related to perl, sql or databases. I had no experience at all. A lot of reading, trials and tribulations learning the basics of it all. But because this whole Emu project is forever improving and evolving, the learning never stops. It's a lot easier when someone stays on top of it, rather than going awol for awhile and coming back to a brand new chapter. For those simply using the installer and the updater, it's not a concern anymore, but for many doing custom work, manual installs and updates, it can be tedious reviving an old server and getting it up to date without breaking it. (custom content).

Stubbay 06-22-2019 07:56 PM

Thanks for the big feedback. I thought I was using the wrong terminology, but I wasn't sure.

The table names thought, came to me while half-asleep, and having stared at the screen for something like 14hrs, and now makes more sense to me lol.

I'm trying to recall, if I tried a new toon, on the fresh server, prior to fixing the Environmental issue, and making any changes. I don't think I did. I think now that one issue is out of the way, it's time to start a fresh folder (or perhaps, walk back some of the major changes I made), and see what happens. Suppose the best thing I should do, is make one change, then see how it affects the server.

I think my frustration and, let's say, lack of knowledge, led me to overthinking and not slowing it down lol

Stubbay 06-22-2019 10:09 PM

STATUS UPDATE

-Deleted the Server Folder
-Uninstalled Perl
-Uninstalled MariaDB
-Deleted any left behind folders.
-Restarted PC
-Ran CCleaner directory cleaner
-Unzipped server archive into folder on my D: drive (My SSD)
-Ran installer
-Installer eventually fails "MySQL path not found..."
-Update Environmental Variables
-Server install proceeds -> Complete
-modify "login_server2" in config.json file to reflect LAN ip
-Boot up server "t_start_server_with_loginserver"
-error logging into loginserver (presumably because I've not inputted any login credentials)
HTML Code:

[Login Server] Logging System Init.
[Login Server] Config System Init.
[Login Server] MySQL Database Init.
[Login Server] Server Manager Initialize.
[Login Server] Client Manager Initialize.
[Login Server] Server Started.
[Login Server] New world server connection from 10.0.0.46:53156
[Error] Handle_NewLSInfo error, remote address was null, defaulting to stream address (myip)
[World Server] Server Akkas Windows PEQ Installer (GiElst)(Akkas PEQ Installer) did not attempt to log in but unregistered servers are allowed.

-log on to server
-make Froglok Warrior
-spit out in South Qeynos >:|
-"No start_zones entry in database, using defaults" under World.exe prompt

HTML Code:

[World Server] Loading server configuration..
[World Server] CURRENT_VERSION: 1.1.3
[World Server] Added loginserver (myip):5998
[World Server] Added loginserver login.eqemulator.net:5998
[World Server] Connecting to MySQL root@localhost:3306...
[Status] Starting File Log 'logs/world_10852.log'
[World Server] Checking Database Conversions..
[Update] No script update necessary...
[Info] For EQEmu Server management utilities - run eqemu_server.pl
[Update] Database up to date...
[World Server] Loading variables..
[World Server] Purging expired data buckets...
[World Server] Loading zones..
[World Server] Clearing groups..
[World Server] Clearing raids..
[World Server] Clearing inventory snapshots..
[World Server] Loading items..
[World Server] Loading skill caps..
[World Server] Loading guilds..
[World Server] Loaded default rule set 'default'
[World Server] Initialized dynamic dictionary entries
[World Server] Loading EQ time of day..
[World Server] Loading launcher list..
[World Server] Reboot zone modes OFF
[World Server] Deleted 0 stale player corpses from database
[World Server] Loading adventures...
[World Server] Purging expired instances
[World Server] Loading char create info...
[World Server] Console (TCP) listener started.
[World Server] Server (TCP) listener started.
[World Server] New Zone Server connection from 6f2a9ed4-d920-4168-a080-377be4d7a77b at 127.0.0.1:53174
[World Server] New Zone Server connection from 4a24a873-a48c-4634-ae4c-1d2656412766 at 127.0.0.1:53175
[World Server] New Zone Server connection from 30fc21f4-c571-4461-baa0-5f7dc9eff42c at 127.0.0.1:53177
[World Server] New Zone Server connection from 32b95c42-fcfd-4ba5-bfa0-e71563bfa05b at 127.0.0.1:53178
[World Server] New Zone Server connection from b9646fb0-fe50-4bc6-97c4-96394b606349 at 127.0.0.1:53181
[World Server] New Zone Server connection from 3f482070-9b10-41bc-8ff0-f6952d90e5e8 at 127.0.0.1:53179
[World Server] New Zone Server connection from 6e4280de-6dcb-44a2-8b96-2e8a24878eae at 127.0.0.1:53180
[World Server] New Zone Server connection from 33a29d6c-f12b-415d-b588-16c9e76658ea at 127.0.0.1:53183
[World Server] New Zone Server connection from 627e53d7-2e85-4239-9f6c-fac9c561609c at 127.0.0.1:53182
[World Server] New Zone Server connection from 10338048-92dd-4db2-a53d-c875163cbb5c at 127.0.0.1:53185
[World Server] New Zone Server connection from 1ca7c84f-c013-45fe-a63a-8c79501ecfd4 at 127.0.0.1:53186
[World Server] New Zone Server connection from fe974175-14f0-4bba-aee2-5c604272af64 at 127.0.0.1:53187
[World Server] New Zone Server connection from 6fa4c9d8-1a8b-4c1a-a270-1c428f6216a5 at 127.0.0.1:53192
[World Server] New Query Server connection from 9b46c921-fc4b-4e1a-9a30-38472cf065ac at 127.0.0.1:53194
[World Server] New Zone Server connection from b0fa102a-5688-4147-bbd3-2d58274fbb71 at 127.0.0.1:53195
[World Server] New UCS Server connection from c01bece6-123b-43dd-b125-66bdacc73cf6 at 127.0.0.1:53197
[World Server] New Zone Server connection from b480cc78-5eed-47db-bfb8-db49774d6c5c at 127.0.0.1:53198
[World Server] New Zone Server connection from 1550d01c-e3a0-4196-a3d5-577584c0a49e at 127.0.0.1:53199
[World Server] New Zone Server connection from 1539e3cb-22bf-4013-a917-b01075901bb2 at 127.0.0.1:53200
[World Server] New Zone Server connection from f7cd5530-b880-42a0-b1d3-52d29fe48fe2 at 127.0.0.1:53201
[World Server] New Zone Server connection from a3d12878-f078-4457-8a80-d4d755183856 at 127.0.0.1:53202
[World Server] New Zone Server connection from e81429b6-6db7-4d86-8c20-19e4de40708d at 127.0.0.1:53203
[World Server] New Zone Server connection from 36d1bfce-7372-45a8-aa50-ac6b2cfe9e62 at 127.0.0.1:53204
[World Server] New Zone Server connection from b552c8e0-d41b-4316-a1da-e87019a7c984 at 127.0.0.1:53205
[World Server] New Zone Server connection from cbd1b6b4-ad33-423a-a121-438dd7ae4786 at 127.0.0.1:53206
[World Server] New Zone Server connection from 47589c77-7bda-4677-b36f-338d2070ef85 at 127.0.0.1:53207
[World Server] New Zone Server connection from f0df5811-9260-40d1-8c6d-2fd0c9ac38d0 at 127.0.0.1:53210
[World Server] New Zone Server connection from 228127bd-3f12-4f8b-8971-d12364842c49 at 127.0.0.1:53209
[World Server] New Zone Server connection from 517a3010-7078-4521-aae0-66a1dc30aee2 at 127.0.0.1:53208
[World Server] New Zone Server connection from b22e5671-fcb4-4aa1-94fd-54e1f874341f at 127.0.0.1:53212
[World Server] New Zone Server connection from 9820a7b8-1016-4deb-b66d-1655fb385163 at 127.0.0.1:53213
[World Server] New Zone Server connection from 1070c6e2-58f5-4592-b443-84a681312733 at 127.0.0.1:53211

[World Server] Account (Stubbay) Logging(In) to character select :: LSID: 2
[World Server] Found 'TitaniumStartZoneID' rule setting: -1
[Status] SoF Start zone query: SELECT x, y, z, heading, start_zone, bind_id, bind_x, bind_y, bind_z FROM start_zones WHERE zone_id = 14 AND player_class = 1 AND player_deity = 208 AND player_race = 330


No start_zones entry in database, using defaults
[World Server] Attempting autobootup of qeynos (1:0)
[World Server] (Foshir) Zoning from character select qeynos (Zone ID 1: Instance ID: 0)


You also asked for PC specs:
HTML Code:

Operating System: Windows 10 Home 64-bit (10.0, Build 17134) (17134.rs4_release.180410-1804)
                Language: English (Regional Setting: English)
      System Manufacturer: ASUSTeK COMPUTER INC.
            System Model: GL703VM
                    BIOS: GL703VM.309 (type: UEFI)
                Processor: Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz (8 CPUs), ~2.8GHz
                  Memory: 16384MB RAM
      Available OS Memory: 16340MB RAM
                Page File: 7986MB used, 9376MB available
              Windows Dir: C:\WINDOWS
          DirectX Version: DirectX 12

More specifically, an Asus ROG Strix II Laptop.

The only other server software I've ever run, to my knowledge, would be ASM (Ark Server Manager). It was a pretty dummy proof piece of software, where everything was handled in one single window. You simply filled out fields to alter the server, and input mod id's. I uninstalled it, about the time I decided to give this a shot.

Stubbay 06-22-2019 11:52 PM

I knew I forgot something! Took this from the forementioned Froglok Warrior. This happened on all new toons.


https://oi32.photobucket.com/albums/...psfe22udes.png



Is it possible this issue is Client-side? I just remembered that my Titanium folder has been altered to play in P99.

Stubbay 06-23-2019 01:26 AM

Quote:

Originally Posted by Stubbay (Post 262866)


Is it possible this issue is Client-side? I just remembered that my Titanium folder has been altered to play in P99.

Tested with a fresh install of Titanium (because when I setup p99 for this comp, I didn't bother to backup to OG files *cough). No affect, outside of UI changes.

Huppy 06-23-2019 02:51 AM

Sorry Stubbay, I hadn't used Titanium client in a long time, but I just fired it up and logged into that fresh install, and it's definately a client issue with the character creation. I got the same thing as you.
BUT, when I login with an RoF2 client it works as it should. Every toon has it's choice of the classic start zone or Crescent Reach, which is normal. (frogs in rathe mountains). This is with all expansions enabled, no db edits. I'm going to play with this for awhile and see what happens.

Stubbay 06-23-2019 03:34 AM

Quote:

Originally Posted by Huppy (Post 262868)
Sorry Stubbay, I hadn't used Titanium client in a long time, but I just fired it up and logged into that fresh install, and it's definately a client issue with the character creation. I got the same thing as you.
BUT, when I login with an RoF2 client it works as it should. Every toon has it's choice of the classic start zone or Crescent Reach, which is normal. (frogs in rathe mountains). This is with all expansions enabled, no db edits. I'm going to play with this for awhile and see what happens.

Ah, damn... At least, that aides in the diagnostics.

I have forgotten to say, thank you, for the immense amount of IT support you've been giving me. I've seen you all over the board, reading other related posts lol.

Guess I'll take to poking about my client files, then; see if I find anything, in the meantime.

Stubbay 06-23-2019 04:57 AM

Found this, in Everquest\logs\dbg.txt:

HTML Code:

2019-06-22 22:22:10       

##trimmed doen for readability
##about a dozen lines down
##fails to load GlobalDRK_chr

Loading default UI resources.
2019-06-22 22:22:10        Initializing Music.
2019-06-22 22:22:10        Activating Load Screen.
2019-06-22 22:22:11        Display initialized.
2019-06-22 22:22:11        Initializing global data.
2019-06-22 22:22:12        Loading GlobalFroglok_chr
2019-06-22 22:22:12        Loading GlobalPCFroglok_chr
2019-06-22 22:22:12        Loading frogequip
2019-06-22 22:22:12        Loading GlobalSKE_chr2
2019-06-22 22:22:12        Loading GlobalDRK_chr
2019-06-22 22:22:12        Failed to open D:\Sony Dev\EverQuest\GlobalDRK_chr.s3d.
2019-06-22 22:22:12       
2019-06-22 22:22:12        Loading Global_obj
2019-06-22 22:22:12        Loading GEquip
2019-06-22 22:22:13        Loading GEquip8
2019-06-22 22:22:13        Loading GEquip2
2019-06-22 22:22:13        Loading grass
2019-06-22 22:22:13        Loading GEquip5
2019-06-22 22:22:14        Loading GEquip4
2019-06-22 22:22:14        Loading GEquip3

The only anomaly that stood out to me, so far. This file does not exist in my EQ folder. As it's an s3d, though, I assume this is purely a visual file of some sort. When I look for this specific file, online, I get a lot of results related to Luclin models.

Just updating the post, I suppose.


EDIT:Against my better judgment, I decided to take this issue to the folks over at P99. Hopefully, they won't mind my non-P99 issue. I'm using Titanium to play just fine on their server; so, thought it wouldn't hurt to ask.

Stubbay 06-23-2019 09:27 PM

Update: the P99 dbg.txt, shows the same "error". So, I'm guessing this absolutely has nothing to do with the issue. I'm trying to figure out what files/tables/etc., are responsible for communication between the client and server. I assume the issue may be there, but really, I'm taking what I assume are educated guesses.

EDIT:The patch_titanium.conf & opcodes.conf, look oddly similar. I thought "op" was for "other patcher" or something (swear I read that, somewhere). Wondering if this is the culprit; if I can simply steal OP_CharacterCreate from one of the other patch files, such as SoF. May try it. *shrug*


EDIT: Tried the above... caused errors and a crash lol.

I stared at the P99 files, for a while, and the only file that seems like it would have any real effect, was dsetup.dll. I threw this into my client folder, and it did nothing. I'm guessing the issues, have to be server-side, but with how it communicates with Titanium, specifically. At least, I feel like I'm narrowing things down.

Stubbay 06-26-2019 12:11 AM

I've noticed something new, and am not sure if this is considered"normal".


HTML Code:

[Login Server] Logging System Init.
[Login Server] Config System Init.
[Login Server] MySQL Database Init.
[Login Server] Server Manager Initialize.
[Login Server] Client Manager Initialize.
[Login Server] Server Started.
[Login Server] New world server connection from 10.0.0.46:51836
[Error] Handle_NewLSInfo error, remote address was null, defaulting to stream address 10.0.0.46.
[World Server] Server Akkas Windows PEQ Installer (GiElst)(Akkas PEQ Installer) did not attempt to log in but unregistered servers are allowed.
[Login Server] New Titanium client connection from 10.0.0.46:55169
[Login Server] Application packet received from client (size 14)
[Login Server] Session ready received from client.
[Login Server] Application packet received from client (size 36)
[Login Server] Login received from client.
[Login Server] Application packet received from client (size 12)
[Login Server] Server list request received from client.
[Login Server] Application packet received from client (size 16)
[Login Server] Play received from client, server number 2 sequence 5.
[Login Server] Application packet received from client (size 12)
[Login Server] Client disconnected from the server, removing client.  <--- When I select and connect to the private server via server select screen
[Login Server] New Titanium client connection from 10.0.0.46:57339
[Login Server] Application packet received from client (size 14)
[Login Server] Session ready received from client.
[Login Server] Application packet received from client (size 12)
[Login Server] Application packet received from client (size 36)
[Login Server] Login received from client.
[Login Server] Application packet received from client (size 12)
[Login Server] Server list request received from client.
[Login Server] Client disconnected from the server, removing client.

Currently searching around for topics related to this, but so far very little. Nothing that seems specific to Titanium, at least.

Uleat 06-26-2019 12:17 AM

Clients do not stay logged into the login server.

They are handed off to a world server..so, that's normal behavior.

Stubbay 06-26-2019 02:03 AM

Quote:

Originally Posted by Uleat (Post 262890)
Clients do not stay logged into the login server.

They are handed off to a world server..so, that's normal behavior.

Well, that clears that up for me, thank you!

Stubbay 06-26-2019 06:22 AM

Update:Didn't know until today there was a way to get more info out of the logs. Inc wall text! (trimmed for obvious reasons)

HTML Code:

[World Server] Sending EQApplicationPacket OpCode 0x01b3
[Packet :: Server -> Client] [OP_SendCharInfo - 0x01b3] [Size: 1362]
[Packet :: Server -> Client (Dump)] [OP_SendCharInfo - 0x01b3] [Size: 1362]

#I could not actually find this code amongst the opcodes, or other patch files. Wasn't sure if that was significant.

This most definitely struck me as odd. This character was supposed to be a Froglok. I tested this with three other races, and none were anomalous like this was:

HTML Code:

[World Server] Recevied EQApplicationPacket
[World Server] Name approval request. Name=Caroh, race=Piranha, class=Warrior

This is as I finalized the little Froglok Warrior:
HTML Code:

[World Server] Recevied EQApplicationPacket
[World Server] Character creation request from Stubbay LS#2 (10.0.0.46:57568) :
[World Server] Name: Caroh
[World Server] Race: 330  Class: 1  Gender: 1  Deity: 208  Start zone: 14  Tutorial: false
[World Server] STR  STA  AGI  DEX  WIS  INT  CHA    Total
[World Server] 105  90  105  100  75  75  50    600
[World Server] Face: 6  Eye colors: 9 9
[World Server] Hairstyle: 255  Haircolor: 255
[World Server] Beard: 255  Beardcolor: 255
[World Server] Validating char creation info...
[World Server] Found 0 errors in character creation request
[MySQL Query] SELECT `value` FROM `variables` WHERE `varname` = 'ServerType' LIMIT 1 (0 rows returned)
[World Server] Found 'TitaniumStartZoneID' rule setting: -1
[MySQL Query] SELECT x, y, z, heading, start_zone, bind_id, bind_x, bind_y, bind_z FROM start_zones WHERE zone_id = 14 AND player_class = 1 AND player_deity = 208 AND player_race = 330 (0 rows returned)
[Status] SoF Start zone query: SELECT x, y, z, heading, start_zone, bind_id, bind_x, bind_y, bind_z FROM start_zones WHERE zone_id = 14 AND player_class = 1 AND player_deity = 208 AND player_race = 330

No start_zones entry in database, using defaults
[MySQL Query] SELECT safe_x, safe_y, safe_z, min_status, min_level, flag_needed FROM zone  WHERE short_name='(null)' AND (version=0 OR version=0) ORDER BY version DESC (0 rows returned)
[MySQL Query] SELECT safe_x, safe_y, safe_z, min_status, min_level, flag_needed FROM zone  WHERE short_name='(null)' AND (version=0 OR version=0) ORDER BY version DESC (0 rows returned)
[World Server] Current location: qeynos (1)  -1.00, -1.00, -1.00, 0.00
[World Server] Bind location: qeynos (1) -1.00, -1.00, -1.00
[World Server] Home location: qeynos (1) -1.00, -1.00, -1.00

Now, I came across this yet, there was no further follow up. If this guy was on the right path, I have no idea where to insert any code as the thread was left unresolved, and the user hasn't been active in 2yrs. I've been looking around, but no where seems "obvious" to me.

I've tried a few places, and caused nothing but crashes. So, even if I was adding the right code in, it was in the wrong places.

Sturm 06-26-2019 03:04 PM

Froglok's aka Guktan's were not a playable race during the Titanium era.

Stubbay 06-26-2019 04:34 PM

Quote:

Originally Posted by Sturm (Post 262896)
Froglok's aka Guktan's were not a playable race during the Titanium era.



Ah, right. Hadn't thought of that. Thanks!


All times are GMT -4. The time now is 01:32 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.