16.03.2014, 10:38
Tenta assim:
PHP код:
public SyncClock()
{
for(new i; i != MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(i)) continue;
new stringao[128];//linha 75761
gettime(ClockTime[tHour], ClockTime[tMinute], ClockTime[tSecond]);
getdate(ClockTime[dYear], ClockTime[dMonth], ClockTime[dDay]);
format(stringao, sizeof(stringao), "%s~n~%02d:%02d:%02d - %02d/%02d/%d ",SITE_URL, ClockTime[tHour], ClockTime[tMinute], ClockTime[tSecond], ClockTime[dDay], ClockTime[dMonth], ClockTime[dYear], Online, GetMaxPlayers());
TextDrawSetString(ServerLogo2, stringao);
}
}