14.07.2011, 14:12
If you mean you want to PlayerPlaySound in a range of coordinates, then:
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerInRangeOfPoint(i, 10, 0.0, 0.0, 0.0))//edit
{
PlayerPlaySound(i)//....
}
}