You are viewing our Forum Archives. To view or take place in current topics click here.
Decode the message Game
Posted:

Decode the message GamePosted:

Transparency
  • Wise One
Status: Offline
Joined: Aug 22, 201112Year Member
Posts: 568
Reputation Power: 25
Status: Offline
Joined: Aug 22, 201112Year Member
Posts: 568
Reputation Power: 25
Hey guys, using a simple program I made based on a YouTube tutorial I've encoded a message. There is a rep prize for anyone that can decode the message first. I will post a hint if no one guesses by tomorrow.

Message
|urwfly#uxr|#qr#vqrlwdoxwdujqrf


Hint 1
[ Register or Signin to view external links. ]


Hint 2
Here's the code to the decoder program. Paste this into notepad and save as a .vbs file.
set x = WScript.CreateObject("WScript.Shell")
mySecret = inputbox("Enter text to be decoded")
mySecret = StrReverse(mySecret)
x.Run"%windir%\notepad"
wscript.sleep 1000
x.sendkeys encode(mySecret)

function encode(s)
For i = 1 To Len(s)
newtxt = Mid(s,i,1)
newtxt = Chr(Asc(newtxt)-3)
coded = coded & newtxt
Next
encode = coded
End Function


Thanks for playing!
:2thumbsup:


Last edited by Transparency ; edited 1 time in total
#2. Posted:
Transparency
  • Wise One
Status: Offline
Joined: Aug 22, 201112Year Member
Posts: 568
Reputation Power: 25
Status: Offline
Joined: Aug 22, 201112Year Member
Posts: 568
Reputation Power: 25
Still haven't figured it out? I just posted the first hint. If you're still stumped check back tomorrow for another hint.
#3. Posted:
Germ
  • Prospect
Status: Offline
Joined: Jan 17, 201212Year Member
Posts: 668
Reputation Power: 36
Status: Offline
Joined: Jan 17, 201212Year Member
Posts: 668
Reputation Power: 36
2 letter words
xu

3 letter words
flu fly fry fur lux ulu wry

4 letter words
flux furl fury ruly

5 letter words
furry

6 letter words
flurry luxury
#4. Posted:
Transparency
  • Wise One
Status: Offline
Joined: Aug 22, 201112Year Member
Posts: 568
Reputation Power: 25
Status: Offline
Joined: Aug 22, 201112Year Member
Posts: 568
Reputation Power: 25
609 wrote 2 letter words
xu

3 letter words
flu fly fry fur lux ulu wry

4 letter words
flux furl fury ruly

5 letter words
furry

6 letter words
flurry luxury
I'm sorry, that is incorrect.. The second and final hint is now posted above. Here's your chance to win!
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.