DNS-IP is it possible?

Discussion about Helbreath Server Files.
Post Reply
romax
Member
Posts: 149
Joined: Sat Nov 01, 2003 10:42 am

Post by romax »

guys is it possible to host server with DNS (no-ip.com)?

maybe make the client(EXE) read the ip from DLL or something or CFG.. any suggestions?
<img src='http://img357.imageshack.us/img357/505/eyecopy7ng.gif' border='0' alt='user posted image' />
bone-you
Spamtastic
Posts: 1310
Joined: Wed Mar 16, 2005 3:12 am

Post by bone-you »

Just code the client to DNS the host when it loads it.

From ZBot

Code: Select all

    	case 2:
      char cDnsResult[40];
      struct hostent *pHostEnt;

      pHostEnt = gethostbyname(token);
      if (pHostEnt == NULL) {
      	wsprintf(cTxt, "(!)DNS of (%s) failed", token);
      	PutLogList(cTxt);
      	return FALSE;
      }

      wsprintf(cDnsResult, "%d.%d.%d.%d",
      	( pHostEnt->h_addr_list[0][0] & 0x00ff ),
      	( pHostEnt->h_addr_list[0][1] & 0x00ff ),
      	( pHostEnt->h_addr_list[0][2] & 0x00ff ),
      	( pHostEnt->h_addr_list[0][3] & 0x00ff ) );

      wsprintf(cTxt, "(!)DNS from (%s) to (%s) success!", token, cDnsResult);
      PutLogList(cTxt);
      strcpy(m_cServerAddr, cDnsResult);
      wsprintf(cTxt, "(*) IRC server address : %s", token);
      PutLogList(cTxt);
      wsprintf(cTxt, "(*) IRC server address : %s", m_cServerAddr);
      PutLogList(cTxt);
      cReadMode = 0;
      break;
<img src='http://www.helbreathx.net/sig/sig.jpeg' border='0' alt='user posted image' /><br><a href='http://mafia.cheats4us.org/index.php?x=231030' target='_blank'>#1 on Mafia :D</a><br><!--QuoteBegin-Slipknight+--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> (Slipknight)</td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->100mb Internet, burstable too 10GB oc192<br>his speed can go up too 10gbs<br>...<br>Yes my car can have a top speed of 1000mph<!--QuoteEnd--></td></tr></table><div class='signature'><!--QuoteEEnd--><br>^^ I wonder where the retard went to.
romax
Member
Posts: 149
Joined: Sat Nov 01, 2003 10:42 am

Post by romax »

oo great great! thanks man :D :lol:

but i am pretty noob.. :rolleyes:
i dont really understand where to put the DNS.. i mean i need crate any CFG or just replace it with the old way "hex editor"
or there is any place on the source where i put my IP?

sorry agin for noob questions :(
<img src='http://img357.imageshack.us/img357/505/eyecopy7ng.gif' border='0' alt='user posted image' />
bone-you
Spamtastic
Posts: 1310
Joined: Wed Mar 16, 2005 3:12 am

Post by bone-you »

Source where it reads the IP from the cfg file.
<img src='http://www.helbreathx.net/sig/sig.jpeg' border='0' alt='user posted image' /><br><a href='http://mafia.cheats4us.org/index.php?x=231030' target='_blank'>#1 on Mafia :D</a><br><!--QuoteBegin-Slipknight+--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> (Slipknight)</td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->100mb Internet, burstable too 10GB oc192<br>his speed can go up too 10gbs<br>...<br>Yes my car can have a top speed of 1000mph<!--QuoteEnd--></td></tr></table><div class='signature'><!--QuoteEEnd--><br>^^ I wonder where the retard went to.
ADDKiD
&lt;3 bd long time
Posts: 967
Joined: Tue Jul 12, 2005 8:07 pm
Location: Washington, USA
Contact:

Post by ADDKiD »

Might as well make a Tutorial for him, Zero. He obviously doesn't understand.
romax
Member
Posts: 149
Joined: Sat Nov 01, 2003 10:42 am

Post by romax »

i think i am understand.
but guide will be great :D :P
<img src='http://img357.imageshack.us/img357/505/eyecopy7ng.gif' border='0' alt='user posted image' />
xenx
Member
Posts: 169
Joined: Tue Oct 03, 2006 7:08 am

Post by xenx »

dude , i posted some nice client source to do this a while back, i adapted it from some old source for dns in the client so it works with the Login.cfg we all use now
<a href='index.php?showtopic=7537' target='_blank'>index.php?showtopic=7537</a>

with this you will be able to use a dns address or an ip address in your login.cfg file

PS. i made detailed instructions on that post u shud have no problem adding it into your sources
romax
Member
Posts: 149
Joined: Sat Nov 01, 2003 10:42 am

Post by romax »

oo GJ bro thanks! really helps :)
<img src='http://img357.imageshack.us/img357/505/eyecopy7ng.gif' border='0' alt='user posted image' />
ADDKiD
&lt;3 bd long time
Posts: 967
Joined: Tue Jul 12, 2005 8:07 pm
Location: Washington, USA
Contact:

Post by ADDKiD »

Good Job xenx. =), someone now needs to close this bloody topic.
romax
Member
Posts: 149
Joined: Sat Nov 01, 2003 10:42 am

Post by romax »

ADDKiD wrote: Good Job xenx. =), someone now needs to close this bloody topic.
+1
and i think this needed to be pinned or so..
everyone who use dedicate server need it :)
<img src='http://img357.imageshack.us/img357/505/eyecopy7ng.gif' border='0' alt='user posted image' />
ADDKiD
&lt;3 bd long time
Posts: 967
Joined: Tue Jul 12, 2005 8:07 pm
Location: Washington, USA
Contact:

Post by ADDKiD »

Well... I was thinking, more of the lines that someone make a new topic, with just the Source Tutorial in it, and then pin it & Close. OR, we could just let this roll like it is..
bone-you
Spamtastic
Posts: 1310
Joined: Wed Mar 16, 2005 3:12 am

Post by bone-you »

ADDKiD wrote: Well... I was thinking, more of the lines that someone make a new topic, with just the Source Tutorial in it, and then pin it & Close. OR, we could just let this roll like it is..
I vote for this idea so this retard won't be able to spam the topics up with useless posts.
<img src='http://www.helbreathx.net/sig/sig.jpeg' border='0' alt='user posted image' /><br><a href='http://mafia.cheats4us.org/index.php?x=231030' target='_blank'>#1 on Mafia :D</a><br><!--QuoteBegin-Slipknight+--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> (Slipknight)</td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->100mb Internet, burstable too 10GB oc192<br>his speed can go up too 10gbs<br>...<br>Yes my car can have a top speed of 1000mph<!--QuoteEnd--></td></tr></table><div class='signature'><!--QuoteEEnd--><br>^^ I wonder where the retard went to.
Post Reply