29.11.2011, 18:47
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
Can somebody help me making this command?
Thanks for helping =)
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;
}
Thanks for helping =)