Raised This Month: $51 Target: $400
 12% 

Get Server Ip


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
K.K.Lv
Veteran Member
Join Date: Aug 2008
Location: GameFolder
Old 08-18-2012 , 11:28   Get Server Ip
Reply With Quote #1

Hi all, I'm a new on SourceMod.
and this is a simple snippet to get server ip.
I have been try to type "ip" in server console
and the result is
Code:
"ip" = "localhost"
 - Overrides IP for multihomed hosts
so I try to type "hostip"
result:
Code:
"hostip" = "989727350" ( def. "" )
 - Host game server ip
so I make this code convert into a ip type
Code:
stock GetServerIp(String:ip[], maxlen) {     new Handle:hHostIp = FindConVar("hostip");     new iHostIp = GetConVarInt(hHostIp);     return Format(ip, maxlen, "%d.%d.%d.%d", ((iHostIp & 0xFF000000) >>0x18), ((iHostIp & 0x00FF0000)>>0x10), ((iHostIp & 0x0000FF00)>>0x8), (iHostIp & 0x000000FF)); }
__________________
QQ:116268742
K.K.Lv is offline
Send a message via MSN to K.K.Lv
Mitchell
~lick~
Join Date: Mar 2010
Old 08-18-2012 , 14:02   Re: Get Server Ip
Reply With Quote #2

SMLIB already has a similar function.
Mitchell is offline
thetwistedpanda
Good Little Panda
Join Date: Sep 2008
Old 08-18-2012 , 14:26   Re: Get Server Ip
Reply With Quote #3

Keep in mind, if you're behind a NAT or something similar, the IP that is reported by hostip will be incorrect. You'll need to use SteamTools to get the actual address.
__________________
thetwistedpanda is offline
minimoney1
SourceMod Donor
Join Date: Dec 2010
Old 08-31-2012 , 07:03   Re: Get Server Ip
Reply With Quote #4

Quote:
Originally Posted by annymac View Post
This tool will find out the IP address of a website as well as website's country (hosting location).If you are using apache in front of a mongrel, then remote_ip will return the source address of the request..
Oh...
minimoney1 is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 12:21.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode