Mision Basic X6

Learn new things
Forum rules
DO NOT POST ANSWERS OR SPOILERS! [IE: Mission Links, Mission File Names/Pages, Scripts, etc.]

Posting these will result in warnings/bans!

Re: Mision Basic X6

Post by Gatito on Sun May 22, 2011 5:58 pm
([msg=57672]see Re: Mision Basic X6[/msg])

DingoBebe wrote:I'm just trying figure out how one would determine to use ascii for this mission?

You assume it supports at the very minimum ASCII. But in the case you're a doubtful spirit I did an interesting little experiment for determining how strings get encrypted and put the "Ѫ" (spider character)(also note forum works with Unicode) which is in Unicode and encrypted it, with the result being "&$3475A". So you get 7 characters for the price of one.

The conclusion of the experiment:
The code behind encryption works on a byte per byte basis ( 1 byte = 1 ASCII char.) so it sees the spider character as a series of 7 bytes. Encryption works with bytes and bits, ASCII is just meaningless to it. But for us it gives the look that it works on a character basis but with a Unicode character we see it's clearly not the case.

DingoBebe wrote:As a person, I know that the letter 'd' is two character values from the letter 'a'

Because of ASCII but I could invent my unique scheme with 'a' and 'd' being x values apart. Also didn't you mean 3 char values apart?

DingoBebe wrote: But what determines the values for the system I am decoding?

The Encoding Scheme.

DingoBebe wrote:How do I know the values for 'a' is still 1 and 'd' is still 4?

Again you assume the system supports ASCII because of its broad use but under different circumstances besides Unicode another more exotic Encoding Scheme could be used.
User avatar
Gatito
Poster
Poster
 
Posts: 113
Joined: Tue Mar 08, 2011 12:55 pm
Blog: View Blog (0)


Re: Mision Basic X6

Post by DingoBebe on Wed May 25, 2011 2:05 am
([msg=57722]see Re: Mision Basic X6[/msg])

Very interesting and helpful! Thank you very much.

But now I have to ask, what determines that the spider character is 7 bytes?
DingoBebe
New User
New User
 
Posts: 13
Joined: Wed May 18, 2011 8:49 pm
Blog: View Blog (0)


Re: Mision Basic X6

Post by Slahd on Sat May 28, 2011 1:49 pm
([msg=57821]see Re: Mision Basic X6[/msg])

Yay! I did it! And according to one user, it is truly basic mathematics. More specifically, it's basic Algebra. I found out what was happening and just made a equation. Then I reversed that equation to get what I wanted.
CheckFINISHED checkFINISHED checkFINISHED
checkcheckcheck FINISHEDFINISHEDFINISHED
checkcheckcheckcheckcheckcheck
FINISHEDFINISHEDFINISHED
FINISHEDFINISHEDFINISHED
<Die the Death>!
<Sentence to Death>!
<Great Equalizer is The Death>!!
Slahd
Experienced User
Experienced User
 
Posts: 65
Joined: Sat May 28, 2011 12:24 pm
Location: Portland, OR
Blog: View Blog (0)


Re: Mision Basic X6

Post by fashizzlepop on Sat May 28, 2011 9:35 pm
([msg=57826]see Re: Mision Basic X6[/msg])

More importantly, it's an Algorithm. ;)
The glass is neither half-full nor half-empty; it's merely twice as big as it needs to be.
User avatar
fashizzlepop
Moderator
Moderator
 
Posts: 2145
Joined: Sat May 24, 2008 1:20 pm
Blog: View Blog (0)


Re: Mision Basic X6

Post by carcass454 on Sat Jul 09, 2011 2:30 pm
([msg=59601]see Re: Mision Basic X6[/msg])

im stuck at basic mission 6 since 3 days i did read almost all the hints but i still dont understand..is there a simple way you guys can explain me how to decrypt? i feel stupid now.. :( (sorry if i made mistakes im french and i hope its not spoiler)
carcass454
New User
New User
 
Posts: 2
Joined: Sat Jul 09, 2011 2:12 pm
Blog: View Blog (0)


Re: Mision Basic X6

Post by winter-owned on Mon Sep 05, 2011 5:03 pm
([msg=61417]see Re: Mision Basic X6[/msg])

I figured out the algorithm which took a few minutes. I accidentally re-encrypted the password the first time. I went the other direction to figure out the password. I entered my solution and was told I had the wrong answer. I double checked. Still wrong. I read the entire thread and it seemed many people had the same problem.

I was about to PM fashizzlepop the encrypted password and my solution when I decided to triple check. One of my characters was capitalized when it shouldn't have been. I went back and the solution worked.
winter-owned
New User
New User
 
Posts: 33
Joined: Thu Mar 10, 2011 12:14 am
Blog: View Blog (0)


Re: Mision Basic X6

Post by occamsrzr on Thu Sep 15, 2011 2:49 pm
([msg=61570]see Re: Mision Basic X6[/msg])

Wait...wat? the ASCII table isn't needed at all for this mission. There is a MUCH easier way to do it, but would ONLY work IF you had access to the script (which in this case, luckily we do).
occamsrzr
New User
New User
 
Posts: 47
Joined: Wed Aug 24, 2011 10:28 pm
Blog: View Blog (0)


Re: Mision Basic X6

Post by occamsrzr on Thu Sep 15, 2011 2:54 pm
([msg=61571]see Re: Mision Basic X6[/msg])

Wait....are you guys referring to Mission Basic 6 or Extbasic 6? Must be Mission Basic 6, cuz then it makes sense =)

Sorry, was confused by the 'X6'
occamsrzr
New User
New User
 
Posts: 47
Joined: Wed Aug 24, 2011 10:28 pm
Blog: View Blog (0)


Re: Mision Basic X6

Post by JaxelGnoll on Tue Oct 04, 2011 9:35 pm
([msg=62061]see Re: Mision Basic X6[/msg])

All I needed to figure out this one was to type the same thing into the encrypter, like '111111'. Then you will understand what it's doing.
JaxelGnoll
New User
New User
 
Posts: 4
Joined: Tue Oct 04, 2011 9:33 pm
Blog: View Blog (0)


Re: Mision Basic X6

Post by fauxpas09 on Thu May 03, 2012 12:03 pm
([msg=66102]see Re: Mision Basic X6[/msg])

eljonto wrote:
wixlight wrote:i have no idea how to use the ASCII table. can someone please help me??????????????


It's just a table that shows the characters and their decimal, hex etc equivalents. For example, if a user gives a program the letter 'a', and the program must give back the next letter, how will the program do it. Assuming it doesn't have any arrays to use, what it can do is convert the letter 'a' to its decimal equivalent '97' add one '98' and convert back to a character 'b'. This encryption alters the letters, so you need to find out WHAT the change is that it's doing, and then you'll realise why the ascii table is useful



This post was really helpful for me. Had no idea what to do.

I suggest you type in 'a' and try it, then try 'ab' and see what it does. Finally try 'abc'. You should see a pattern.
fauxpas09
New User
New User
 
Posts: 4
Joined: Wed May 02, 2012 9:43 am
Blog: View Blog (0)


PreviousNext

Return to Basic

Who is online

Users browsing this forum: No registered users and 0 guests