06.07.2014, 22:02
Tenho um problema ao compilar, 2 Warnings gostaria de arruma-los.
cуdigo abaixo
cуdigo abaixo
PHP код:
forward ProcessGameTime();
public ProcessGameTime()
{
new string[128];
gettime(i_ServerHours, i_ServerMinutes);
getdate(i_ServerYears, i_ServerMonths, i_ServerDays);
format(string, sizeof string, "%02d:%02d", i_ServerHours, i_ServerMinutes);
TextDrawSetString(Time, string); ----- linha 78
format(string, sizeof string, "%02d/%02d/%04d", i_ServerDays, i_ServerMonths, i_ServerYears);
TextDrawSetString(Date, string); ----- linha 80
SetWorldTime(i_ServerHours);
for(new i = 0; i < MAX_PLAYERS; i++)SetPlayerTime(i, i_ServerHours, i_ServerMinutes);
}
PHP код:
new.pwn(78) : warning 213: tag mismatch
new.pwn(80) : warning 213: tag mismatch