Guest User

Untitled

a guest
Sep 21st, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. new radiolist[][][] =
  2. {
  3. {"181.fm The Buzz", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=37586"},
  4. {"FM4", "http://yp.shoutcast.com/sbin/tunein-station.pls?id=581319"}
  5. };
  6.  
  7. CMD:setradio(playerid, params[])
  8. {
  9. new list[500];
  10. for(new i; i <= sizeof(radiolist); i++)
  11. {
  12. format(list,sizeof(list),"%s\r\n",radiolist[i][0]);
  13. ShowPlayerDialog(playerid, DIALOG_STYLE_LIST, 123,"Radio",list,"Play","Cancel");
  14. }
  15. return 1;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment