08.01.2012, 14:46
Dear users,
I got a problem with the audio plugin, it seems to be not working and the radio url is correct and works. This is my code:
Everything complies fine..
I got a problem with the audio plugin, it seems to be not working and the radio url is correct and works. This is my code:
Код:
case 8000: { switch(listitem) { case 0: { Radio[playerid] = Audio_PlayStreamed(playerid, "http://yp.shoutcast.com/sbin/tunein-station.pls?id=199616",false,false,false); Audio_Set3DPosition(playerid, Radio[playerid], Player[playerid][LastX], Player[playerid][LastY], Player[playerid][LastZ], 10.0); Audio_SetVolume(playerid, Radio[playerid], 100); SendClientMessage(playerid, WHITE, "* You have turned on the Hip Hop station."); } case 1: { Radio1[playerid] = Audio_PlayStreamed(playerid, "http://yp.shoutcast.com/sbin/tunein-station.pls?id=1280356",false,false,false); Audio_Set3DPosition(playerid, Radio[playerid], Player[playerid][LastX], Player[playerid][LastY], Player[playerid][LastZ], 10.0); Audio_SetVolume(playerid, Radio1[playerid], 100); SendClientMessage(playerid, WHITE, "* You have turned on the Rock station."); } case 2: { Audio_Stop(playerid, Radio[playerid]); Audio_Stop(playerid, Radio1[playerid]); SendClientMessage(playerid, WHITE, "* You have turned off the Boombox."); } } }