Advertisement
Guest User

Musik

a guest
Sep 30th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public OnPlayerCommandText(playerid, cmdtext[]){
  2. {
  3. if (strcmp("/ipodan", cmdtext, true) == 0)
  4. {
  5. SendClientMessage(playerid, 0xFF0000FF, "Du hast den Ipod angeschalten.");
  6. PlayAudioStreamForPlayer(playerid, "http://www.iloveradio.de/");
  7. return 1;
  8. }
  9. if (strcmp("/ipodaus", cmdtext, true) == 0)
  10. {
  11. SendClientMessage(playerid, 0xFF0000FF, "Du hast den Ipod ausgeschalten.");
  12. StopAudioStreamForPlayer(playerid);
  13. return 1;
  14. }
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement