SA-MP Forums Archive
Need help with AudioStream - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Need help with AudioStream (/showthread.php?tid=462075)



Need help with AudioStream - Thunderz01 - 05.09.2013

I would like to have some music on my server. So, how to put own selected music to server with url. Someone can help me script it??
I would like to script my AudioStream with this url Radio :

http://www.litefm.com.my/Listen.aspx


Re: Need help with AudioStream - ejb - 05.09.2013

You can use PlayAudioStreamForPlayer
Example: PlayAudioStreamForPlayer(playerid, "http://somafm.com/tags.pls");


Re: Need help with AudioStream - Thunderz01 - 05.09.2013

But how to make it script for AudioStream??

I would like to script AudioScript with this url radio:

http://www.litefm.com.my/Listen.aspx


Re: Need help with AudioStream - Naruto_Emilio - 05.09.2013

PlayAudioSreamForPlayer (playerid, "http://www.litefm.com.my/Listen.aspx");
Put that under a callback or command you want


Re: Need help with AudioStream - xganyx - 05.09.2013

Must have a download link for that song... Get the download link of that song and Put it like this

pawn Код:
COMMAND:play(playerid,params[])
{
    PlayAudioStreamForPlayer(playerid, /*the link download of that song put in "__"*/);
    return 1;
}



Re: Need help with AudioStream - Thunderz01 - 05.09.2013

Can I just copy the url and paste it there??


Re: Need help with AudioStream - lider1241 - 05.09.2013

Yes, you can just copy and paste a link to your command.
Are you want it on dialog with input text or just command?


Re: Need help with AudioStream - Thunderz01 - 05.09.2013

Quote:
Originally Posted by lider1241
Посмотреть сообщение
Yes, you can just copy and paste a link to your command.
Are you want it on dialog with input text or just command?
I would like to see both of it. If you could make it.