BoxBoy

Untitled

Feb 16th, 2014
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.37 KB | None | 0 0
  1. // This is a comment
  2. // uncomment the line below if you want to write a filterscript
  3. //You may edit to fit your Music taste case 10: is only for RCON admins fit it with your enub and you can edit it :) hope you enjoy
  4. //////////////////////////////////////////////////////
  5. // //
  6. // B'Stream //
  7. // //
  8. // BY //
  9. // //
  10. // BoxBonik(BoxBoy) //
  11. // //
  12. //////////////////////////////////////////////////////
  13. #define COLOR_YELLOW 0xFFFF00AA
  14. #define FILTERSCRIPT
  15. #define DIALOG_MUSIC 984
  16. #define DIALOG_MUSIC_PLAYLISTS 983
  17. #define DIALOG_MUSIC_HITS 982
  18. #define DIALOG_MUSIC_HITSS 981
  19. #define DIALOG_MUSIC_HITSSS 980
  20. #define DIALOG_MUSIC_DRAKE 952
  21. #define DIALOG_MUSIC_MACKLEMORE 953
  22. #define DIALOG_MUSIC_JAYZ 954
  23. #define DIALOG_MUSIC_KESHA 955
  24. #define DIALOG_MUSIC_CHILDISH 956
  25. #define DIALOG_MUSIC_ADMINMUSIC 957
  26.  
  27. #include <a_samp>
  28. #include <zcmd>
  29. #if defined FILTERSCRIPT
  30.  
  31. public OnFilterScriptInit()
  32. {
  33. print("\n--------------------------------------");
  34. print(" B'Stream V.2");
  35. print("By BoxBonik(BoxBoy)");
  36. print("--------------------------------------\n");
  37. return 1;
  38. }
  39.  
  40. public OnFilterScriptExit()
  41. {
  42. return 1;
  43. }
  44.  
  45. #else
  46.  
  47. main()
  48. {
  49. print("\n----------------------------------");
  50. print(" Blank Gamemode by your name here");
  51. print("----------------------------------\n");
  52. }
  53.  
  54. #endif
  55.  
  56. public OnGameModeInit()
  57. {
  58. // Don't use these lines if it's a filterscript
  59. SetGameModeText("Blank Script");
  60. AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
  61. return 1;
  62. }
  63.  
  64. public OnGameModeExit()
  65. {
  66. return 1;
  67. }
  68.  
  69. public OnPlayerRequestClass(playerid, classid)
  70. {
  71. SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
  72. SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
  73. SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
  74. return 1;
  75. }
  76.  
  77. public OnPlayerConnect(playerid)
  78. {
  79. return 1;
  80. }
  81.  
  82. public OnPlayerDisconnect(playerid, reason)
  83. {
  84. return 1;
  85. }
  86.  
  87. public OnPlayerSpawn(playerid)
  88. {
  89. return 1;
  90. }
  91.  
  92. public OnPlayerDeath(playerid, killerid, reason)
  93. {
  94. return 1;
  95. }
  96.  
  97. public OnVehicleSpawn(vehicleid)
  98. {
  99. return 1;
  100. }
  101.  
  102. public OnVehicleDeath(vehicleid, killerid)
  103. {
  104. return 1;
  105. }
  106.  
  107. public OnPlayerText(playerid, text[])
  108. {
  109. return 1;
  110. }
  111. public OnPlayerCommandText(playerid, cmdtext[])
  112. {
  113. return 1;
  114. }
  115. public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
  116. {
  117. return 1;
  118. }
  119.  
  120. public OnPlayerExitVehicle(playerid, vehicleid)
  121. {
  122. return 1;
  123. }
  124.  
  125. public OnPlayerStateChange(playerid, newstate, oldstate)
  126. {
  127. return 1;
  128. }
  129.  
  130. public OnPlayerEnterCheckpoint(playerid)
  131. {
  132. return 1;
  133. }
  134.  
  135. public OnPlayerLeaveCheckpoint(playerid)
  136. {
  137. return 1;
  138. }
  139.  
  140. public OnPlayerEnterRaceCheckpoint(playerid)
  141. {
  142. return 1;
  143. }
  144.  
  145. public OnPlayerLeaveRaceCheckpoint(playerid)
  146. {
  147. return 1;
  148. }
  149.  
  150. public OnRconCommand(cmd[])
  151. {
  152. return 1;
  153. }
  154.  
  155. public OnPlayerRequestSpawn(playerid)
  156. {
  157. return 1;
  158. }
  159.  
  160. public OnObjectMoved(objectid)
  161. {
  162. return 1;
  163. }
  164.  
  165. public OnPlayerObjectMoved(playerid, objectid)
  166. {
  167. return 1;
  168. }
  169.  
  170. public OnPlayerPickUpPickup(playerid, pickupid)
  171. {
  172. return 1;
  173. }
  174.  
  175. public OnVehicleMod(playerid, vehicleid, componentid)
  176. {
  177. return 1;
  178. }
  179.  
  180. public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
  181. {
  182. return 1;
  183. }
  184.  
  185. public OnVehicleRespray(playerid, vehicleid, color1, color2)
  186. {
  187. return 1;
  188. }
  189.  
  190. public OnPlayerSelectedMenuRow(playerid, row)
  191. {
  192. return 1;
  193. }
  194.  
  195. public OnPlayerExitedMenu(playerid)
  196. {
  197. return 1;
  198. }
  199.  
  200. public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
  201. {
  202. return 1;
  203. }
  204.  
  205. public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
  206. {
  207. return 1;
  208. }
  209.  
  210. public OnRconLoginAttempt(ip[], password[], success)
  211. {
  212. return 1;
  213. }
  214.  
  215. public OnPlayerUpdate(playerid)
  216. {
  217. return 1;
  218. }
  219.  
  220. public OnPlayerStreamIn(playerid, forplayerid)
  221. {
  222. return 1;
  223. }
  224.  
  225. public OnPlayerStreamOut(playerid, forplayerid)
  226. {
  227. return 1;
  228. }
  229.  
  230. public OnVehicleStreamIn(vehicleid, forplayerid)
  231. {
  232. return 1;
  233. }
  234.  
  235. public OnVehicleStreamOut(vehicleid, forplayerid)
  236. {
  237. return 1;
  238. }
  239.  
  240. public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
  241. {
  242. if(dialogid == DIALOG_MUSIC)
  243. {
  244. if(response)
  245. {
  246. switch(listitem)
  247. {
  248. case 0:
  249. {
  250. ShowPlayerDialog(playerid, DIALOG_MUSIC_PLAYLISTS, DIALOG_STYLE_LIST, "Radio Stations", "Mixed Rock", "Play","Cancel");
  251. }
  252. case 1:
  253. {
  254. ShowPlayerDialog(playerid, DIALOG_MUSIC_HITS, DIALOG_STYLE_LIST, "2013 Hit Songs", "Lady Gaga - Applause\nLana Del Rey - Summertime Sadness\nLorde - Royals\nMiley Cyrus - Wrecking Ball\nWake Me Up -- Avicii ft. Aloe Blacc\nBlurred Lines - Robin Thicke\nCapital Cities - Safe & Sound\nDrake - Hold On We're Going Home\nJay Z FT Justin Timberlake - Holy Grail\nKaty Perry - Roar", "Play", "Back");
  255. }
  256. case 2:
  257. {
  258. ShowPlayerDialog(playerid, DIALOG_MUSIC_HITSS, DIALOG_STYLE_LIST, "2012 Hit Songs", "LMFAO - Sexy and i know it\nRack City - Tyga\nTrain - Drive By\nCarly Rae Jepsen - Call Me Maybe\nWhistle - Flo Rida\nDrake ft. Rihanna - Take Care\nYoung, Wild And Free - Wiz Khalifa feat. Snoop Dogg\nFlo Rida - Good Feeling\nJay-Z ft Kanye West - Niggas In Paris\nKaty Perry - The One That Got Away","Play","Back");
  259. }
  260. case 3:
  261. {
  262. ShowPlayerDialog(playerid, DIALOG_MUSIC_HITSSS, DIALOG_STYLE_LIST, "2011 Hit Songs", "Kesha - Blow\nBorn This Way- Lady Gaga\nLupe Fiasco - The Show Goes on\nGrenade-Bruno Mars\nGym Class Heroes - Stereo Hearts\nParty Rock Anthem\nI Need A Doctor - Eminem ft. Dr. Dre And Skylar Grey\nWiz Khalifa - No Sleep\nKaty Perry - ET\nWiz Khalifa- Black and Yellow","Play","Back");
  263. }
  264. case 4:
  265. {
  266. ShowPlayerDialog(playerid, DIALOG_MUSIC_DRAKE, DIALOG_STYLE_LIST, "Top 5 Drake Songs", "Drake Best I Ever Had\nDrake Headlines\nDrake Marvins Room\nDrake Ft Kanye West Forever\nDrake Over", "Play", "Back");
  267. }
  268. case 5:
  269. {
  270. ShowPlayerDialog(playerid, DIALOG_MUSIC_MACKLEMORE, DIALOG_STYLE_LIST, "Top 5 Macklemore Songs", "Macklemore - And We Danced\nMacklemore - Can't Hold Us\nMacklemore - Irish Celebration\nMacklemore - Same Love\nMacklemore - Thrift Shop","Play","Back");
  271. }
  272. case 6:
  273. {
  274. ShowPlayerDialog(playerid, DIALOG_MUSIC_JAYZ, DIALOG_STYLE_LIST, "Top 5 Jay Z Songs", "Jay Z 99 Problems\nJay Z Dirt Off Your Shoulder\nJay Z Dead President 2\nJay Z Empire State Of Mind\nJay Z Feat Eminem Renegade","Play","Back");
  275. }
  276. case 7:
  277. {
  278. ShowPlayerDialog(playerid, DIALOG_MUSIC_KESHA, DIALOG_STYLE_LIST, "Top 5 Ke$ha Songs", "We R Who We R - Ke$ha\nKe$ha - Take It Off\nKe$ha - Your Love Is My Drug\nPittbull Feat Ke$ha - Timber\nKe$ha - Tik Tok","Play","Back");
  279. }
  280. case 8:
  281. {
  282. ShowPlayerDialog(playerid, DIALOG_MUSIC_CHILDISH, DIALOG_STYLE_LIST, "Top 5 Childish Gambino Songs", "Childish Gambino - Freaks And Geeks\nChildish Gambino - Bonfire\nChildish Gambino - You See Me\nChildish Gambino - That Power\nChildish Gambino - Do You Like","Play","Back");
  283. }
  284. case 9:
  285. {
  286. ShowPlayerDialog(playerid, DIALOG_MUSIC_ADMINMUSIC, DIALOG_STYLE_LIST, "RCON Admin Playlist", "You Think\nHello World\n Home Town\nMiss Me\nNew Town\nSunny\n3foottall\nBaddest\nBombBay\nBoy\nSRH","Play","Back");
  287. }
  288. }
  289. }
  290. }
  291. if(dialogid == DIALOG_MUSIC_ADMINMUSIC)
  292. {
  293. if(response)
  294. {
  295. switch(listitem)
  296. {
  297. case 0:
  298. {
  299. if(IsPlayerAdmin(playerid))
  300. {
  301. for(new i = 0; i < MAX_PLAYERS; i++)
  302. PlayAudioStreamForPlayer(i, "http://k007.kiwi6.com/hotlink/zkxala9tc6/youthink.mp3");
  303. new szPlayerName[MAX_PLAYER_NAME], szMessage[74];
  304. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  305. format(szMessage, sizeof(szMessage), "%s has start a Audio Stream", szPlayerName);
  306. SendClientMessageToAll(COLOR_YELLOW, szMessage); // Replace 0 with the colour
  307. }
  308. else return SendClientMessage(playerid, COLOR_YELLOW, "You are not allowed to stream music for others!");
  309. }
  310. case 1:
  311. {
  312. if(IsPlayerAdmin(playerid))
  313. {
  314. for(new i = 0; i < MAX_PLAYERS; i++)
  315. PlayAudioStreamForPlayer(i, "http://k007.kiwi6.com/hotlink/7dvtl1fpd0/helloworld.mp3");
  316. new szPlayerName[MAX_PLAYER_NAME], szMessage[74];
  317. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  318. format(szMessage, sizeof(szMessage), "%s has start a Audio Stream", szPlayerName);
  319. SendClientMessageToAll(COLOR_YELLOW, szMessage); // Replace 0 with the colour
  320. }
  321. else return SendClientMessage(playerid, COLOR_YELLOW, "You are not allowed to stream music for others!");
  322. }
  323. case 2:
  324. {
  325. if(IsPlayerAdmin(playerid))
  326. {
  327. for(new i = 0; i < MAX_PLAYERS; i++)
  328. PlayAudioStreamForPlayer(i, "http://k007.kiwi6.com/hotlink/5qadcg7r3s/HomeTown.mp3");
  329. new szPlayerName[MAX_PLAYER_NAME], szMessage[74];
  330. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  331. format(szMessage, sizeof(szMessage), "%s has start a Audio Stream", szPlayerName);
  332. SendClientMessageToAll(COLOR_YELLOW, szMessage); // Replace 0 with the colour
  333. }
  334. else return SendClientMessage(playerid, COLOR_YELLOW, "You are not allowed to stream music for others!");
  335. }
  336. case 3:
  337. {
  338. if(IsPlayerAdmin(playerid))
  339. {
  340. for(new i = 0; i < MAX_PLAYERS; i++)
  341. PlayAudioStreamForPlayer(i, "http://k007.kiwi6.com/hotlink/m9hgzwz86u/missme.mp3");
  342. new szPlayerName[MAX_PLAYER_NAME], szMessage[74];
  343. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  344. format(szMessage, sizeof(szMessage), "%s has start a Audio Stream", szPlayerName);
  345. SendClientMessageToAll(COLOR_YELLOW, szMessage); // Replace 0 with the colour
  346. }
  347. else return SendClientMessage(playerid, COLOR_YELLOW, "You are not allowed to stream music for others!");
  348. }
  349. case 4:
  350. {
  351. if(IsPlayerAdmin(playerid))
  352. {
  353. for(new i = 0; i < MAX_PLAYERS; i++)
  354. PlayAudioStreamForPlayer(i, "http://k007.kiwi6.com/hotlink/gm73f6lo8q/newtown.mp3");
  355. new szPlayerName[MAX_PLAYER_NAME], szMessage[74];
  356. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  357. format(szMessage, sizeof(szMessage), "%s has start a Audio Stream", szPlayerName);
  358. SendClientMessageToAll(COLOR_YELLOW, szMessage); // Replace 0 with the colour
  359. }
  360. else return SendClientMessage(playerid, COLOR_YELLOW, "You are not allowed to stream music for others!");
  361. }
  362. case 5:
  363. {
  364. if(IsPlayerAdmin(playerid))
  365. {
  366. for(new i = 0; i < MAX_PLAYERS; i++)
  367. PlayAudioStreamForPlayer(i, "http://k007.kiwi6.com/hotlink/jdkri4ug2p/Sunny.mp3");
  368. new szPlayerName[MAX_PLAYER_NAME], szMessage[74];
  369. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  370. format(szMessage, sizeof(szMessage), "%s has start a Audio Stream", szPlayerName);
  371. SendClientMessageToAll(COLOR_YELLOW, szMessage); // Replace 0 with the colour
  372. }
  373. else return SendClientMessage(playerid, COLOR_YELLOW, "You are not allowed to stream music for others!");
  374. }
  375. case 6:
  376. {
  377. if(IsPlayerAdmin(playerid))
  378. {
  379. for(new i = 0; i < MAX_PLAYERS; i++)
  380. PlayAudioStreamForPlayer(i, "http://k007.kiwi6.com/hotlink/4f73y2xsz4/3foottall.mp3");
  381. new szPlayerName[MAX_PLAYER_NAME], szMessage[74];
  382. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  383. format(szMessage, sizeof(szMessage), "%s has start a Audio Stream", szPlayerName);
  384. SendClientMessageToAll(COLOR_YELLOW, szMessage); // Replace 0 with the colour
  385. }
  386. else return SendClientMessage(playerid, COLOR_YELLOW, "You are not allowed to stream music for others!");
  387. }
  388. case 7:
  389. {
  390. if(IsPlayerAdmin(playerid))
  391. {
  392. for(new i = 0; i < MAX_PLAYERS; i++)
  393. PlayAudioStreamForPlayer(i, "http://k007.kiwi6.com/hotlink/iyi9j0qybo/baddest.mp3");
  394. new szPlayerName[MAX_PLAYER_NAME], szMessage[74];
  395. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  396. format(szMessage, sizeof(szMessage), "%s has start a Audio Stream", szPlayerName);
  397. SendClientMessageToAll(COLOR_YELLOW, szMessage); // Replace 0 with the colour
  398. }
  399. else return SendClientMessage(playerid, COLOR_YELLOW, "You are not allowed to stream music for others!");
  400. }
  401. case 8:
  402. {
  403. if(IsPlayerAdmin(playerid))
  404. {
  405. for(new i = 0; i < MAX_PLAYERS; i++)
  406. PlayAudioStreamForPlayer(i, "http://k007.kiwi6.com/hotlink/93gwrn7fuy/bombay.mp3");
  407. new szPlayerName[MAX_PLAYER_NAME], szMessage[74];
  408. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  409. format(szMessage, sizeof(szMessage), "%s has start a Audio Stream", szPlayerName);
  410. SendClientMessageToAll(COLOR_YELLOW, szMessage); // Replace 0 with the colour
  411. }
  412. else return SendClientMessage(playerid, COLOR_YELLOW, "You are not allowed to stream music for others!");
  413. }
  414. case 9:
  415. {
  416. if(IsPlayerAdmin(playerid))
  417. {
  418. for(new i = 0; i < MAX_PLAYERS; i++)
  419. PlayAudioStreamForPlayer(i, "http://k007.kiwi6.com/hotlink/x9kqvstijd/boy.mp3");
  420. new szPlayerName[MAX_PLAYER_NAME], szMessage[74];
  421. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  422. format(szMessage, sizeof(szMessage), "%s has start a Audio Stream", szPlayerName);
  423. SendClientMessageToAll(COLOR_YELLOW, szMessage); // Replace 0 with the colour
  424. }
  425. else return SendClientMessage(playerid, COLOR_YELLOW, "You are not allowed to stream music for others!");
  426. }
  427. case 10:
  428. {
  429. if(IsPlayerAdmin(playerid))
  430. {
  431. for(new i = 0; i < MAX_PLAYERS; i++)
  432. PlayAudioStreamForPlayer(i, "http://k007.kiwi6.com/hotlink/n8lmfe8o58/SRH.mp3");
  433. new szPlayerName[MAX_PLAYER_NAME], szMessage[74];
  434. GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
  435. format(szMessage, sizeof(szMessage), "%s has start a Audio Stream", szPlayerName);
  436. SendClientMessageToAll(COLOR_YELLOW, szMessage); // Replace 0 with the colour
  437. }
  438. else return SendClientMessage(playerid, COLOR_YELLOW, "You are not allowed to stream music for others!");
  439. }
  440. }
  441. }
  442. else return ShowPlayerDialog(playerid, DIALOG_MUSIC, DIALOG_STYLE_LIST, "Music", "1.Radio Playlists\n2.2013 Hit Songs\n3.2012 Hit Songs\n4.2011 Hit Songs\n5.Top 5 Drake Songs\n6.Top 5 Macklemore Songs\n7.Top 5 Jay Z Songs\n8.Top 5 Ke$ha Songs\n9.Top 5 Childish Gambino Songs\n10.RCON Admin Music", "Open", "Cancel");
  443. }
  444. if(dialogid == DIALOG_MUSIC_CHILDISH)
  445. {
  446. if(response)
  447. {
  448. switch(listitem)
  449. {
  450. case 0:
  451. {
  452. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/sg4z9si0d7/Childish_Gambino_-_Freaks_and_Geeks_HD_Music_Video_.mp3");
  453. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  454. }
  455. case 1:
  456. {
  457. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/53bgtn5ih5/Childish_Gambino_-_That_Power.mp3");
  458. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  459. }
  460. case 2:
  461. {
  462. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/85qzdfj07z/Childish_Gambino_-_You_See_Me_with_Lyrics_HD.mp3");
  463. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  464. }
  465. case 3:
  466. {
  467. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/wkfi900q5g/Childish_Gambino-_Bonfire_w_lyrics_.mp3");
  468. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  469. }
  470. case 4:
  471. {
  472. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/hnm02h92xj/Childish_Gambino-Do_Ya_Like_w-lyrics_2_.mp3");
  473. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  474. }
  475. }
  476. }
  477. else return ShowPlayerDialog(playerid, DIALOG_MUSIC, DIALOG_STYLE_LIST, "Music", "1.Radio Playlists\n2.2013 Hit Songs\n3.2012 Hit Songs\n4.2011 Hit Songs\n5.Top 5 Drake Songs\n6.Top 5 Macklemore Songs\n7.Top 5 Jay Z Songs\n8.Top 5 Ke$ha Songs\n9.Top 5 Childish Gambino Songs\n10.RCON Admin Music", "Open", "Cancel");
  478. }
  479. if(dialogid == DIALOG_MUSIC_KESHA)
  480. {
  481. if(response)
  482. {
  483. switch(listitem)
  484. {
  485. case 0:
  486. {
  487. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/pje46erkne/Ke_ha_Kesha_-_We_R_Who_We_R_Lyrics_NEW_SONG_HQHD_.mp3");
  488. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  489. }
  490. case 1:
  491. {
  492. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/2ck5vbrqk9/Kesha_-_Take_It_Off_with_Lyrics.mp3");
  493. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  494. }
  495. case 2:
  496. {
  497. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/zzsuyyk0bs/Kesha_-_Your_Love_Is_My_Drug_Lyrics_.mp3");
  498. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  499. }
  500. case 3:
  501. {
  502. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/u8wgwkenkp/Pitbull_feat_Kesha_-_Timber_-_Lyrics.mp3");
  503. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  504. }
  505. case 4:
  506. {
  507. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/89o5nj3t7w/TiK_ToK_Kesha_With_Lyrics_On_Screen_HQ.mp3");
  508. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  509. }
  510. }
  511. }
  512. else return ShowPlayerDialog(playerid, DIALOG_MUSIC, DIALOG_STYLE_LIST, "Music", "1.Radio Playlists\n2.2013 Hit Songs\n3.2012 Hit Songs\n4.2011 Hit Songs\n5.Top 5 Drake Songs\n6.Top 5 Macklemore Songs\n7.Top 5 Jay Z Songs\n8.Top 5 Ke$ha Songs\n9.Top 5 Childish Gambino Songs\n10.RCON Admin Music", "Open", "Cancel");
  513. }
  514. if(dialogid == DIALOG_MUSIC_JAYZ)
  515. {
  516. if(response)
  517. {
  518. switch(listitem)
  519. {
  520. case 0:
  521. {
  522. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/fe5ihwxuo6/99_Problems_Jay-Z_-_Lyrics.mp3");
  523. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  524. }
  525. case 1:
  526. {
  527. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/creqp35dhw/Jay_Z_Dirt_off_your_shoulder_lyrics.mp3");
  528. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  529. }
  530. case 2:
  531. {
  532. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/08l1o4ah50/Jay-Z_-_Dead_Presidents_II_with_lyrics_.mp3");
  533. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  534. }
  535. case 3:
  536. {
  537. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/m8ul4grqmd/Jay-Z_-_Empire_State_of_Mind_with_Lyrics.mp3");
  538. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  539. }
  540. case 4:
  541. {
  542. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/nn6yxzh7vs/Jay-Z_Feat._Eminem_-_Renegade_lyrics.mp3");
  543. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  544. }
  545. }
  546. }
  547. else return ShowPlayerDialog(playerid, DIALOG_MUSIC, DIALOG_STYLE_LIST, "Music", "1.Radio Playlists\n2.2013 Hit Songs\n3.2012 Hit Songs\n4.2011 Hit Songs\n5.Top 5 Drake Songs\n6.Top 5 Macklemore Songs\n7.Top 5 Jay Z Songs\n8.Top 5 Ke$ha Songs\n9.Top 5 Childish Gambino Songs\n10.RCON Admin Music", "Open", "Cancel");
  548. }
  549. if(dialogid == DIALOG_MUSIC_MACKLEMORE)
  550. {
  551. if(response)
  552. {
  553. switch(listitem)
  554. {
  555. case 0:
  556. {
  557. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/rstcigxxbh/Macklemore_-_And_we_danced_lyrics.mp3");
  558. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  559. }
  560. case 1:
  561. {
  562. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/7oaalyia23/Macklemore_-_Can_t_hold_us_Lyrics.mp3");
  563. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  564. }
  565. case 2:
  566. {
  567. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/bx1tfskzkw/MACKLEMORE_and_RYAN_LEWIS_-_Irish_Celebration_Official_Music_Video_.mp3");
  568. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  569. }
  570. case 3:
  571. {
  572. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/z25q88asey/Macklemore_and_amp_Ryan_Lewis-_Same_Love_feat._Mary_Lambert_Lyric_Video_.mp3");
  573. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  574. }
  575. case 4:
  576. {
  577. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/4cyba0ue9p/Macklemore-_Thrift_Shop-_ACCURATE_LYRICS_ON_SCREEN_.mp3");
  578. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  579. }
  580. }
  581. }
  582. else return ShowPlayerDialog(playerid, DIALOG_MUSIC, DIALOG_STYLE_LIST, "Music", "1.Radio Playlists\n2.2013 Hit Songs\n3.2012 Hit Songs\n4.2011 Hit Songs\n5.Top 5 Drake Songs\n6.Top 5 Macklemore Songs\n7.Top 5 Jay Z Songs\n8.Top 5 Ke$ha Songs\n9.Top 5 Childish Gambino Songs\n10.RCON Admin Music", "Open", "Cancel");
  583. }
  584. if(dialogid == DIALOG_MUSIC_DRAKE)
  585. {
  586. if(response)
  587. {
  588. switch(listitem)
  589. {
  590. case 0:
  591. {
  592. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/32nfg0538n/Drake_-_Best_I_Ever_Had_w_Lyrics.mp3");
  593. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  594. }
  595. case 1:
  596. {
  597. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/d6udowq7sf/Drake_-_Headlines_Lyrics_.mp3");
  598. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  599. }
  600. case 2:
  601. {
  602. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/cl7k70rpwu/Drake_-_Marvins_Room_Lyrics_.mp3");
  603. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  604. }
  605. case 3:
  606. {
  607. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/ln4nxvsxt4/Drake_Ft._Kanye_West_Lil_Wayne_and_amp_Eminem_-_Forever_Original_Lyrics_.mp3");
  608. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  609. }
  610. case 4:
  611. {
  612. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/bpl7jz23a3/Over-Drake_Lyrics_On_Screen_.mp3");
  613. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  614. }
  615. }
  616. }
  617. else return ShowPlayerDialog(playerid, DIALOG_MUSIC, DIALOG_STYLE_LIST, "Music", "1.Radio Playlists\n2.2013 Hit Songs\n3.2012 Hit Songs\n4.2011 Hit Songs\n5.Top 5 Drake Songs\n6.Top 5 Macklemore Songs\n7.Top 5 Jay Z Songs\n8.Top 5 Ke$ha Songs\n9.Top 5 Childish Gambino Songs\n10.RCON Admin Music", "Open", "Cancel");
  618. }
  619. if(dialogid == DIALOG_MUSIC_PLAYLISTS)
  620. {
  621. if(response)
  622. {
  623. switch(listitem)
  624. {
  625. case 0:
  626. {
  627. PlayAudioStreamForPlayer(playerid, "http://www.radioparadise.com/musiclinks/rp_128.m3u");
  628. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  629. }
  630. }
  631. }
  632. else return ShowPlayerDialog(playerid, DIALOG_MUSIC, DIALOG_STYLE_LIST, "Music", "1.Radio Playlists\n2.2013 Hit Songs\n3.2012 Hit Songs\n4.2011 Hit Songs\n5.Top 5 Drake Songs\n6.Top 5 Macklemore Songs\n7.Top 5 Jay Z Songs\n8.Top 5 Ke$ha Songs\n9.Top 5 Childish Gambino Songs\n10.RCON Admin Music", "Open", "Cancel");
  633. }
  634. if(dialogid == DIALOG_MUSIC_HITSSS)
  635. {
  636. if(response)
  637. {
  638. switch(listitem)
  639. {
  640. case 0:
  641. {
  642. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/8ih22w6d45/Kesha_-_Blow_Lyrics.mp3");
  643. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  644. }
  645. case 1:
  646. {
  647. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/ds3c3zkbsz/Born_This_Way-_Lady_Gaga_LYRICS.mp3");
  648. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  649. }
  650. case 2:
  651. {
  652. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/b4nig4ey4g/Lupe_Fiasco_-_The_Show_Goes_on_lyrics_.mp3");
  653. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  654. }
  655. case 3:
  656. {
  657. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/6dd9b7ni9z/Grenade-Bruno_Mars_Lyrics.mp3");
  658. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  659. }
  660. case 4:
  661. {
  662. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/n7mreil6or/Gym_Class_Heroes_-_Stereo_Hearts_Lyrics.mp3");
  663. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  664. }
  665. case 5:
  666. {
  667. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/gvmfdqbhvd/Party_Rock_Anthem_Audio_.mp3");
  668. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  669. }
  670. case 6:
  671. {
  672. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/qylbo15cqc/I_Need_A_Doctor_-_Eminem_ft._Dr._Dre_and_amp_Skylar_Grey_Lyrics.mp3");
  673. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  674. }
  675. case 7:
  676. {
  677. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/ctdfm61y07/Wiz_Khalifa_-_No_Sleep_HD_LYRICS_.mp3");
  678. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  679. }
  680. case 8:
  681. {
  682. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/qgdx9ku18q/Katy_Perry_-_ET_Lyrics..mp3");
  683. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  684. }
  685. case 9:
  686. {
  687. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/dz6reiw0yy/Wiz_Khalifa-_Black_and_Yellow_LYRICS_.mp3");
  688. SendClientMessage(playerid, COLOR_YELLOW, "You have started a AudioSteam");
  689. }
  690. }
  691. }
  692. else return ShowPlayerDialog(playerid, DIALOG_MUSIC, DIALOG_STYLE_LIST, "Music", "1.Radio Playlists\n2.2013 Hit Songs\n3.2012 Hit Songs\n4.2011 Hit Songs\n5.Top 5 Drake Songs\n6.Top 5 Macklemore Songs\n7.Top 5 Jay Z Songs\n8.Top 5 Ke$ha Songs\n9.Top 5 Childish Gambino Songs\n10.RCON Admin Music", "Open", "Cancel");
  693. }
  694. if(dialogid == DIALOG_MUSIC_HITSS)
  695. {
  696. if(response)
  697. {
  698. switch(listitem)
  699. {
  700. case 0:
  701. {
  702. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/fs33xwhxur/LMFAO_-_Sexy_and_i_know_it_lyrics_NEW.mp3");
  703. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  704. }
  705. case 1:
  706. {
  707. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/u75m71cknm/Rack_City_-_Tyga_-_Lyrics.mp3");
  708. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  709. }
  710. case 2:
  711. {
  712. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/504v3dai7q/Train_-_Drive_By_Lyrics.mp3");
  713. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  714. }
  715. case 3:
  716. {
  717. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/ln8r93xtd8/Carly_Rae_Jepsen_-_Call_Me_Maybe_LYRICS_-_New_Single_.mp3");
  718. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  719. }
  720. case 4:
  721. {
  722. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/ouhqlyxqxe/Whistle_-_Flo_Rida_-_Lyrics.mp3");
  723. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  724. }
  725. case 5:
  726. {
  727. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/lobvxvlgdd/Drake_ft._Rihanna_-_Take_Care_LYRICS_.mp3");
  728. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  729. }
  730. case 6:
  731. {
  732. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/1zbx0r6fo3/Young_Wild_and_amp_Free_Lyrics_-_Wiz_Khalifa_feat._Snoop_Dogg.mp3");
  733. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  734. }
  735. case 7:
  736. {
  737. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/9rydl3npcc/Flo_Rida_-_Good_Feeling_Lyrics_on_screen_.mp3");
  738. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  739. }
  740. case 8:
  741. {
  742. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/v83nunvfef/Jay-Z_ft_Kanye_West_-_Niggas_In_Paris_LYRICS_ON_SCREEN_HD_.mp3");
  743. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  744. }
  745. case 9:
  746. {
  747. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/yczouprm99/Katy_Perry_-_The_One_That_Got_Away_Lyrics.mp3");
  748. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  749. }
  750. }
  751. }
  752. else return ShowPlayerDialog(playerid, DIALOG_MUSIC, DIALOG_STYLE_LIST, "Music", "1.Radio Playlists\n2.2013 Hit Songs\n3.2012 Hit Songs\n4.2011 Hit Songs\n5.Top 5 Drake Songs\n6.Top 5 Macklemore Songs\n7.Top 5 Jay Z Songs\n8.Top 5 Ke$ha Songs\n9.Top 5 Childish Gambino Songs\n10.RCON Admin Music", "Open", "Cancel");
  753. }
  754. if(dialogid == DIALOG_MUSIC_HITS)
  755. {
  756. if(response)
  757. {
  758. switch(listitem)
  759. {
  760. case 0:
  761. {
  762. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/2c77kaegt5/Lady_Gaga_-_Applause_Official_.mp3");
  763. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  764. }
  765. case 1:
  766. {
  767. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/1v4l82x4nu/Lana_Del_Rey_-_Summertime_Sadness.mp3");
  768. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  769. }
  770. case 2:
  771. {
  772. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/11os4ugqn1/Lorde_-_Royals.mp3");
  773. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  774. }
  775. case 3:
  776. {
  777. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/i803retrlq/Miley_Cyrus_-_Wrecking_Ball.mp3");
  778. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  779. }
  780. case 4:
  781. {
  782. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/hgfd63p8n8/Wake_Me_Up_--_Avicii_ft._Aloe_Blacc_Lyrics.mp3");
  783. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  784. }
  785. case 5:
  786. {
  787. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/a7fl3k6hr3/Blurred_Lines_-_Robin_Thicke_Lyrics.mp3");
  788. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  789. }
  790. case 6:
  791. {
  792. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/ub1g2zvsj8/Capital_Cities_-_Safe_and_Sound.mp3");
  793. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  794. }
  795. case 7:
  796. {
  797. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/66h4m2mg7p/Drake_-_Hold_On_We_re_Going_Home_Lyrics_.mp3");
  798. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  799. }
  800. case 8:
  801. {
  802. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/wldmg72u3z/JAY_Z_and_quot_Holy_Grail_and_quot_featuring_Justin_Timberlake.mp3");
  803. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  804. }
  805. case 9:
  806. {
  807. PlayAudioStreamForPlayer(playerid, "http://k007.kiwi6.com/hotlink/olwfhi7yxh/Katy_Perry_-_Roar_Official_.mp3");
  808. SendClientMessage(playerid, COLOR_YELLOW, "You have started a Audio Stream");
  809. }
  810. }
  811. }
  812. else return ShowPlayerDialog(playerid, DIALOG_MUSIC, DIALOG_STYLE_LIST, "Music", "1.Radio Playlists\n2.2013 Hit Songs\n3.2012 Hit Songs\n4.2011 Hit Songs\n5.Top 5 Drake Songs\n6.Top 5 Macklemore Songs\n7.Top 5 Jay Z Songs\n8.Top 5 Ke$ha Songs\n9.Top 5 Childish Gambino Songs\n10.RCON Admin Music", "Open", "Cancel");
  813. }
  814. return 1;
  815. }
  816. public OnPlayerClickPlayer(playerid, clickedplayerid, source)
  817. {
  818. return 1;
  819. }
  820. CMD:music(playerid, params[])
  821. {
  822. ShowPlayerDialog(playerid, DIALOG_MUSIC, DIALOG_STYLE_LIST, "Music", "1.Radio Stations\n2.2013 Hit Songs\n3.2012 Hit Songs\n4.2011 Hit Songs\n5.Top 5 Drake Songs\n6.Top 5 Macklemore Songs\n7.Top 5 Jay Z Songs\n8.Top 5 Ke$ha Songs\n9.Top 5 Childish Gambino Songs\n10.RCON Admin Songs", "Open", "Cancel");
  823. return 1;
  824. }
  825. CMD:stopmusic(playerid, params[])
  826. {
  827. StopAudioStreamForPlayer(playerid);
  828. SendClientMessage(playerid, COLOR_YELLOW, "You have stopped the audio stream!");
  829. return 1;
  830. }
Add Comment
Please, Sign In to add comment