PDA

View Full Version : Set all new chars to spawn in QRG but Trolls going to Grobb?


eqemuross
09-03-2009, 01:28 AM
Any ideas? :( -- i updated all the values to zoneid 3, just for some reason trolls like to go to grobb?

Naes
09-05-2009, 06:27 PM
Same thing happens on my server.

Yeormom
09-05-2009, 06:47 PM
That's because that race, class, deity combination does not have an entry in the database so it defaults to a system location. You'll need to add the extra entries in your database for that combination. I send all characters to one zone on my server so I just changed it in the server code instead and removed the tables and database overhead.

trevius
09-05-2009, 08:06 PM
Or, you can just add the varname of "startzone" to your variables table and then set the value of the name of the zone you want all chars to start in. Nice and simple.

Naes
09-05-2009, 08:37 PM
Thanks this worked. Didn't even need a server reset :)
INSERT INTO variables (varname, value) VALUES ('startzone', 'nexus');

jkennedy
12-30-2009, 09:57 PM
i was just wondering how to enter that code in

antioch
12-31-2009, 07:54 AM
Either use your SQL frontend like Navicat to insert the entry or use the mysql command line. To use the command line;

1. Open your DOS Shell
2. Type: mysql -u root -p
3. Enter your password
4. Type: use DB (where DB is the database you use)
5. Enter the code as shown above, changing the values to your preference

ryder911
02-27-2010, 12:58 AM
Ive ran this query but chars still start in tutorial. I even tried deleting the start_zone table and that didnt help either.