17.09.2009, 02:18
Is it possable to make it so only one faction can see the checkpoint and not everyone on the server?
gTeam == 1; //PD
if(gTeam == 1)
{
SetplayerCheckpoint(blah);
return 1;
}
for(new i = 0;i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && Faction[playerid] == X)
{
SetPlayerCheckpoint(i, x, y, z, size);
return 1;
}
}