amxmodx/plugins/include/geoip.inc
2005-07-15 19:05:31 +00:00

23 lines
577 B
SourcePawn
Executable File

/* GeoIP module functions for AMX Mod X
by David "BAILOPAN" Anderson
(C)Copyrighted under the GNU General Public License, Version 2
*/
#if defined geoip_included
#endinput
#endif
#define _geoip_included
#pragma library geoip
//IP address can contain ports, the ports will be stripped out
//get a two character country code (eg US, CA etc)
native geoip_code2(ip[], ccode[3]);
//get a three character country code (eg USA, cAN etc)
native geoip_code3(ip[], result[4]);
//get a full country name. max name is 45 chars
native geoip_country(ip[], result[], len=45);