EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Archive::General Support (https://www.eqemulator.org/forums/forumdisplay.php?f=616)
-   -   Starting Location problems (https://www.eqemulator.org/forums/showthread.php?t=13639)

Charmy 05-07-2004 05:52 PM

Starting Location problems
 
ok been trying to set the default zone bind spots to 0,0,10 in the nexus. i tried using eqadmin and for some reason it wouldn't save any of the changes i made, so i used mysqlfront and used the following queries.

First i wanted to only try one class/race
i choose iksar necro

Code:

UPDATE start_zones SET x=0 WHERE player_race=128 and player_class=11;
UPDATE start_zones SET y=0 WHERE player_race=128 and player_class=11;
UPDATE start_zones SET z=10 WHERE player_race=128 and player_class=11;
UPDATE start_zones SET zone_id=152 WHERE player_race=128 and player_class=11;
UPDATE start_zones SET bind_x=0 WHERE player_race=128 and player_class=11;
UPDATE start_zones SET bind_y=0 WHERE player_race=128 and player_class=11;
UPDATE start_zones SET bind_z=10 WHERE player_race=128 and player_class=11;
UPDATE start_zones SET start_zone=152 WHERE player_race=128 and player_class=11;

After running this the values changed and i made an ikky necro who was bound in the nexus! yay!


So i decided to make a generic sql script to change all the race/class combo to start and bind in the nexus at 0,0,10
so i ran this....
Code:

UPDATE start_zones SET x=0;
UPDATE start_zones SET y=0;
UPDATE start_zones SET z=10;
UPDATE start_zones SET zone_id=152;
UPDATE start_zones SET bind_x=0;
UPDATE start_zones SET bind_y=0;
UPDATE start_zones SET bind_z=10;
UPDATE start_zones SET start_zone=152;

Sourced them in and now the start_zones table has all the values filled out, and when compared to the necro are exactly the same. so i figured this would work, but...........................

Didn't work.

I have been toying with it forEVER now, and can't get it to work, any suggestions will help thanks again for all the help everyone has given me to getting this thing running the way i want!

wize_one 05-07-2004 07:57 PM

try going to a dos prompt. cd to your emu dir, type world.exe /? it will tell you the command to set a static start zone

Charmy 05-08-2004 11:14 AM

thank you


All times are GMT -4. The time now is 04:34 PM.

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