Advertisement
SWEGold

Radio

Oct 28th, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. #include <a_samp>
  2. #include <audio>
  3.  
  4. // --------------------------------------------------
  5. public OnPlayerCommandText(playerid, cmdtext[])
  6. {
  7. if(!strcmp(cmdtext, "/radio"))
  8. {
  9. PlayAudioStreamForPlayer(playerid, "http://www.shoutcast.com/shoutcast_popup_player?station_id=219630&play_status=1&stn=HITZ%20NOW!/listen.pls");
  10. new long_string[50];
  11. strcat(long_string, "radio - Here you can listen to the server radio!");
  12. ShowPlayerDialog(playerid, 2, DIALOG_STYLE_MSGBOX, "Radio - Lets DO IT!", long_string, "Close", "");
  13. return 1;
  14. }
  15. return 0;
  16. }
  17. // ---------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement