[Pedido]Refencia ao registrar
#1

Galera eu keria um dialogo onde o player deve digitar quem o indico e o texto seja salvo em um arquivo .ini e isso deva aparecer apenas ao registrar obrigado
Reply
#2

Isto deve resolver o seu problema .


Coloque :


pawn Код:
//No OnPlayerRequestClass:

new NickName[30];
    GetPlayerName(playerid, NickName, 30);
    strcat(NickName, ".ini");
    if(!fexist(NickName))   ShowPlayerDialog(playerid, 230, DIALOG_STYLE_INPUT, "Pergunta", "Quem o chamou para jogar no servidor ?", "Confirmar", "Ninguйm");



//E, no OnDialogResponse:

    if(dialogid == 230)
    {
        new NickName[30];
        GetPlayerName(playerid, NickName, 30);
        strcat(NickName, ".ini");
        new File:Referencia = fopen(NickName, io_write);
        if(response) fwrite(Referencia, inputtext);
        else fwrite(Referencia, "Ninguйm");
        fclose(Referencia);
    }

O cуdigo acima criarб um arquivo de nome igual ao do jogador e de extensгo .ini na pasta scriptfiles.



Espero ter ajudado .
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)