30.11.2012, 21:45
Could someone help me with doing a AudioStreamForPlayer when he enter a specific Area? With radius and so on ?

if(IsPlayerInRangeOfPoint(playerid..
{
StreamStarted[playerid] = 1;
PlayAudioStreamForPlayer(playerid, "http://blablabla"); //Like this?
}
else
{
if(StreamStarted[playerid] == 1)
{
StreamStarted[playerid] = 0;
StopAudioStreamForPlayer(playerid);// Like this?
}
}
But where to Put the Rest? under which "Public"?