Need help with these errors
#7

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;
}
Reply


Messages In This Thread
Need fast help with errors and warnings. - by stormchaser206 - 28.04.2012, 19:28
Re: Need help with these errors - by Danny1 - 28.04.2012, 20:22
Re: Need help with these errors - by stormchaser206 - 28.04.2012, 20:26
Re: Need help with these errors - by Danny1 - 28.04.2012, 20:34
Re: Need help with these errors - by Arnold_Collins - 28.04.2012, 20:38
Re: Need help with these errors - by stormchaser206 - 28.04.2012, 20:40
Re: Need help with these errors - by Danny1 - 28.04.2012, 20:41
Re: Need help with these errors - by stormchaser206 - 28.04.2012, 20:42
Re: Need help with these errors - by Arnold_Collins - 28.04.2012, 20:44
Re: Need help with these errors - by Danny1 - 28.04.2012, 20:45

Forum Jump:


Users browsing this thread: 1 Guest(s)