Need little help.

Discussion about Helbreath Server Files.
Post Reply
projectx
Loyal fan
Posts: 201
Joined: Sun Jul 16, 2006 12:01 pm

Post by projectx »

In mine server .. is little problem.. :D

if you change map .. i mean go use command /tp or just run in there ..
That just keep calculate numbers and you have to log out.. and log in then you are in that map ..

That worked in my computer but now in better computer no work .. There is router..

If some one can help .. just tell here
SlammeR
Loyal fan
Posts: 219
Joined: Fri Nov 04, 2005 1:52 am
Location: Brazil

Post by SlammeR »

projectx wrote: In mine server .. is little problem.. :D

if you change map .. i mean go use command /tp or just run in there ..
That just keep calculate numbers and you have to log out.. and log in then you are in that map ..

That worked in my computer but now in better computer no work .. There is router..

If some one can help .. just tell here
Add the ArchAngel Fix

Search for:

Code: Select all

case DEF_NOTIFY_SERVERCHANGE:
Then Change It To:

Code: Select all

	case DEF_NOTIFY_SERVERCHANGE:
  memcpy(cp, m_pClientList[iToH]->m_cMapName, 10);
  cp += 10; 
  if (m_iGameServerMode == 1)
  if (memcmp(m_cLogServerAddr, m_cGameServerAddr, 15) == 0)
  memcpy(cp, m_cGameServerAddrExternal, 15);
  else
  memcpy(cp, m_cLogServerAddr, 15);
  else
  memcpy(cp, m_cLogServerAddr, 15);
  cp += 15;
  ip = (int *)cp;
  *ip = m_iLogServerPort;
  cp += 4;
  iRet = m_pClientList[iToH]->m_pXSock->iSendMsg(cData, 16 +19);
  break;
OWNED!<br><img src='http://img50.imageshack.us/img50/1386/p ... 3vsqn2.gif' border='0' alt='user posted image' /><br><br><img src="http://hbtop50.com/button.php?u=hbuonline" alt="Helbreath Top 50 - Keepin' it real." border="0" /><br><a href='http://www.hbuonline.net' target='_blank'>Helbreath United</a>
projectx
Loyal fan
Posts: 201
Joined: Sun Jul 16, 2006 12:01 pm

Post by projectx »

Slammer it didint work..
//It worked my comp without router.. now no.
SlammeR
Loyal fan
Posts: 219
Joined: Fri Nov 04, 2005 1:52 am
Location: Brazil

Post by SlammeR »

projectx wrote: Slammer it didint work..
//It worked my comp without router.. now no.
works for me... im behind a router too other people can change map without reloging...
OWNED!<br><img src='http://img50.imageshack.us/img50/1386/p ... 3vsqn2.gif' border='0' alt='user posted image' /><br><br><img src="http://hbtop50.com/button.php?u=hbuonline" alt="Helbreath Top 50 - Keepin' it real." border="0" /><br><a href='http://www.hbuonline.net' target='_blank'>Helbreath United</a>
projectx
Loyal fan
Posts: 201
Joined: Sun Jul 16, 2006 12:01 pm

Post by projectx »

yes for you.. that no helped me..

//edit ..
can it be in Gserver.txt?
Post Reply