[Tutorial] Adicionar Comando Em Outra CallBack
#1

Eae Galera, Vim Explicar um tutorial bem legal que aprendi!

Jб Dizendo agora, quero falar " Se Gostou Obrigado, Se Nгo Gostou Faзa Melhor "

Comeзando:

esse tutorial ensina como colocar o comando Ex: OnPlayerCommandText(playerid, "/Destrancar");
Bem Vamos la
se vc tem algum comando em DIALOG_STYLE_LIST e que nas primeiras linhas dele esteja assim

pawn Код:
ShowPlayerDialog(playerid,1,DIALOG_STYLE_LIST,"Comandos do Servidor","/Trancar - Tranca Veiculo\n/Destrancar - Destranca Veiculo\n/Reparar - Repara o Veiculo\n/Pistas - Visualisa Pistas de Drift","OK","Fechar");
e Dai
la em public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
esteja
pawn Код:
if(dialogid == 1){
    if(response){
        if(listitem == 0){

        }
        if(listitem == 1){

        }
        if(listitem == 2){

        }
        if(listitem == 3){

        }
    }
vc coloca embaixo das if(listitem == o exemplo la de cima OnPlayerCommandText(playerid, "/comando"); OLHA:

pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 1){
    if(response){
        if(listitem == 0){
        OnPlayerCommandText(playerid, "/Trancar");
        }
        if(listitem == 1){
        OnPlayerCommandText(playerid, "/Destrancar");
        }
        if(listitem == 2){
        OnPlayerCommandText(playerid, "/Reparar");
        }
        if(listitem == 3){
        OnPlayerCommandText(playerid, "/Pistas");
        }
    }
    else{
    }
}
return 1;
}

O Item do Dialog Vai Fazer a Aзгo Que Esta no Comando Colocado Nas Aspas ""


FIM!!
Reply


Messages In This Thread
Adicionar Comando Em Outra CallBack - by lucas24101 - 31.07.2011, 02:38
Re: Adicionar Comando Em Outra CallBack - by JonathanFeitosa - 31.07.2011, 02:52
Re: Adicionar Comando Em Outra CallBack - by Macintosh - 31.07.2011, 03:35
Re: Adicionar Comando Em Outra CallBack - by RockFire - 31.07.2011, 03:37
Re: Adicionar Comando Em Outra CallBack - by lucas24101 - 31.07.2011, 03:49
Re: Adicionar Comando Em Outra CallBack - by Josma_cmd - 31.07.2011, 04:01
Re: Adicionar Comando Em Outra CallBack - by Macintosh - 31.07.2011, 04:41
Re: Adicionar Comando Em Outra CallBack - by ApolloRJ - 01.08.2011, 15:06
Re: Adicionar Comando Em Outra CallBack - by Josma_cmd - 01.08.2011, 15:21

Forum Jump:


Users browsing this thread: 1 Guest(s)