PDA

View Full Version : creating characters?


chickenpimp9987
01-23-2004, 06:08 PM
i dont know whats going on... every time i go to make a character and set everything all up...pick everything.
then i click the last page to create the character and EVERY time, it says "Not a valid Name."

so i can't create a character because no names will work.
anyone have any imformation/know how to fix this?

Squiffy
01-23-2004, 07:56 PM
You tried every race/class?

Bet it's just any Kunark+ combos. I have the same issue. No Iksar, Vah Shir, Frogs, Beastlords for me.

Mrwalsh
01-23-2004, 07:57 PM
What server(s) are you trying, and what class/race? I know that on some servers Vah Shir/Iksars (I think those were the two) were broke.

Squiffy
01-23-2004, 07:59 PM
I still don't know how to fix this, by the way, on my own server.

A week ago, any race/class combo worked, now nothing Kunark+

I haven't changed anything major. Added some more mob info, changed the motd a few times maybe. Never messed with the expansion variable, and I looked, it hasn't changed.

Mrwalsh
01-23-2004, 08:10 PM
For those SysOPs having this problem on their server, here's a fix (thanks Scorp)

Either get the new DR3 CVS, OR

Open common/database.cpp

Find Database::CreateCharacter

Replace

if(pp->race > 12)
return false;
if(pp->class_ > 14)
return false;

with

// if(pp->race > 12)
// return false;
// if(pp->class_ > 14)
// return false;

That will "comment" it out (as you may well know), allowing those races to be used. :)

I believe this works, let me know if I'm mistaken. It's probably just easier to get the new CVS, which appears to be fixed from what I can see.