19.11.2011, 19:58
olha esse link e ver se tem uma nocao do RJJJ
https://sampforum.blast.hk/showthread.php?tid=249057
@EDIT
Num entendi muito bem mais tenta assim
https://sampforum.blast.hk/showthread.php?tid=249057
@EDIT
Num entendi muito bem mais tenta assim
PHP код:
stock bd_decrippass_usuario(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;
}