SA-MP Forums Archive
Music Playing for all? - 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: Music Playing for all? (/showthread.php?tid=363358)



Music Playing for all? - KingyKings - 27.07.2012

Quote:

if(dialogid == 2)
{
if(response)
{
if(listitem == 0)
{
SendClientMessageToAll(COLOR_YELLOW, "Rcon Admin Has Choosen To Play Airplanes B.o.B! [/stop to stop it]");
for(new i = 0; i < MAX_PLAYERS; i++)
{
PlayAudioStreamForPlayer(i,"http://www.michiganhiphop.com/wp-content/uploads/2010/04/BoB_feat_Eminem_Hayley_Williams-Airplanes_Part_2-MIHipHop2.mp3");
}
}
if(listitem == 1)
{
SendClientMessageToAll(COLOR_YELLOW, "Rcon Admin Has Choosen To Play Party Rock Anthem! [/stop to stop it]");
for(new i = 0; i < MAX_PLAYERS; i++)
PlayAudioStreamForPlayer(i, "http://www.jakesallstarkaraoke.com/media/LMFAO_-_Party_Rock_Anthem.mp3");
}
if(listitem == 2)
{
SendClientMessageToAll(COLOR_YELLOW, "Rcon Admin Has Choosen To Play Forget You! [/stop to stop it]");
for(new i = 0; i < MAX_PLAYERS; i++)
PlayAudioStreamForPlayer(i, "http://osbornemedia.com/files/Cee-Lo_Green_-_Forget_You.mp3");
}
if(listitem == 3)
{
SendClientMessageToAll(COLOR_YELLOW, "Rcon Admin Has Choosen To Play Car Thief! [/stop to stop it]");
for(new i = 0; i < MAX_PLAYERS; i++)
PlayAudioStreamForPlayer(i, "http://music.freeman-stat.us/bboys/Car_Thief.mp3");
}
if(listitem == 4)
{
SendClientMessageToAll(COLOR_YELLOW, "Rcon Admin Has Choosen To Play Pay Phone! [/stop to stop it]");
for(new i = 0; i < MAX_PLAYERS; i++)
PlayAudioStreamForPlayer(i, "http://a.tumblr.com/tumblr_m47kr6noTw1qddszxo1.mp3");
return 1;
}
}
}
}
}
return 1;
}

Here is my script when the dialog has opened.

The music doesn't actually start?

What am i doing wrong?

+rep for help.


Re: Music Playing for all? - semara123 - 16.11.2014

is any dialogbox in your gamemode


Re: Music Playing for all? - Capua - 16.11.2014

You missed braccets at some lines. Here you go:

pawn Код:
if(dialogid == 2)
{
    if(response)
    {
        if(listitem == 0)
        {
            SendClientMessageToAll(COLOR_YELLOW, "Rcon Admin Has Choosen To Play Airplanes B.o.B! [/stop to stop it]");
            for(new i = 0; i < MAX_PLAYERS; i++)
            {
                PlayAudioStreamForPlayer(i,"http://www.michiganhiphop.com/wp-content/uploads/2010/04/BoB_feat_Eminem_Hayley_Williams-Airplanes_Part_2-MIHipHop2.mp3");
            }
        }
        if(listitem == 1)
        {
            SendClientMessageToAll(COLOR_YELLOW, "Rcon Admin Has Choosen To Play Party Rock Anthem! [/stop to stop it]");
            for(new i = 0; i < MAX_PLAYERS; i++)
            {
                PlayAudioStreamForPlayer(i, "http://www.jakesallstarkaraoke.com/media/LMFAO_-_Party_Rock_Anthem.mp3");
            }
        }
        if(listitem == 2)
        {
            SendClientMessageToAll(COLOR_YELLOW, "Rcon Admin Has Choosen To Play Forget You! [/stop to stop it]");
            for(new i = 0; i < MAX_PLAYERS; i++)
            {
                PlayAudioStreamForPlayer(i, "http://osbornemedia.com/files/Cee-Lo_Green_-_Forget_You.mp3");
            }
        }
        if(listitem == 3)
        {
            SendClientMessageToAll(COLOR_YELLOW, "Rcon Admin Has Choosen To Play Car Thief! [/stop to stop it]");
            for(new i = 0; i < MAX_PLAYERS; i++)
            {
                PlayAudioStreamForPlayer(i, "http://music.freeman-stat.us/bboys/Car_Thief.mp3");
            }
        }
        if(listitem == 4)
        {
            SendClientMessageToAll(COLOR_YELLOW, "Rcon Admin Has Choosen To Play Pay Phone! [/stop to stop it]");
            for(new i = 0; i < MAX_PLAYERS; i++)
            {
                PlayAudioStreamForPlayer(i, "http://a.tumblr.com/tumblr_m47kr6noTw1qddszxo1.mp3");
            }
        }
    }
    return 1;
}
edit: ah he posted it 2 years ago -_- this semara guy fooled me