PW = new Array(68, 86, 89, 71, 82, 89, 76, 86);
PWK = String(Math.Floor(17724538.509055));
Word = "";
for (i = 0; i < PW.length; i++)
{
Word = Word + chr(PW - PWK.charAt(i));
} // end of for
Some secret code I guess... Especially following Bill Watson's usual kind of posting, i.e without code tags...
Recreates a word based on an array of characters minus the value of the corresponding digit in the PWK integer...
Properly posted, the following yields an interesting word!
Code:
PW = new Array(67, 75, 83, 84, 32, 91, 70, 87, 88, 87, 84);
PWK = String(Math.Floor(12780453586));
Word = "";
for (i = 0; i < PW.length; i++)
{
Word = Word + chr(PW[i] - PWK.charAt(i));
} // end of for
trace(Word);
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.