Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //-------------------------------------------- [ Music ] ---------------------------------------------------------------------
- if(strcmp("/pustimuzika", cmdtext, true) == 0)
- {
- if(IsPlayerConnected(playerid))
- {
- if(PlayerInfo[playerid][pAdmin]<= 1 || PlayerInfo[playerid][pGameMaster]<= 1)
- {
- ShowPlayerDialog(playerid, 2012, DIALOG_STYLE_INPUT, "GalaxyWorld Radio","Vnesete Link od Pesnata","Vnesi","Izlez");
- }
- }
- return 1;
- }
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- if(dialogid == 2012) //
- {
- if(response)
- {
- for(new i=0; i<MAX_PLAYERS; i++)
- {
- if(IsPlayerConnected(i))
- {
- PlayAudioStreamForPlayer(i, inputtext);
- Muzika[playerid] = 1;
- GetPlayerName(playerid, sendername, sizeof(sendername));
- format(string, sizeof(string), "%s pusti muzika", sendername);
- SendClientMessageToAll(COLOR_LIGHTRED, string);
- }
- }
- }
- else
- {
- SendClientMessage(playerid, COLOR_WHITE, "Neste ovlasteni za ova komada !");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement