18.08.2012, 16:11
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
If possible, how would I go by adding it in a .php file?
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;
}