[Ajuda] Ja Fiiz De Tudo So Que Nгo Saii Esse Erro "
#1

pessoal fuii add um dialog olha oque deeu !
Код:
C:\Users\Marllon\Downloads\GameMode\Brasil The Friends\Brasil The Friends\Brasil The Friends\gamemodes\TheReall.pwn(24) : error 075: input line too long (after substitutions)
C:\Users\Marllon\Downloads\GameMode\Brasil The Friends\Brasil The Friends\Brasil The Friends\gamemodes\TheReall.pwn(28) : error 075: input line too long (after substitutions)
C:\Users\Marllon\Downloads\GameMode\Brasil The Friends\Brasil The Friends\Brasil The Friends\gamemodes\TheReall.pwn(50) : warning 213: tag mismatch
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.
Maas Olha A Liinha Do Erro

Код:
public OnPlayerConnect(playerid)
{
    if(regrasc[playerid] == false)
    {
     ShowPlayerDialog(playerid, regras, DIALOG_STYLE_MSGBOX,"Regras The Real","Nгo Usar Xiter,Nгo Ser Ant-RPG,Sem DB/DM","Concordo","Discordo");
    }
    else
    {

    }
    return 1;
}
Reply
#2

Exprimenta:

pawn Код:
new dialog[256];
                      strcat(dialog,"Linha 1.. \n");
                      strcat(dialog,"Linha2 \n");
                      strcat(dialog,"Linha3 \n");
                      ShowPlayerDialog(playerid,125,DIALOG_STYLE_MSGBOX,"TITULO",dialog,"SIM", "NAO");
Reply
#3

Neem FOii !
Reply
#4

Ou ..
pawn Код:
public OnPlayerConnect(playerid)
{
    if(regrasc[playerid] == false)
    {
        new Msg[256];
        format(Msg, 256, "%s1. Nгo Usar Xiter,Nгo Ser Ant-RPG.\n", Msg);
        format(Msg, 256, "%s2. Nгo Ser Ant-RPG.\n", Msg);
        format(Msg, 256, "%s3. Sem DB/DM.\n", Msg);
        ShowPlayerDialog(playerid, regras, DIALOG_STYLE_MSGBOX, "Regras The Real:", Msg, "Concordo", "Discordo");
    }
    else
    {

    }
    return 1;
}
Reply
#5

Veja se esta definido em Bool.

pawn Код:
public OnPlayerConnect(playerid)
{
    if(regrasc[playerid] == 0)
    {
     ShowPlayerDialog(playerid, regras, DIALOG_STYLE_MSGBOX,"Regras The Real","Nгo Usar Xiter,Nгo Ser Ant-RPG,Sem DB/DM","Concordo","Discordo");
    }
    else
    {

    }
    return 1;
}
Reply
#6

Expecifica qual linha e!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)