HELP RADIO - 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: HELP RADIO (
/showthread.php?tid=307117)
HELP RADIO -
euro2cz - 29.12.2011
OnPlayerCommandText
Код:
if (strcmp("/radio", cmdtext, true, 10) == 0)
{
ShowPlayerDialog(playerid, 4105, DIALOG_STYLE_LIST, "Vyber si stanici:", "Vypnout\nFajn Radio Black\nFajn Radio Club\nHelax\nDance Radio\nHipHopVibes\nEvropa 2\nFun 1 Rбdio\nClubBeat", "Vybrat", "Zruљit");
return 1;
}
a
OnDialogResponse
Код:
if(dialogid == 4105)
{
if(response)
{
switch(dialogid)
{
case 1:
{
switch(listitem)
{
case 0:
{
StopAudioStreamForPlayer(playerid);
}
case 1:
{
//StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://mp3stream4.abradio.cz:8000/fajnclub128.mp3");
}
case 2:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://mp3stream4.abradio.cz:8000/helax128.mp3");
}
case 3:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://mp3stream4.abradio.cz:8000/dance128.mp3");
}
case 4:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://mp3stream4.abradio.cz:8000/fajnblack128.mp3");
}
case 5:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://mp3stream4.abradio.cz:8000/hiphopvibes128.mp3");
}
case 6:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://www.play.cz/radio/evropa2-32.aac.m3u");
}
case 7:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://86.49.93.190:8000/fun1-32");
}
case 8:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://mp3stream4.abradio.cz:8000/clubbeat128.mp3");
}
}
}
}
}
}
Why it doesnt work?? pls help.
Re: HELP RADIO -
James Coral - 29.12.2011
mhm you got eny errors? i mean in pawno
Re: HELP RADIO -
euro2cz - 29.12.2011
no 0 errors but the radio doesnt play
Re: HELP RADIO -
MadeMan - 29.12.2011
pawn Код:
switch(dialogid)
{
case 1:
{
What is this?
Re: HELP RADIO -
euro2cz - 29.12.2011
This is good :
Код:
if(dialogid == 4105)
{
if(response == 1)
{
switch(listitem)
{
case 0:
{
StopAudioStreamForPlayer(playerid);
}
case 1:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid,"http://mp3stream4.abradio.cz:8000/fajnclub128.mp3");
}
case 2:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://mp3stream4.abradio.cz:8000/helax128.mp3");
}
case 3:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://mp3stream4.abradio.cz:8000/dance128.mp3");
}
case 4:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://mp3stream4.abradio.cz:8000/fajnblack128.mp3");
}
case 5:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://mp3stream4.abradio.cz:8000/hiphopvibes128.mp3");
}
case 6:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://www.play.cz/radio/evropa2-32.aac.m3u");
}
case 7:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://86.49.93.190:8000/fun1-32");
}
case 8:
{
StopAudioStreamForPlayer(playerid);
PlayAudioStreamForPlayer(playerid, "http://mp3stream4.abradio.cz:8000/clubbeat128.mp3");
}
}
}
}
Thx