Radio Problem
#1

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;
}
Reply
#2

https://sampwiki.blast.hk/wiki/StopAudioStreamForPlayer
Reply
#3

Quote:
Originally Posted by Stinged
Посмотреть сообщение
sorry im kinda a new scripter how would I make it so a thing to stop stream appears in menu
Reply
#4

pawn Код:
CMD:radio(playerid, params[])
{
    ShowPlayerDialog(playerid, 12345, DIALOG_STYLE_LIST, "Pick a music station", "Country108\ndubstep.fm\nB98 Today's Best Country\nNashville FM"\nStop the music, "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;
                }
                case 4:
                {
                    StopAudioStreamForPlayer(playerid);
                    return 1;
                }
            }
        }
    }
    return 1;
}
Reply
#5

thanks alot man
Reply
#6

Nevermind fixed
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)