Jump to content
  • 0

pomoc Radio


KillBill61

Dotaz

Chtel bych se zeptat - podle me je to adresou

 

Mam: ukaze se dialog - a pak napise audio stream a adresa

 

ale zvuk se nepusti

 

pouzivam adresy jako:

 

http://www.play.cz/radio/evropa2-128.mp3.m3u

 

nebo

 

http://listen.play.cz/player.html?shortcut=frekvence1&v=20120816

 

ale nejdou - znate nejake platne adresy?

 

PS: neznate na FM plus? :d

Link to comment
Share on other sites

10 odpovědí na tuto otázku

Recommended Posts

  • 0

Toto je vse :) (je to FS)

 

 

#include 

#define DIALOG_RADIO 901

public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/radio", cmdtext, true, 10) == 0)
{
	ShowPlayerDialog(playerid,DIALOG_RADIO,DIALOG_STYLE_LIST ,"Radio","Evropa2\nDance Radio\nFrekvence 1\nRadio Fajn (Rock Music)\nExpress Radio","Vybrat","Zrusit");
	return 1;
}
return 0;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
   if(dialogid == DIALOG_RADIO){
       if(response == 1){
       switch(listitem){
               case 0:
               {
               PlayAudioStreamForPlayer(playerid, "www.play.cz/radio/evropa2-128.mp3.m3u");
		    }
		    case 1:
               {
               PlayAudioStreamForPlayer(playerid, "http://listen.play.cz/player.html?shortcut=danceradio&v=20120816");
		    }
		    case 2:
               {
               PlayAudioStreamForPlayer(playerid, "http://listen.play.cz/player.html?shortcut=frekvence1&v=20120816");
		    }
		    case 3:
               {
               PlayAudioStreamForPlayer(playerid, "http://listen.play.cz/player.html?shortcut=fajnrockmusic&v=20120816");
		    }
		    case 4:
               {
               PlayAudioStreamForPlayer(playerid, "http://listen.play.cz/player.html?shortcut=expres&v=20120816");
		    }
       }
       }
       return 1;
   }
return 0;
}

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...