[Ayuda]Unlockplayer
#1

Hola, necesito ayuda estoy usando LARP Gamemod y cuando baneas alguien la funcion es siguente:

PlayerInfo[giveplayerid][pLocked] = 1;

Estoy intetnado crear un comando para desbloquear jugador alguien me puede ayudar ? los usuarios estan en /scriptfiles/users



esta es el comando que tiene gamemod pero no funciona

pawn Код:
if(strcmp(cmd, "/aunlock", true) == 0)
    {
        if (PlayerInfo[playerid][pAdmin] >= 3)
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /aunlock [playerid/PartOfName]");
                return 1;
            }
            giveplayerid = ReturnUser(tmp);
            if(IsPlayerConnected(giveplayerid))
            {
                if(giveplayerid != INVALID_PLAYER_ID)
                {
                    if(PlayerInfo[giveplayerid][pLocked] == 1)
                    {
                        PlayerInfo[giveplayerid][pLocked] = 0;
                        TogglePlayerControllable(giveplayerid, 1);
                        SendClientMessage(playerid, COLOR_YELLOW, "Account unlocked succesfuly.");

                    }
                }
            }
        }
        else
        {
            SendClientMessage(playerid, COLOR_GRAD1, "You must be a level 3 admin to do this command.");
        }
        return 1;
    }
Reply


Messages In This Thread
[Ayuda]Unlockplayer - by MrLevan - 07.03.2012, 00:12
Re: [Ayuda]Unlockplayer - by LuisGraph - 07.03.2012, 01:14
Respuesta: [Ayuda]Unlockplayer - by MrLevan - 07.03.2012, 01:28
Re: [Ayuda]Unlockplayer - by LuisGraph - 07.03.2012, 16:22

Forum Jump:


Users browsing this thread: 1 Guest(s)