09.07.2010, 09:23
Quote:
Thanks but not needed.
(Also, Miikkel was the one that pointed it out ) |
You think you might be able to help me with this?? i wanna make it so when the player dies it shows
"%s has died (reason)"
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
new string[256];
new playername[MAX_PLAYER_NAME];
GetPlayerName(playerid,playername,sizeof(playername));
format(string, sizeof(string),"%s has Died",playername, reason);
SendClientMessageToAll(0x00FF32FF,string);
return 1;
}