Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #pragma tabsize 0
- #if defined FILTERSCRIPT
- #endif
- // You can add your own music.. Either replace what i have done or just add! :) add this to add extra \n[songname onto the dialog list
- // then copy and paste this
- //if(listitem == [add number ;D])
- // {
- // SendClientMessage(playerid, 0x00FF0000, "[song] Is Now Playing Type /stop to stop it.");
- // PlayAudioStreamForPlayer(playerid, "SONG URL");
- // }
- // onto the bottom, which then you can change the Listitem number to the running number.. i guess you will figure it out! enjoy! :)
- public OnPlayerConnect(playerid)
- {
- return 1;
- }
- public OnPlayerCommandText(playerid, cmdtext[])
- {
- if (strcmp("/music", cmdtext, true, 10) == 0)
- {
- ShowPlayerDialog(playerid, 1, DIALOG_STYLE_LIST, "Music List","Airplanes B.o.B\nParty Rock Anthem\nForget You\nCar Theif\nPay Phone\nRussian Roulette\nWow Wow Wow\nBeyond The Sea","Play","Cancel");
- SendClientMessage(playerid,0x00FF0000,"(_[Music Player By KingyKings]_)");
- return 1;
- }
- if(!strcmp("/stop",cmdtext)){
- StopAudioStreamForPlayer(playerid);
- SendClientMessage(playerid,0x00FF0000,"(_[Music Stopped]_)");
- return 1;
- }
- return 0;
- }
- public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
- {
- if(dialogid == 1)
- {
- if(response)
- {
- if(listitem == 0)
- {
- SendClientMessage(playerid, 0x00FF0000, "Airplanes B.o.B is Now Playing Type /stop to stop it.");
- PlayAudioStreamForPlayer(playerid, "http://www.michiganhiphop.com/wp-content/uploads/2010/04/BoB_feat_Eminem_Hayley_Williams-Airplanes_Part_2-MIHipHop2.mp3");
- }
- if(listitem == 1)
- {
- SendClientMessage(playerid, 0x00FF0000, "Party Rock Anthem Is Now Playing Type /stop to stop it.");
- PlayAudioStreamForPlayer(playerid, "http://www.jakesallstarkaraoke.com/media/LMFAO_-_Party_Rock_Anthem.mp3");
- }
- if(listitem == 2)
- {
- SendClientMessage(playerid, 0x00FF0000, "Forget you Is Now Playing Type /stop to stop it.");
- PlayAudioStreamForPlayer(playerid, "http://osbornemedia.com/files/Cee-Lo_Green_-_Forget_You.mp3");
- }
- if(listitem == 3)
- {
- SendClientMessage(playerid, 0x00FF0000, "Car Theif Is Now Playing Type /stop to stop it.");
- PlayAudioStreamForPlayer(playerid, "http://music.freeman-stat.us/bboys/Car_Thief.mp3");
- }
- if(listitem == 4)
- {
- SendClientMessage(playerid, 0x00FF0000, "Pay Phone Is Now Playing Type /stop to stop it.");
- PlayAudioStreamForPlayer(playerid, "http://a.tumblr.com/tumblr_m47kr6noTw1qddszxo1.mp3");
- }
- if(listitem == 5)
- {
- SendClientMessage(playerid, 0x00FF0000, "Russian Roulette Is Now Playing Type /stop to stop it.");
- PlayAudioStreamForPlayer(playerid, "http://www.raffaelebifulco.com/rb/home/content/mp3/Rihanna%20-%20Russian%20Roulette.mp3");
- }
- if(listitem == 6)
- {
- SendClientMessage(playerid, 0x00FF0000, "Wow Wow Wow Is Now Playing Type /stop to stop it.");
- PlayAudioStreamForPlayer(playerid, "http://www.djbroc.com/blog/rocspod1/wow.mp3");
- }
- if(listitem == 7)
- {
- SendClientMessage(playerid, 0x00FF0000, "Beyond the Sea is Now Playing Type /stop to stop it.");
- PlayAudioStreamForPlayer(playerid, "http://www.yorkshireentertainment.co.uk/downloads/mp3-short/Mike%20Brown%20VS%20mp3s/beyond_the_sea.mp3");
- return 1;
- }
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement