Gm Lock/hg Change Dc

Discussion about Helbreath Server Files.
Post Reply
sp1rit
noob
Posts: 19
Joined: Wed Oct 26, 2005 7:46 am

Post by sp1rit »

Hello eveyone, ive got two questions for 3.51 version.

1. How do i lock/unlock GM drops/or GM being able to hit anything.
(A possible way to make a lvl 5 GM only to drop/hit?)

2. Got this problem with HG's, everytime someone has to change maps(between different HG's), they get disconected and have to relog everytime to get to the other map, this is very critical, can someone please help me out here.
Tafka12
<3 bd long time
Posts: 772
Joined: Wed Dec 28, 2005 6:32 pm

Post by Tafka12 »

yea i get the 2nd problem too
but change ur GM lvl to 9 then
<img src='http://www.hot.ee/carvanho/taavi.png' border='0' alt='user posted image' /><br><br><img src='http://www.hot.ee/carvanho/Elvine.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/LieroX.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/Football.png' border='0' alt='user posted image' />
juggalo2
Spamtastic
Posts: 1144
Joined: Sun Jul 17, 2005 5:28 pm

Post by juggalo2 »

are u bihind a router at all
<img src='http://lifeplaysu420.com/unknow/nightsign.png' border='0' alt='user posted image' /><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>Wanna make money for surfing the net sing up at <br><a href='http://www.cashfiesta.com/php/join.php? ... yprivitera' target='_blank'>cash fiesta</a><br>its all free hey why ntot make money while fucking around on the computer<br><br><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sp1rit
noob
Posts: 19
Joined: Wed Oct 26, 2005 7:46 am

Post by sp1rit »

yes i am behind a router, any way to fix it?
Tafka12
&lt;3 bd long time
Posts: 772
Joined: Wed Dec 28, 2005 6:32 pm

Post by Tafka12 »

any way to fix that ur behind router... dial your router off... or cut wires in 2 parts..
<img src='http://www.hot.ee/carvanho/taavi.png' border='0' alt='user posted image' /><br><br><img src='http://www.hot.ee/carvanho/Elvine.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/LieroX.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/Football.png' border='0' alt='user posted image' />
juggalo2
Spamtastic
Posts: 1144
Joined: Sun Jul 17, 2005 5:28 pm

Post by juggalo2 »

i hade thsi porblem to cuz i hosted behind a router btu i found the fix
log-server-address = extrnal ip not intrnal it works if u get errors liek u cant up hgserver that means u didnt fowards all ports or dmz to ur ip and u didnt disable wan ill make soem ss of whats needs to be cfgs inn a router thiss weekends or if i coem home from work early tommro
<img src='http://lifeplaysu420.com/unknow/nightsign.png' border='0' alt='user posted image' /><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>Wanna make money for surfing the net sing up at <br><a href='http://www.cashfiesta.com/php/join.php? ... yprivitera' target='_blank'>cash fiesta</a><br>its all free hey why ntot make money while fucking around on the computer<br><br><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sp1rit
noob
Posts: 19
Joined: Wed Oct 26, 2005 7:46 am

Post by sp1rit »

Thanks man, i really apreciate it.
sp1rit
noob
Posts: 19
Joined: Wed Oct 26, 2005 7:46 am

Post by sp1rit »

Hey if i change log-server-address= in HLMS i get this...
Image
in WLS...

P.S. Didnt find WAN anywhere...ive got linksys router :\
juggalo2
Spamtastic
Posts: 1144
Joined: Sun Jul 17, 2005 5:28 pm

Post by juggalo2 »

thiss weekends ill make a real way to host behind a router whit ss and more
<img src='http://lifeplaysu420.com/unknow/nightsign.png' border='0' alt='user posted image' /><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>Wanna make money for surfing the net sing up at <br><a href='http://www.cashfiesta.com/php/join.php? ... yprivitera' target='_blank'>cash fiesta</a><br>its all free hey why ntot make money while fucking around on the computer<br><br><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sp1rit
noob
Posts: 19
Joined: Wed Oct 26, 2005 7:46 am

Post by sp1rit »

I cant get this fixed no matter what i try, i am going crazy...
Shetar
Member
Posts: 148
Joined: Sun Nov 30, 2003 12:57 am

Post by Shetar »

Using a firewall to block your WLserver port?
Helbreath II Project Manager & All round Developer. <br><i>(Don't worry, we're not dead)</i>
sp1rit
noob
Posts: 19
Joined: Wed Oct 26, 2005 7:46 am

Post by sp1rit »

no :unsure: , fire wall and router have that port open... :(
ck-
noob
Posts: 12
Joined: Fri Aug 26, 2005 3:15 pm

Post by ck- »

i get the 2nd problem too..........
and i want to know how to work php behind router,
Help me please =D
snoopy81
Loyal fan
Posts: 338
Joined: Mon Jul 12, 2004 7:13 pm

Post by snoopy81 »

Search for "case DEF_NOTIFY_SERVERCHANGE:" then add Archangel's fix...
Works sometimes.

Code: Select all

	case DEF_NOTIFY_SERVERCHANGE:
  memcpy(cp, m_pClientList[iToH]->m_cMapName, 10);
  cp += 10;	
  // World Server connection across hgservers, behind router problem
  // ArchAngel fix
  if (m_iGameServerMode == 1) // Mode = 1 is LAN (behind router
            if (memcmp(m_cLogServerAddr, m_cGameServerAddr, 15) == 0)
    memcpy(cp, m_cGameServerAddrExternal, 15);
  	else
    memcpy(cp, m_cLogServerAddr, 15);
  else // mode = 2 INTERNET
  	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;
_\_ _<br> / , \__/ . \ Admin of Equilibrium Project<br> II\ \___ . O<br> III \_/ \ _ / <a href='http://www.equiprojet.com' target='_blank'>http://www.equiprojet.com</a><br> II I¯I
Post Reply