10.03.2016, 16:11
send the line 71-76
pawn Код:
stock PlaySoundEx(soundid, Float:x, Float:y, Float:z, range)
{
foreach( Player , i)
{
if(!IsPlayerConnected(i)) continue;
if(!IsPlayerInRangeOfPoint(i, range, x, y, z)) continue;
PlayerPlaySound(i, soundid, 0, 0, 0);
}
return 1;
}