Un error raro
#3

Hola de nuevo xD.

El warning se debe a que la linea no esta en su posicion. Ej:
Lo tienes asi:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/giverpp", true))
    {
        //accion...
    }
    return 0;
}
cuando en realidad seria:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(!strcmp(cmdtext, "/giverpp", true))//lo ves? se mueve de posicion
    {
        //accion...
    }
    return 0;
}
Reply


Messages In This Thread
Un error raro - by [TDL]OGLoc - 09.01.2011, 23:20
Respuesta: Un error raro - by usern4me - 09.01.2011, 23:45
Respuesta: Un error raro - by [M]xFire - 09.01.2011, 23:46
Re: Un error raro - by [TDL]OGLoc - 10.01.2011, 00:02
Re: Un error raro - by [TDL]OGLoc - 10.01.2011, 00:03
Re: Un error raro - by AnGeeeL - 10.01.2011, 06:14
Re: Un error raro - by [TDL]OGLoc - 10.01.2011, 13:05
Re: Un error raro - by Dex007HLH - 10.01.2011, 15:50

Forum Jump:


Users browsing this thread: 1 Guest(s)