10.08.2015, 19:11
Quote:
error 035: argument type mismatch (argument 1), a questгo esta que nao esta atualizando os segundos e minutos, tipo a hora, so que ae й quando inicia o evento comeeзa a contar os minutos e segundos que o evento esta iniciado..
|
PHP код:
forward AtualizarEvento(playerid);
public AtualizarEvento(playerid)
{
new Luis[60];
new minute, segundos;
segundos = (APlayerData[playerid][LoadingTimer] % 60);
minute = (APlayerData[playerid][LoadingTimer] - segundos) / 60;
format(Luis, 60, "%i - %i", minute ,segundos);
TextDrawSetString(InfoEvento, Luis);
SetTimerEx("AtualizarEvento", 100, false, "d", playerid);
return 1;
}