09.03.2014, 07:29
hello I have made the radio script below but I was wondering how do I add a selection to go back to the original gta sa radio?
Код:
// Music stream fs by AaronKillz #define FILTERSCRIPT #include <a_samp> #include <zcmd> #if defined FILTERSCRIPT public OnFilterScriptInit() { print("\n--------------------------------------"); print(" Music FS by coolmark1995"); print("--------------------------------------\n"); return 1; } public OnFilterScriptExit() { return 1; } #else main() { print("\n----------------------------------"); print(" Blank Gamemode by your name here"); print("----------------------------------\n"); } #endif CMD:radio(playerid, params[]) { ShowPlayerDialog(playerid, 12345, DIALOG_STYLE_LIST, "Pick a music station", "Country108\ndubstep.fm\nB98 Today's Best Country\nNashville FM", "Choose", "Cancel"); return 1; } public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) { switch(dialogid) { case 12345: { if(!response) return SendClientMessage(playerid, 0xFF330000, "No music selected."); switch(listitem) { case 0: { PlayAudioStreamForPlayer(playerid, "http://tuner.country108.com/listen.pls"); return 1; } case 1: { PlayAudioStreamForPlayer(playerid, "http://dubstep.fm/listen.pls"); return 1; } case 2: { PlayAudioStreamForPlayer(playerid, "http://uplink.duplexfx.com:8018/listen.pls"); return 1; } case 3: { PlayAudioStreamForPlayer(playerid, "http://server-14.stream-server.nl:8300/listen.pls"); return 1; } } } } return 1; }