udb_hash in php?
#1

Waddup, since I'm not really good with php I'm asking for help here,
is it possible to make udb_hash working in php? I need it for my UCP

This it the original udb_hash stock

pawn Код:
stock udb_hash(buf[]) { //Credits to Dracoblue
    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;
}
If possible, how would I go by adding it in a .php file?
Reply


Messages In This Thread
udb_hash in php? - by milanosie - 18.08.2012, 16:11
Re: udb_hash in php? - by Bews - 12.02.2013, 12:15
Re: udb_hash in php? - by Bews - 13.02.2013, 12:48
Re: udb_hash in php? - by Bicentric - 13.02.2013, 12:50

Forum Jump:


Users browsing this thread: 1 Guest(s)