08.01.2013, 20:15
only id 0 can hear music..please help!!
pawn Код:
forward RadioScena(playerid);
public RadioScena(playerid) // scena - stage..
{
if(IsPlayerInRangeOfPoint(playerid,50.0,251.5308,-1807.7228,7.8359))
{
if(!GetPVarInt(playerid,"muzica"))
{
SetPVarInt(playerid,"muzica",1);
PlayAudioStreamForPlayer(playerid, "http://live128.radioprob.ro:9999/",251.5308,-1807.7228,7.8359, 80.0,true); //
} //http://radio-crazy.is-a-chef.com:8024/
}
else
{
if(GetPVarInt(playerid,"muzica"))
{
DeletePVar(playerid,"muzica");
StopAudioStreamForPlayer(playerid);
}
}
return 1;
}
PHP код:
radioscenaTimer = SetTimer("RadioScena", 1000, 1);