17.03.2010, 00:00
Hello everyone,
I`m in need of some help right now. OK i got my server all set and it compiles fine with no errors or warnings. I set up everything and ran the server. I tried to log into it and had a problem with the character creating dialog. I typed my desired password to create a account and then it takes me to a screen with a little box but the dialogs do not show up. I only get passed the password registration but can`t move on. Here is a picture below:

In my script i was having a problem with strtok. So i deleted the following lines out of my script
I`m not sure if this is whats causing the problems. Please help me and if you need certain script lines tell me and i`ll get what your looking for. Thanks for all help. 
I`m in need of some help right now. OK i got my server all set and it compiles fine with no errors or warnings. I set up everything and ran the server. I tried to log into it and had a problem with the character creating dialog. I typed my desired password to create a account and then it takes me to a screen with a little box but the dialogs do not show up. I only get passed the password registration but can`t move on. Here is a picture below:

In my script i was having a problem with strtok. So i deleted the following lines out of my script
Code:
strtok(string[], &idx, seperator = ' ')
{
new ret[256], i = 0, len = strlen(string);
while(string[idx] == seperator && idx < len) idx++;
while(string[idx] != seperator && idx < len)
{
ret[i] = string[idx];
i++;
idx++;
}
while(string[idx] == seperator && idx < len) idx++;
return ret;
}


