12.04.2013, 01:48
You can do something like this:
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
switch(dialogid)
{
case 90:
{
if(!response) return SendClientMessage(playerid, 0x42F3F198, "You canceled the dialog.");
switch(listitem)
{
case 0: PlayAudioStreamForPlayer(playerid, "http://radio02-cn3.akadostream.ru:8814/nrj192.mp3"), SendClientMessage(playerid, 0x42F3F198, "Type /stopradio to stop audio streaming.");
case 1: PlayAudioStreamForPlayer(playerid, "http://stream.radioactivity.fm:8002/"), SendClientMessage(playerid, 0x42F3F198, "Type /stopradio to stop audio streaming.");
}
}
}
return 1;
}