Now , I've reached ingame after a whole lot of laziness. Before I'm reaching ingame , around the Character Creation process I'm getting this.
http://i55.tinypic.com/2hdo2s7.png
That was the first time I went ingame. I later relogged to find that the character was there but looking like this.
http://i55.tinypic.com/2r7u8fq.png
After that I relogged again and the clothes were removed , so I proceeded ingame. When I got in I was expecting the [Owner] Tag next to my name but instead I experienced this.
http://i54.tinypic.com/e87kaa.jpg
This is the source code that I have added + what was already in it
Code:if(m_dwAuthorization >= AUTH_GAMEMASTER)
{
CString strName;
strName = szName;
if(m_dwAuthorization >= AUTH_ADMINISTRATOR)
{
strName = "[Admin]" + strName;
}
else
{
strName = "[GM]" + strName;
}
if(strName == "Military")
{
strName = "[Owner]" + strName;
}
else if(m_dwAuthorization >= AUTH_GAMEMASTER3)
{
strName = "[Head Gamemaster]" + strName;
}
strcpy( szName, (LPCTSTR)strName );
}
My last problem , I decided to go check out the arena then to see that I was disconnected from the server. I tried to login again and I did had the problem. - Fixed
Solution : Replace the arena files from the server files with the ones in the client.
I would like it if anyone can assist me in fixing these problems. I'm also looking for the file to change the picture format of the captured images.
- Military

