View previous topic :: View next topic |
Author |
Message |
Leutian Kane
Joined: 20 Jul 2005 Posts: 6
|
Posted: Sun Aug 21, 2005 4:40 Post subject: vaulster failing ot portal char files.... |
|
|
alright here is a simple explanation of what is going on i run two servers both using vaultster's most recent version and most chars portal between them just fine, but lately some characters have been experiencing errors Code: | NWNX2 Vaultster version 1.4.6 for Windows.
Copyright 2004-2005 (C) Jeroen Broekhuizen
o Using WinSock 2.2.
o Loading in 2 known servers.
o Loaded: xx.xx.xx.xxx
o Loaded: xx.xx.xx.xxx
o Server started on port 5100.
o Start searching for shortymakreedy*.bic
o Searching for C:\NeverwinterNights\NWN\servervault\danotmano1998\shortymakreedy*.bic
o Found at least one file.
o Trying to connect to server xx.xx.xxx.xxx...
o Connected: ready for file transmission
o Sending file
o Sending data part of the file (17613 bytes).
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 1024 bytes of data.
o Send 205 bytes of data.
o Job ready
o Portal successfully finished.
o Retreived status for danotmano1998\shortymakreedy = 0
o Character: C:\NeverwinterNights\NWN\servervault - danotmano1998 - shortymakreedy
o Receiving file: C:\NeverwinterNights\NWN\servervault\danotmano1998\shortymakreedy.bic
o Start searching for kareeheadsplitte*.bic
o Searching for C:\NeverwinterNights\NWN\servervault\danotmano1998\kareeheadsplitte*.bic
o Could not find latest file for danotmano1998\kareeheadsplitte!
o There was an error during the transmission.
o Retreived status for danotmano1998\kareeheadsplitte = 3
| which is the error i keep getting
funny thing is, i konw for a fact these chars exist on both servers, and most other characters portal just fine as shown by the previous portal of this persons char.
so my question is any idea what is causing this to happen?
could it be that there is database entries ie(ats skills) that are on the character or is it something else? _________________ Owner/builder/DM /Admin Leutian Kane's Nordock CEP persistent world servers. |
|
Back to top |
|
|
Papillon x-man
Joined: 28 Dec 2004 Posts: 1060 Location: Germany
|
Posted: Sun Aug 21, 2005 9:32 Post subject: |
|
|
o Could not find latest file for danotmano1998\kareeheadsplitte!
It could not find the .bic file in the servervault. The name translation between GetName(oPC) and the actual filename on disk is a tricky thing, and sometimes it fails.
This is what we currently use on Avlis:
Code: | string ConvertToFilename(string sPlayerName)
{
string sRes;
string sChar;
int i, j;
int iLen = GetStringLength(sPlayerName);
if (iLen > 16)
iLen = 16;
for (i = 0; i < iLen; i++)
{
sChar = GetSubString(sPlayerName, i + j, 1);
if ((sChar != " ") && (sChar != "."))
sRes += sChar;
else
{
i--;
j++;
}
}
return sRes + ".bic";
}
|
If that does not work, NWN came up with some really weird filenames for the character. You could try to adapt that function to include those special case or rename the files on disk. _________________ Papillon |
|
Back to top |
|
|
|