Criar comando pra bloquear o /ir
#8

Tente isso
pawn Код:
CMD:ir(playerid, params[])
{
    new id, Float:P[3];
    if(sscanf(params, "u", id))
    {
        SendClientMessage(playerid, CINZA, "USO: /ir [Nome do Jogador / ID]");
        return 1;
    }
    if(id == INVALID_PLAYER_ID)
    {
        SendClientMessage(playerid, VERMELHO, "[ERRO] Jogador OFFLINE.");
        return 1;
    }
    if(Info[playerid][Admin] >= 1)
    {
        if(IsBlock[id] == true || IsBlock[id] == false) //caso ele esteja com Block ativado.
        {
            GetPlayerPos(id, P[0], P[1], P[2]);
            SetPlayerPos(playerid, P[0]+1, P[1], P[2]+0.5);
            SetPlayerInterior(playerid, GetPlayerInterior(id));
            SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(id));
            GetPlayerName(id, str, MAX_PLAYER_NAME);
            format(str, 128, "[ADMIN] Vocк foi atй o jogador %s [ID %d].", str, id);
            SendClientMessage(playerid, AMARELO, str);
            GetPlayerName(playerid, str, MAX_PLAYER_NAME);
            format(str, 128, "[VPAdmin] O(a) admin %s [ID %d] veio atй vocк.", str, playerid);
            SendClientMessage(id, VERDE, str);
            return 1;
        }
    }
    if(IsBlock[id] == true)
    {
        SendClientMessage(playerid, -1, "Este jogador bloqueou os /ir ");
        return 1;
    }
    GetPlayerPos(id, P[0], P[1], P[2]);
    SetPlayerPos(playerid, P[0]+1, P[1]+1, P[2]);
    SetPlayerInterior(playerid, GetPlayerInterior(id));
    SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(id));
    return 1;
}
Reply


Messages In This Thread
Criar comando pra bloquear o /ir - by CanTLoGin - 16.10.2011, 13:00
Re: Criar comando pra bloquear o /ir - by WLSF - 16.10.2011, 13:06
Re: Criar comando pra bloquear o /ir - by CanTLoGin - 16.10.2011, 13:11
Re: Criar comando pra bloquear o /ir - by WLSF - 16.10.2011, 13:28
Re: Criar comando pra bloquear o /ir - by CanTLoGin - 16.10.2011, 14:44
Re: Criar comando pra bloquear o /ir - by WLSF - 16.10.2011, 14:45
Re: Criar comando pra bloquear o /ir - by CanTLoGin - 16.10.2011, 14:47
Re: Criar comando pra bloquear o /ir - by WLSF - 16.10.2011, 14:52
Re: Criar comando pra bloquear o /ir - by CanTLoGin - 16.10.2011, 14:56

Forum Jump:


Users browsing this thread: 2 Guest(s)