Godfather login
#7

Quote:
Originally Posted by Aprezt
View Post
udb_hash code ??
Code:
/*Credits to Dracoblue*/
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
Godfather login - by Alex.Cone - 01.08.2012, 17:05
Re: Godfather login - by Roko_foko - 01.08.2012, 17:08
Respuesta: Godfather login - by Alex.Cone - 01.08.2012, 17:09
Re: Godfather login - by Roko_foko - 01.08.2012, 17:13
Respuesta: Godfather login - by Alex.Cone - 01.08.2012, 17:20
Re: Godfather login - by Aprezt - 01.08.2012, 17:22
Respuesta: Re: Godfather login - by Alex.Cone - 01.08.2012, 17:31
Respuesta: Godfather login - by Alex.Cone - 01.08.2012, 18:13

Forum Jump:


Users browsing this thread: 2 Guest(s)