Tripcode decoder (696)

331 Name: !WAHa.06x36 : 2007-10-28 13:19 ID:Heaven [Del]

Instead of using rand(), which does suck horribly, just use this:

    s1=((s1&4294967294)<<12)^(((s1<<13)^s1)>>19);
s2=((s2&4294967288)<<4)^(((s2<<2)^s2)>>25);
s3=((s3&4294967280)<<17)^(((s3<<3)^s3)>>11);
return s1^s2^s3;
This thread has been closed. You cannot post in this thread any longer.