03.05.2016, 16:52
Eae Galera! queria um contador de vida e de colete ao ganhar/perder na arena tipo: player1 ganhou de playerd2 com 100 de vida e 100 de colete.
new
Nome_[ MAX_PLAYER_NAME ],
Nome_2[ MAX_PLAYER_NAME ],
Float:Vida[2],
cmd_string[128]
;
GetPlayerName( killerid, Nome_, MAX_PLAYER_NAME );
GetPlayerName( playerid, Nome_2, MAX_PLAYER_NAME );
GetPlayerHealth( killerid, Vida[0] );
GetPlayerArmour( killerid, Vida[1]);
format(cmd_string, sizeof(cmd_string), "O Jogador %s, matou o player %s com %f de vida e %f de colete", Nome_, Nome_2, Vida[0], Vida[1]);
SendClientMessageToAll( -1. cmd_string );