01.11.2011, 14:04
Change
( if playerid's team is not driver OR is not Pilot ( he must to be both, so it's impossible ), send the message )
to
( if playerid's team is not driver and is not pilot, send the message ).
Код:
if(team[playerid] != DRIVER || team[playerid] != PILOT)
to
Код:
if(team[playerid] != DRIVER && team[playerid] != PILOT)