if x=8 we take the mumbled letters and go 8 places forward in the alphabet but it also carries over from Z to A the answer left after this equation is OWLBEAR TO THE RESCUE
import string up = string.uppercase data = 'GODTWSJ LG LZW JWKUMW' res = ''.join([up[(up.index(l) + 8) % 26] if l != ' ' else ' ' for l in data]) print(res)
Comments
OWLBEAR TO THE RESCUE
x->8 is X=F
X=F and so on...
Still would be nice to win something for once
GT : Y Fronts Man
good luck fellow adventures
OP - Sunshine: 16000 IL
Casual Dailies
X right 8 = x-rated x
Little cheesy, but I like the decoding game.
Which is actually more of a life lesson than a password....
a simple ROT-8 cypher
I love mine, but that purple one is awesome!
Solution in Python:
import string
up = string.uppercase
data = 'GODTWSJ LG LZW JWKUMW'
res = ''.join([up[(up.index(l) + 8) % 26] if l != ' ' else ' ' for l in data])
print(res)
Assuming its not hungry.