04.09.2011, 01:15
Hola, bueno, estaba leyendo el tutorial que esta por hay sobre cronometrar, pero, me tira un error, me gustarнa que me ayudaran
Error:
Funcion:
Agradesco toda respuesta que me puedan dar
Saludos
--
Q
Error:
Код:
C:\Documents and Settings\Freeman\Escritorio\Pawn\filterscripts\Xion.pwn(27) : error 076: syntax error in the expression, or invalid function call Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
pawn Код:
new Ref;
public OnPlayerDeath(playerid, killerid, reason)
{
Ref = GetTickCount();
return 1;
}
public OnPlayerSpawn(playerid)
{
new string[70];
format(string, sizeof(string), "El jugador Nє %d tardo %f segundos en aparecer desde que muriу!", playerid, floatdiv(GetTickCount - Ref, 1000));
SendClientMessage(playerid, COLOR_VERDE, string);
return 1;
}
Saludos
--
Q