11.08.2012, 10:40
O.o
Код:
stock hashit(string[])
{
new rand = random(10,15);
new hashed = md5(md5(rand) . md5('%s')); // <-- "." ? Is wrong.. is not PHP
return hashed;
}
printf("Result: %s", hashit("string here"));

