Hey, i think i've got a deciphering problem:
Here's my code, it can work one way but i can't really figure out how to code it back to normal text:

alias password {
if ($2) {
set %e 1
while ($len($1) >= %e) {
set %d $calc(%d + $asc($mid($1,%e)))
inc %e 1
}
;sets a number based on the first word, the password
var %a 1
while (%a <= $len($2-)) {
set %>.blah %>.blah $+ $chr($calc($len($1) + %d + $asc($mid($2-,%a,1))))
inc %a 1
}
;sets %>.blah as a character based on: ' <length of password> + <ascii characters for password> + <the ascii character for the second word (chosen letter)> '
unset %e
unset %d
.timer -m 1 1 unset %>.blah
return %>.blah
}
}

Say i used $password(pass,text here)
it turns it into: /3/Û#-

So does anyone know how to get it back to text here? confused grin confused


The blue monkey is out of its barrel...