EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Support::General Support (https://www.eqemulator.org/forums/forumdisplay.php?f=598)
-   -   StartZone (https://www.eqemulator.org/forums/showthread.php?t=27088)

ardianko 12-25-2008 09:20 AM

StartZone
 
Ok so i want all of my characters to start in befallen, which has the zone id of 17 ... i used navicat queries and went into the start_zones table and made the zone_id and start_zone column all set valued to 17.

I restarted the server and the characters still spawn in the mines of gloomingdeep (tutorialb) ... i tried zone 231 (taka) aswell, but it doesnt seem to work. any suggestions?

Derision 12-25-2008 09:34 AM

In your rule_values table, change the rule_value entry for rule_name World:EnableTutorialButton from the default of true, to false

ardianko 12-25-2008 09:45 AM

wow. silly me. Thank you VERY MUCH, and i apologize

Derision 12-25-2008 09:57 AM

Quote:

Originally Posted by ardianko (Post 161888)
wow. silly me. Thank you VERY MUCH, and i apologize

No need to apologize. The working tutorial button is a relatively new feature in EQEmu, so most posts you will find when searching about setting start zones won't mention it.

ardianko 12-25-2008 10:10 AM

Ok that worked for getting the characters out of starting in the tutorial zone. But now its setting it to southern qeynos no matter what value i put in startzone/zoneid columsn :X

Derision 12-25-2008 10:25 AM

That may be due to the way you edited the start_zones table. Rather than editing that, the usual way to set a starting zone for all new characters is to set startzone in the variables table:


Code:

INSERT INTO `variables` (`varname`, `value`, `information`, `ts`) VALUES ('startzone', 'befallen', '', NOW());
South Qeynos is ZoneID 1, so the code probably defaults to that if something has gone wrong. Maybe there is something in one of your log files to indicate the problem.

ardianko 12-25-2008 10:30 AM

Hmmm ... i opened up navicat, went into peq ... then clicked on the QUERY icon up top... clicked on new query and under the Query Editor tab i typed in on line 1 the following ::

UPDATE start_zones SET start_zone = '17'

and it said rows were affected successfully, did the same to zone id, but strange enough they still end up in qeynos. hmmm should i do it a different way?

Derision 12-25-2008 10:45 AM

ZoneID 17 is Blackburrow, not befallen, and the column you want to change is zone_id, not start_zone, but

Code:

UPDATE start_zones SET zone_id = '17' ;
worked for me, (created a new char and he started in Blackburrow) but like I say, the variables method I mentioned above is the accepted method of doing this, rather than messing with the start_zones table.

ardianko 12-25-2008 11:00 AM

well yeah i already made a new variable in the table, i made it a startzone variable and value set to 17, they werent starting in blackburrow they were just starting in qeynos for some reason.

So i deleted that variable, now they are all starting in their regular hometowns (i.e- troll starts in grobb & vah shir's start in shar vahl)

Ugh this is strange

ardianko 12-25-2008 11:54 AM

got it . thank you


All times are GMT -4. The time now is 05:01 PM.

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