[Ajuda] Problema Com Dialogue Box
#1

Olб gente, eu estava codando meu gm de zombie, e quando eu coloquei as Dialogues Box, no jogo quando fui testб-las dava sempre o erro "Unknown Command". Jб tentei arrumar varias vezes as Dialogues Box mas sempre dava o mesmo erro quando eu ia testб-las.Se alguйm poder me ajudar eu agradeзo.
Код:
if (strcmp("/comandos", cmdtext, true, 10) == 0)
	{
	ShowPlayerDialog(playerid, DIALOG_WELCOME, DIALOG_STYLE_MSGBOX, "~b~Comandos", "Nenhum no momento", "Fechar", "");
	return 1;
Код:
if (strcmp("/armas", cmdtext, true, 10) == 0)
       ShowPlayerDialog(playerid, Armas, DIALOG_STYLE_LIST, "Lista de Armas", "Eagle\nMP5\nM4\nKnife\nShotgun\n", "Selecionar", "Sair");
  public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    if(dialogid == Armas)
    {
        if(response)
        {

            if(listitem == 0)
            {
                GetPlayerMoney(playerid >= 250);
                GivePlayerWeapon(playerid, 24, 50);
                SendClientMessage(playerid, COR_VERDE, "[Info]Vocк adquiriu uma Eagle por 250 pratas.");
                ApplyAnimation(playerid, "DEALER", "shop_pay", 4.0, 0, 0, 0, 0, 0);
            }
            else if(listitem == 1)
            {
                GetPlayerMoney(playerid >= 600);
                GivePlayerWeapon(playerid, 29, 120);
                GivePlayerMoney(playerid, -400);
                SendClientMessage(playerid, COR_VERDE, "[Info]Vocк adquiriu uma MP5 por 600 pratas.");
                ApplyAnimation(playerid, "DEALER", "shop_pay", 4.0, 0, 0, 0, 0, 0);
            }
            else if(listitem == 2)
            {
                GetPlayerMoney(playerid >= 1100);
                GivePlayerWeapon(playerid, 31, 170);
                SendClientMessage(playerid, COR_VERDE, "[INFO]Vocк adquiriu uma M4 por 1.100 pratas.");
                ApplyAnimation(playerid, "DEALER", "shop_pay", 4.0, 0, 0, 0, 0, 0);
            }
            else if(listitem == 3)
            {
                GetPlayerMoney(playerid >= 50);
                GivePlayerWeapon(playerid, 4, 1);
                SendClientMessage(playerid, COR_VERDE, "[INFO]Vocк adquiriu uma Knife por 50 pratas.");
                ApplyAnimation(playerid, "DEALER", "shop_pay", 4.0, 0, 0, 0, 0, 0);
            }
            else if(listitem == 4)
            {
                GetPlayerMoney(playerid >= 550);
                GivePlayerWeapon(playerid, 25, 35);
                SendClientMessage(playerid, COR_VERDE, "[INFO]Vocк adquiriu uma Shotgun por 550 pratas.");
                ApplyAnimation(playerid, "DEALER", "shop_pay", 4.0, 0, 0, 0, 0, 0);
            }
		}
	}
        
	return 1;
}
Reply
#2

Ta mal identado , creio que nгo seja isso , mais oque eu fiz vai melhorar , PS: Adicionar #include zcmd

Code:

http://pastebin.com/yTLc8x1J

O problema esta na public OnPlayerCommandText poste ela ai ...
Reply
#3

Quote:
Originally Posted by shittt
Посмотреть сообщение
Ta mal identado , creio que nгo seja isso , mais oque eu fiz vai melhorar , PS: Adicionar #include zcmd

Code:

http://pastebin.com/yTLc8x1J

O problema esta na public OnPlayerCommandText poste ela ai ...
Bom, aqui esta a a minha OnPlayerCommandText:

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
	if (strcmp("/comandos", cmdtext, true, 10) == 0)
	{
	ShowPlayerDialog(playerid, DIALOG_WELCOME, DIALOG_STYLE_MSGBOX, "~b~Comandos", "Nenhum no momento", "Fechar", "");
	return 1;
	}
	CMD:armas(playerid, params[]) {
	ShowPlayerDialog(playerid, Armas, DIALOG_STYLE_LIST, "Lista de Armas", "Eagle\nMP5\nM4\nKnife\nShotgun\n", "Selecionar", "Sair");
	return 1;
}
Obs:Fui tentar substituir seu codigo pelo meu, mas o pawno acusa alguns erros na seguinte linha: CMD:armas(playerid, params[]) {.
Reply
#4

Quote:
Originally Posted by Scroll
Посмотреть сообщение
Bom, aqui esta a a minha OnPlayerCommandText:

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
	if (strcmp("/comandos", cmdtext, true, 10) == 0)
	{
	ShowPlayerDialog(playerid, DIALOG_WELCOME, DIALOG_STYLE_MSGBOX, "~b~Comandos", "Nenhum no momento", "Fechar", "");
	return 1;
	}
	CMD:armas(playerid, params[]) {
	ShowPlayerDialog(playerid, Armas, DIALOG_STYLE_LIST, "Lista de Armas", "Eagle\nMP5\nM4\nKnife\nShotgun\n", "Selecionar", "Sair");
	return 1;
}
Obs:Fui tentar substituir seu codigo pelo meu, mas o pawno acusa alguns erros na seguinte linha: CMD:armas(playerid, params[]) {.
Cara baixa a include zcmd , depois coloca em pawno/includes.

Depois abre o gamemode e bota
Код:
#include zcmd
depois de
Код:
#include <a_samp>
Depois

deleta essa public ai q voce posto
e substitui por essa : http://pastebin.com/yTLc8x1J
Reply
#5

Vlw Shittt, consegui arrumar eu ja tinha a include zcmd, o problema tava na public.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)