21.02.2009, 23:35
Hello all,
I've seen a gamemode on sa-mp 0.2x where anims are executed with /me strings.
Like if u smoke it shows up lights up a cig and smokes it
Can someone help me out with /kill ? Cause it won't show up.
I've seen a gamemode on sa-mp 0.2x where anims are executed with /me strings.
Like if u smoke it shows up lights up a cig and smokes it
Can someone help me out with /kill ? Cause it won't show up.
Код:
//-------------------------------[Kill]-------------------------------------------------------------------------
new suicider[MAX_PLAYER_NAME];
if(strcmp(cmd, "/kill", true) == 0)
{
GetPlayerName(playerid, suicider, sizeof(suicider));
SetPlayerHealth(playerid,0.0);
format(string, sizeof(string), "* %s takes out a knife from jacket, and takes a suicide.", suicider);
SendClientMessageToAll(COLOR_RED, string);
return 1;

