Making team only command
#1

I need help for making a command only for team 1

Example:

I have this command and I wan't to enable it only for team 1 that I defined on the beggining of the script as
pawn Код:
#define TEAM_POLICE 1
pawn Код:
CMD:open(playerid, params[])
{
    SetDynamicObjectRot(barrier1, 0.00000000,0.00000000,325.48645020);
    SendClientMessage(playerid, COLOR_SKYBLUE, "OPENED");
    return 1;
}
CMD:close(playerid, params[])
{
        SetDynamicObjectRot(barrier1, 0.0, 270.00000000,325.48645020);
    SendClientMessage(playerid, COLOR_SKYBLUE, "CLOSED");
    return 1;
}
Can somebody help me making this command?

Thanks for helping =)
Reply
#2

pawn Код:
CMD:open(playerid, params[])
{
    if(gTeam[playerid] != TEAM_POLICE)
    return SendClientMessage(playerid,0xFF0000C8, "You are not Police Officer");
    SetDynamicObjectRot(barrier1, 0.00000000,0.00000000,325.48645020);
    SendClientMessage(playerid, COLOR_SKYBLUE, "OPENED");
    return 1;
}
CMD:close(playerid, params[])
{
    if(gTeam[playerid] != TEAM_POLICE)
    return SendClientMessage(playerid,0xFF0000C8, "You are not Police Officer");
    SetDynamicObjectRot(barrier1, 0.0, 270.00000000,325.48645020);
    SendClientMessage(playerid, COLOR_SKYBLUE, "CLOSED");
    return 1;
}
Reply
#3

Thanks =)

Rep+ forya
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)