[Ajuda]Sistema MP3
#5

Caro Matheus
Fiz um simples arquivinho pra vocк,
pawn Код:
forward EscreverMusica(playerid, musica[]);
public EscreverMusica(playerid, musica[]) {
    new celulas[ 128 ], nome[24];

    if(!fexist(File))
    {
        new File:Arquivo = fopen("musicas.ini", io_write);
        fclose(Arquivo);
    }

    GetPlayerName(playerid, nome, 24);
    format(celulas, sizeof(celulas), "%s pediu a musica %s\r\n", nome, musica);

    new File:Arquivo = fopen("musicas.ini", io_append);
    fwrite(Arquivo, celulas);
    fclose(Arquivo);

    return 1;
}
Como usar?

EscreverMusica(playerid, pedido);

pawn Код:
if (!strcmp(cmd, "/pedirmusica", true)) {
    ShowPlayerDialog(playerid,2424,DIALOG_STYLE_INPUT,"MP3","Digite o nome do cantor E musica","Ok","Cancelar");
    return 1;
}
if(dialogid == 2424) {
    if(!response) return 1;
    new str[128];
    //format(str, 128, "%s", inputtext);
    EscreverMusica(playerid, inputtext);
    return 1;
}
Espero que esteje funcionando, bom proveito!

Caso vocк queira mostrar as musicas pedidas, faзa um while ou for para ler o arquivo e mostrar em um dialog enorme!
Reply


Messages In This Thread
[Ajuda]Sistema MP3 - by Matheus_Ecko - 26.03.2012, 22:32
Re: [Ajuda]Sistema MP3 - by histire - 26.03.2012, 22:46
Respuesta: [Ajuda]Sistema MP3 - by Matheus_Ecko - 26.03.2012, 22:51
Re: [Ajuda]Sistema MP3 - by histire - 26.03.2012, 22:52
Re: [Ajuda]Sistema MP3 - by Ricop522 - 26.03.2012, 22:54
Re: [Ajuda]Sistema MP3 - by histire - 26.03.2012, 22:56
Re: [Ajuda]Sistema MP3 - by DarkScripter - 26.03.2012, 23:12
Respuesta: [Ajuda]Sistema MP3 - by Matheus_Ecko - 26.03.2012, 23:20

Forum Jump:


Users browsing this thread: 1 Guest(s)