21.07.2015, 22:22
https://sampwiki.blast.hk/wiki/OnPlayerDeath
Vejamos...
Desculpa qualquer erro, costumo digitar o cуdigo no pawno e colar aqui, mas digitei aqui mesmo e com pressa..
Sim...
Vejamos...
PHP код:
new Matou[MAX_PLAYERS];
public OnPlayerDeath(playerid, killerid, reason)
{
if(killerid != INVALID_PLAYER_ID)
{
Matou[killerid] ++;
new str[128];
format(str, sizeof(str), "~b~Matou:~w~ %d", Matou[killerid]);
PlayerTextDrawSetString(killerid, INFO[2][killerid], str);
}
return 1;
}
//ao carregar os dados do jogador
Matou[playerid] = DOF2_GetInt(String, "Matou");
//para salvar
DOF2_SetInt(String, "Matou", Matou[playerid]);
Sim...