05.03.2015, 21:49
Estava vendo um Tutorial aqui do JFS , sobre dialog..... e estava criando uma dialog com 2 botoes
funcionou tudo certinho , porem eu nao consigo colocar + uma dialog com o botao proximo
eu fiz assim e ta funcionando , porem eu quero fazer + 1 uma dialog, assim :
1є Dialog aparece o botao proximo , aparece o 2є dialog tudo certinho , porem eu nao consigo colocar + 1 dialog ,
ou seja o 3є , vejam :
o que esta errado ?
funcionou tudo certinho , porem eu nao consigo colocar + uma dialog com o botao proximo
eu fiz assim e ta funcionando , porem eu quero fazer + 1 uma dialog, assim :
1є Dialog aparece o botao proximo , aparece o 2є dialog tudo certinho , porem eu nao consigo colocar + 1 dialog ,
ou seja o 3є , vejam :
pawn Код:
if(dialogid == 4)
{
if(response == 0)
{
SendClientMessage(playerid, Verde, "[Info]: If you have a question look for a admin.");
}
if(response == 1) // Lado Esquerdo Ou Seja " Proximo "
{
// Coloque Aqui as Funзхes ao Clickar " Proximo ", Quando Ele Clickar Proximo Vamos Fazer Abrir Outro MSGBOX.
ShowPlayerDialog(playerid, Cmds+1, DIALOG_STYLE_MSGBOX,"{F6FF00}Commands List {FFFFFF}:","{8FF63B}/Forum {5500FF}:Forum link\n{8FF63B}/Rules {5500FF}:To see the rules\n{8FF63B}/Skin {5500FF}:Change your skin\n{8FF63B}/Saveskin {5500FF}:Save your skin\n{8FF63B}/Teles {5500FF}:Teleporters\n{8FF63B}/Animlist {5500FF}:List of animations\n{8FF63B}/Credits {5500FF}:About the Server\n{8FF63B}/WantedL {5500FF}:Wanted List", "Next", "Close");
}
if(response == 2) // Lado Esquerdo Ou Seja " Proximo "
{
ShowPlayerDialog(playerid, Cmds+2, DIALOG_STYLE_MSGBOX,"{F6FF00}Commands List {FFFFFF}:","{8FF63B}/Minigames {5500FF}:Minigame List", "Close", "");
}
// Sу Para Lembrar no Final Estб Apenas UM Botгo, Estao Apenas Usamos Response, Nгo Precisa por == 0.
// й tб JFS+1 й So Para Nгo Definir Denovo ai Da Para Acrescentar +1,+2,+3,+4...
}
