25.12.2012, 20:07
Alguem poderia me explicar como funciona isso ?!
Код:
stock Encrypt(string[])
{
for(new x=0; x < strlen(string); x++)
{
string[x] += (3^x) * (x % 15);
if(string[x] > (0xff))
{
string[x] -= 64;
}
}
return 1;
}



