pawn Код:
if(strcmp(cmd, "/removeroadblock", true) == 0)
{
if(PlayerInfo[playerid][pMember] == 1 || PlayerInfo[playerid][pLeader] == 1 || PlayerInfo[playerid][pMember] == 2 || PlayerInfo[playerid][pLeader] == 2)
{
if( Roadblock >= 1 )
{
DestroyObject( Roadblock );
Roadblock = 0;
}
else
{
SendClientMessage(playerid, COLOR_GREY, " No roadblocks have been deployed.");
}
}
else
{
SendClientMessage(playerid, COLOR_GREY, " You are not a part of a faction.");
}
return 1;
}