25.08.2010, 00:24
This will disable all world bounds for one player, (i dont realy get what u mean i think)
If you wana dsable it for a certain team do somethng like this,
pawn Код:
SetPlayerWorldBounds(playerid,20000.0000, -20000.0000, 20000.0000, -20000.0000);
pawn Код:
for(new i;i<=MAX_PLAYERS;i++)
{
if(GetPlayerTeam(i) == TEAM_SWAT)
{
if(!IsPlayerConnected(i))continue;
SetPlayerWorldBounds(i,20000.0000, -20000.0000, 20000.0000, -20000.0000);
}
}

