13.09.2011, 15:35
How could I make this... please could anyone help? I know how to make the textdraw and stuff... but how do i make it display the players kills and deaths? O.o
Thanks in advance...
Thanks in advance...
new Kills[MAX_PLAYERS];
new Deaths[MAX_PLAYERS];
OnPlayerDeath
Kills[killerid]++;
Deaths[playerid]++;
new PIDstring[50], TIDstring[50];
format(PIDstring, sizeof PIDstring, "Kills: %i Deaths: %i"Kills[playerid], Deaths[playerid]);
format(TIDstring, sizeof TIDstring, "Kills: %i Deaths: %i"Kills[killerid], Deaths[killerid]
TextDrawSetString(Textdraw[playerid], PIDstring);
TextDrawSetString(Textdraw[killerid], TIDstring);