Making the command only for a group
#1

I got a moving gate command working, But now i want to lock them to groups, Basically. Either the leader can /lockgate and /unlock gate, and anyone can access the gates, or it only works for the members in the faction. Heres my cmd
Код:
CMD:gate(playerid,params[])
{
    if(IsPlayerInRangeOfPoint(playerid,10,1428.6456, 242.0033, 20.3020))
    {
        switch(Open)//Check whether the gate opened or closed
        {
            case true://If the gate opened
            {
                MoveObject(Gate,1428.6456, 242.0033, 20.3020,4);//Close the gate
                Open = false;//false for closed
            }
            case false://If the gate closed
            {
                MoveObject(Gate,1426.5259, 237.4716, 20.3020,4);//Open the gate
                Open = true;//true for opened
            }
        }
        return 1;
    }
    SendClientMessage(playerid,ORANGE,"You're not close enough to the gate.");//Send error message if player isn't near any gate
    return 1;
}
Will rep if someone can help, thanks.
Reply


Messages In This Thread
Making the command only for a group - by Joshswag - 07.11.2012, 10:14
Re: Making the command only for a group - by Deaglez - 07.11.2012, 10:22
Re: Making the command only for a group - by Joshswag - 07.11.2012, 10:31
Re: Making the command only for a group - by Joshswag - 08.11.2012, 05:32
Re: Making the command only for a group - by Plovix - 08.11.2012, 11:22
Re: Making the command only for a group - by Joshswag - 08.11.2012, 15:51

Forum Jump:


Users browsing this thread: 1 Guest(s)