[Projeto] DJ em DIALOG
#1

[ pawn ]Bom Pessoal Sou um pouco Novo nesse fуrum, mais estarei Ensinando Como colocar um Sistema de DJ ou tocar Musica pra todos do seu server escutarem. й bem simples Primeiro

Depois de Ter FEITO tudo Entre no server й Escreva /dj ou /tocardj <<--comando somente pra admins!

================================================== =====================================
Код:
TOPO DA GM
#define COLOUR_INFORMACAO 0x00FF00FF
#define COLOUR_ERRO 0xFF0000FF


//Coloque isso em public OnPlayerText
if(strcmp("/dj", cmdtext, true) == 0 || strcmp("/tocardj", cmdtext, true) == 0) { 
if(CallRemoteFunction("GetPlayerAdminLevel","i",playerid) < 1) return SendClientMessage(playerid,COLOUR_ERRO,StringTable[8]);
SendClientMessage(playerid, COLOUR_INFORMACAO, "[INFO]: Escolha A Musica DJ! Arrebente no som!!");
ShowDJForPlayer(playerid);
return 1;}



//Coloque isso em Qualquer Local da GM, Recomendo Colocar onde tenha um Nome de Stock Jб vai Vim com Musica
//Vocк Pode adicionar mais Musica,caso preste bastante atenзгo nos codigos..
stock ShowDJForPlayer(playerid) 
{
ShowPlayerDialog(playerid,3684,DIALOG_STYLE_LIST,"DJ Solte o SOM:","ROCKSTARION\nAdicione MUSICA\nAdicione Musica","OK","Voltar");
return 1;
}


//Adicione isso em public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]) Aqui vem endereзo das //Musicas ou IP de radio..

if(dialogid == 3684)  //MENU FUNK RADIOS DO DJ
{
    if(!response)


    if(listitem == 0)
	{
    static i;                                    //RADIO ROCKSTATION
    for(i = GetMaxPlayers(); i > -1; --i) {

        PlayAudioStreamForPlayer(i, "http://212.48.110.146:8130");
    }
    return 1;
    }


    if(listitem == 1) //Adicione mais musica, Exemplo Essa й a  musica 1 Entгo tem o Numero [1] Adicione mais musica comforme os numeros 1, 2, 3, 4, 5, 6 etc.
	{
    static i;                                   //Adicione Mais musica, Sу preste atenзгo nos codigos
    for(i = GetMaxPlayers(); i > -1; --i) {

        PlayAudioStreamForPlayer(i, "Endereзo ou ip da RADIO AQUI");
    }
    return 1;
    }

    return 1;
}
[ /pawn ]
Reply


Messages In This Thread
DJ em DIALOG - by Roquee - 25.05.2014, 03:17
Re: DJ em DIALOG - by VictorNascimento - 25.05.2014, 03:22
Re: DJ em DIALOG - by BobbMarley - 25.05.2014, 03:23
Re: DJ em DIALOG - by Roquee - 25.05.2014, 03:26
Re: DJ em DIALOG - by Roquee - 25.05.2014, 03:28
Re: DJ em DIALOG - by Samuel300 - 25.05.2014, 03:57
Re: DJ em DIALOG - by Don_Speed - 25.05.2014, 09:59
Re: DJ em DIALOG - by Roquee - 26.05.2014, 00:48
Respuesta: DJ em DIALOG - by [BWL]Chamaleon - 26.05.2014, 17:37
Re: Respuesta: DJ em DIALOG - by Roquee - 30.05.2014, 07:10

Forum Jump:


Users browsing this thread: 4 Guest(s)