Quote:
Originally Posted by Ever_SH
PHP код:
new UltimoDano[MAX_PLAYERS];
public OnPlayerTakeDamage(playerid, issuerid, Float: amount, weaponid, bodypart)
{
if(issuerid != INVALID_PLAYER_ID)
{
UltimoDano[playerid] = gettime();//Pegamos o tempo em que ele tomou ultimo dano
}
return 1;
}
public OnPlayerDisconnect(playerid)
{
UltimoDano[playerid] ++10;//Ele pode deslogar 10 seg apos o tomar dano
if(UltimoDano[playerid] > gettime()) //Ve se passou 10 segundos
{
//Deslogou antes de 10 seg
return 1;
}
return 1;
}
Ai й sу punir ele de alguma forma
|
pawn Код:
UltimoDano[playerid]++10;
Код:
error 001: expected token: ";", but found "-integer value-"