20.06.2015, 14:35
How to set world time ? I'm from Romanian and i want Romanian Hour.
stock syncServerTime(timezone)
{
new string[64];
format(string, sizeof(string), "website.com/timezone.php?t=%d", timezone);
HTTP(0, HTTP_GET, string, "", "OnServerTimeSync");
return 1;
}
forward OnServerTimeSync(index, response_code, data[]);
public OnServerTimeSync(index, response_code, data[])
{
if(response_code == 200)
{
new timezone = strval(data);
SetWorldTime(timezone);
}
return 1;
}