[AJUDA] error 006: must be assigned to an array
#2

Quote:
Originally Posted by Chivits
Galera, devido a conflitos nos menus do FS de corridas YRACE, estou tentando passalo para Dialogs ... porem estou com esse erro do titulo

o erro acontece na linha 6 do cуdigo abaixo ... se alguem puder ajudar.

pawn Код:
if(dialogid == menuvoltas)
{
    if(response)
    {
        new change=0;
        change = inputtext; //linha do erro
        if(RaceBuilders[playerid] != 0)
        {
            Blaps[b(playerid)] = change; //tentei por o inputtext aqui, mais deu o mesmo erro
            if(Blaps[b(playerid)] < 1) Blaps[b(playerid)] = 1;
        }
        else
        {
            Racelaps = change;
            if(Racelaps < 1) Racelaps = 1;
        }
    }
    if(!response)
    {
    }
}
no caso o inputtext seria numerico ou texto ?
no caso se for numerico...

pawn Код:
if(dialogid == menuvoltas)
{
    if(response)
    {
        if(RaceBuilders[playerid] != 0)
        {
            Blaps[b(playerid)] = strval(inputtext);
            if(Blaps[b(playerid)] < 1) Blaps[b(playerid)] = 1;
        }
        else
        {
            Racelaps = change;
            if(Racelaps < 1) Racelaps = 1;
        }
    }
    if(!response)
    {
    }
}
Reply


Messages In This Thread
[AJUDA] error 006: must be assigned to an array - by Chivits - 20.03.2010, 03:47
Re: [AJUDA] error 006: must be assigned to an array - by Poderoso Chefгo - 20.03.2010, 09:27
Re: [AJUDA] error 006: must be assigned to an array - by Chivits - 20.03.2010, 11:32
Re: [AJUDA] error 006: must be assigned to an array - by Poderoso Chefгo - 21.03.2010, 15:05

Forum Jump:


Users browsing this thread: 1 Guest(s)