Hey Community,
Ist es möglich diese Funktion auch nur für Leute in der Umgebung hinzubekommen!
PlaySoundForAll(soundid)
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if (IsPlayerConnected(i))
{
new Float:x,Float:y,Float:z;
GetPlayerPos(i, x, y, z);
PlayerPlaySound(i, soundid, x, y, z);
}
}
}