Errors
#3

OK, No one's said that to me before, so dont yell at me.

Lines:
463:
pawn Код:
public OnRconCommand(cmd[])
{
    if(cmd == "noon") //Line 463
    {
        SetWorldTime(12);
    }
    return 1;
}
668:
pawn Код:
stock UserPath(playerid)
{
    new string[128],playername[MAX_PLAYER_NAME];
    GetPlayerName(playerid,playername,sizeof(playername));
    format(string,sizeof(string),PATH,playername);
    return string; //Line 668
}
683:
pawn Код:
stock udb_hash(buf[]) {
    new length=strlen(buf);
    new s1 = 1;
    new s2 = 0;
    new n;
    for (n=0; n<length; n++)
    {
       s1 = (s1 + buf[n]) % 65521;
       s2 = (s2 + s1)     % 65521;
    }
    return (s2 << 16) + s1; //Line 683
}
Reply


Messages In This Thread
Errors - by stormchaser206 - 13.10.2012, 14:18
Re: Errors - by gtakillerIV - 13.10.2012, 14:23
Re: Errors - by stormchaser206 - 13.10.2012, 14:35
Re: Errors - by gtakillerIV - 13.10.2012, 14:40
Re: Errors - by stormchaser206 - 13.10.2012, 14:45
Re: Errors - by gtakillerIV - 13.10.2012, 14:48
Re: Errors - by stormchaser206 - 13.10.2012, 14:58
Re: Errors - by FaceTutorialz - 13.10.2012, 15:02
Re: Errors - by stormchaser206 - 13.10.2012, 15:06
Re: Errors - by gtakillerIV - 13.10.2012, 15:08

Forum Jump:


Users browsing this thread: 2 Guest(s)