Advertisement
Matrix1

Muzika

Jun 14th, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. //-------------------------------------------- [ Music ] ---------------------------------------------------------------------
  2. if(strcmp("/pustimuzika", cmdtext, true) == 0)
  3. {
  4. if(IsPlayerConnected(playerid))
  5. {
  6. if(PlayerInfo[playerid][pAdmin]<= 1 || PlayerInfo[playerid][pGameMaster]<= 1)
  7. {
  8. ShowPlayerDialog(playerid, 2012, DIALOG_STYLE_INPUT, "GalaxyWorld Radio","Vnesete Link od Pesnata","Vnesi","Izlez");
  9. }
  10. }
  11. return 1;
  12. }
  13.  
  14.  
  15. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  16.  
  17. if(dialogid == 2012) //
  18. {
  19. if(response)
  20. {
  21. for(new i=0; i<MAX_PLAYERS; i++)
  22. {
  23. if(IsPlayerConnected(i))
  24. {
  25. PlayAudioStreamForPlayer(i, inputtext);
  26. Muzika[playerid] = 1;
  27. GetPlayerName(playerid, sendername, sizeof(sendername));
  28. format(string, sizeof(string), "%s pusti muzika", sendername);
  29. SendClientMessageToAll(COLOR_LIGHTRED, string);
  30. }
  31. }
  32. }
  33. else
  34. {
  35. SendClientMessage(playerid, COLOR_WHITE, "Neste ovlasteni za ova komada !");
  36. }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement