Suicide in SAMP
#1

How to a player in SAMP server wants to commit suicide? How to write scripts to do it? Please help me
I'm a Vietnamese so my English is bad
Reply
#2

Check this
Reply
#3

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(!strcmp("/kill", cmdtext, true))
    {
        SetPlayerHealth(playerid, 0);
        return 1;
    }
    return 0;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)