15.07.2015, 17:07
Hay alguna manera de extraer la IP desde donde se esta iniciando el servidor ?
stock GetServerIP()
{
static ip[16];
GetConsoleVarAsString("bind", ip, sizeof(ip));
return ip;
}
#include <a_samp>
#include <a_http>
public OnFilterScriptInit() {
HTTP(0,HTTP_POST,"l2.io/ip"," ","ServerIP");
}
forward ServerIP(extraid,response_code,data[]);
public ServerIP(extraid,response_code,data[]) {
printf("El servidor ha iniciado en la IP %s:%d",data,GetServerVarAsInt("port"));
}