[PEDIDO]/KILL
#2

SetTimerEx+ GetPlayerPos

pawn Код:
forward KillTimer(playerid,Float:KillPosX,Float:KillPosY);
public KillTimer(playerid,Float:KillPosX,Float:KillPosY)
{
    new Float:VPos[3];
    GetPlayerPos(playerid, VPos[0], VPos[1], VPos[2]);
    if(VPos[0] != KillPosX || VPos[1] != KillPosY)
        SendClientMessage(playerid, -1, "Vocк se moveu e nгo foi morto.");
    else
    {
        SendClientMessage(playerid, -1, "Vocк foi morto pelo /kill.");
        SetPlayerHealth(playerid, 0.0);
    }

    return 1;
}

if(!strcmp(cmd, "/kill"))
{
    new Float:KillPos[3];
    GetPlayerPos(playerid,KillPos[0],KillPos[1],KillPos[2]);
    SetTimerEx("KillTimer", 5000, false, "iff", playerid,KillPos[0],KillPos[1]);
    SendClientMessage(playerid, -1, "Vocк serб morto em 5 segundos. Nгo se mova.");
    return 1;
}
Reply


Messages In This Thread
[PEDIDO]/KILL - by Victor_Souz4 - 16.11.2011, 20:27
Re: [PEDIDO]/KILL - by ViniBorn - 16.11.2011, 20:34
Re: [PEDIDO]/KILL - by Victor_Souz4 - 16.11.2011, 20:36
Re: [PEDIDO]/KILL - by Enderman - 16.11.2011, 20:44
Re: [PEDIDO]/KILL - by ViniBorn - 16.11.2011, 20:45
Re: [PEDIDO]/KILL - by Victor_Souz4 - 16.11.2011, 20:55
Re: [PEDIDO]/KILL - by Paramount. - 16.11.2011, 21:06

Forum Jump:


Users browsing this thread: 2 Guest(s)