It looks like you're using an Ad Blocker.

Please white-list or disable AboveTopSecret.com in your ad-blocking tool.

Thank you.

 

Some features of ATS will be disabled while you continue to use an ad-blocker.

 

New ATS Game? [Unlock It]

page: 14
72
<< 11  12  13    15  16  17 >>

log in

join
share:

posted on Apr, 12 2011 @ 06:23 PM
link   
That was both fun and intensely irritating. I feel positive that the posters here hit on what these forums will be about and excellent job to those who figured it out! I am in awe of the brilliant logical minds here!



posted on Apr, 12 2011 @ 06:23 PM
link   
That was so fast!



I guess now the: patience is a virtue part comes in.
Might as well go back to work...

___________________
*I don't get how we got to the end url though?


edit on 12-4-2011 by LadySkadi because: (no reason given)



posted on Apr, 12 2011 @ 06:23 PM
link   
Good work all, I was just behind you - trying to eat and jot down numbers at the same time didn't work out too well but I got the same code.



posted on Apr, 12 2011 @ 06:24 PM
link   

Originally posted by SonicInfinity
For those confused, right click on this word: here

Select "copy" or "copy link location"

Go to unlock.abovetopsecret.com...

Right click the gray bar and press "paste"

Press enter

It should now say "unlock initiated... forums will launch soon" at the bottom.
edit on 4/12/2011 by SonicInfinity because: More info

Confirmed

Pasted "http://www.abovetopsecret.com/forum/thread236709/pg27#pid2898150" in the box and it "unlocked it"



posted on Apr, 12 2011 @ 06:24 PM
link   
how did we go from seemingly random numbers to a url?



posted on Apr, 12 2011 @ 06:24 PM
link   

Originally posted by lcbjr1979
Yup confirmed i copy and pasted this url www.abovetopsecret.com... and got the unlock initiated prompt


Same. Way to go guys.


Be proud!

It was awesome to see everyone working together. Even some who may have major differences of opinion and who might not otherwise work together for "the common good"

Now we play the waiting game.



posted on Apr, 12 2011 @ 06:24 PM
link   
reply to post by BadBoYeed
 


i started looking at the wanky code, and I figured out that it was just taking the key above the letter in the code, on a keyboard.

so g would be t, z would be a, 3 would be c (wraparound i guess), and so on, and it translated to: give me ats link to tarmac ufo picture that could be real

So I did a search, and I found the O'Hare UFO thread, and in the OP by SkepticOverlord, it had the link to the post by the 000000 guy, www.abovetopsecret.com... So I fed that into the box, hit enter, and wham bam thankya ma'am... and that's how I did it.



posted on Apr, 12 2011 @ 06:24 PM
link   
I've followed this since it started and Im a little clueless on how we jumped for point A to point F lol



posted on Apr, 12 2011 @ 06:26 PM
link   

Originally posted by boondock-saint

Originally posted by gimme_some_truth
So...Who wants to play I-Spy?

not tonight honey
I have a headache
thanks to Bill



Fine.... Back to playing I-Spy by myself in the bathroom then.



posted on Apr, 12 2011 @ 06:28 PM
link   
reply to post by nithaiah
 


and the numbers? where was the "wanky code?

great job btw



posted on Apr, 12 2011 @ 06:28 PM
link   

edit on 12-4-2011 by angelchanneller because: already had a brilliant unlock!



posted on Apr, 12 2011 @ 06:29 PM
link   

Originally posted by BadBoYeed
reply to post by nithaiah
 


and the numbers? where was the "wanky code?

great job btw


Must have been there to throw us off our game. It worked for me.



posted on Apr, 12 2011 @ 06:29 PM
link   
ummmm guys !!!
we haven't figured out yet the
titles of the 3 new forums??
or have we ???



posted on Apr, 12 2011 @ 06:29 PM
link   
Well it worked for me great job everyone!!

010101000110100001101001011100110010000001101000011000010111001100100000011011100110111101110100011010000110100101101110011001110010000001110100011011 110010000001100100011011110010000001110111011010010111010001101000001000000111010001101000011001010010000001100111011000010110110101100101001011000010 000001001001001001110110010000100000011010100111010101110011011101000010000001110100011010000110111101110101011001110110100001110100001000000110100100 100111011001000010000001100111011010010111011001100101001000000111100101101111011101010010000001100001011011000110110000100000011100110111010101101101 011010010110111000100000011101000110111100100000011001000110111100100001



posted on Apr, 12 2011 @ 06:30 PM
link   
I m not going to look at these numbers ..i'm going to guess thread names

Sooo ....the new thread name maybe "after disclosure" ?

edit on 12-4-2011 by xavi1000 because: (no reason given)



posted on Apr, 12 2011 @ 06:30 PM
link   
So i am confused.. Does anyone know what this supposed unlock is supposed to be of? What forum? A new forum for us? Maybe some undisclosed information Skeptic has? I am trying to grasp what this could really mean. From what I am guessing, everyone's guesses are just as good as my guessed guessing is
haha. Well Cheers to all and i hope we find out what this is soon enough!



posted on Apr, 12 2011 @ 06:31 PM
link   

Originally posted by drew1749
I've followed this since it started and Im a little clueless on how we jumped for point A to point F lol


The numbers were in sequence for everyone, they were ASCII character codes ( en.wikipedia.org... ) making up a sentence.

I wrote a quick script to dump them out to a file (I originally thought the colours and fonts might be responsible), it looks like this:

wget -O- --load-cookies ats-cookie --referer="http://unlock.abovetopsecret.com/" unlock.abovetopsecret.com... 2>/dev/null|grep -A1 'id="fadeBlock"'|perl parse-num.pl >> number-list


The perl script is

#!/usr/bin/perl

use warnings;
use strict;
use Time:
iece;
use Data:
ump qw/ddx/;

local $/ = undef;

my $input = ;

my ($font, $colour, $number) = ($input =~ /font-family: ([^;]+).*color: #(\d+).*?(\d+)/s);

my $t = localtime;
my $out = "\"$t\",\"$font\",\"$colour\",\"$number\"\n";
print $out;
print STDERR $out;


I then wrote a little bit of bash to print out the characters (including the couple i missed in sequence):


echo -n "th"; cat number-list |awk -F, '[print $4]'|sed 's/"//g'|while read ord; do echo $ord|awk '[printf "%c", $_]'; done;


From there we got the whole string of text as you saw above, and noticed it contained this on the end:
bk4d 7d zgx .k6, gl gzf7z3 jvl ;k3gjfd gnzg 3lj.c 5d fdz.

Another member noticed that these are offset by one row on your keyboard, so b becomes g, 4 becomes v etc.

This made up a request for a realistic looking UFO picture, a bit of searching and pasting in the link solved the puzzle.

Sorry for the ugly code, I wrote it really really quickly.



posted on Apr, 12 2011 @ 06:31 PM
link   
reply to post by boondock-saint
 


There were some PRETTY good guesses in this thread...

Somewhere...



posted on Apr, 12 2011 @ 06:32 PM
link   
reply to post by MadDogtheHunter
 


Perfect and well done!



posted on Apr, 12 2011 @ 06:32 PM
link   
reply to post by ALOSTSOUL
 

well if it was that easy we would have got this done even faster!

"This has nothing to do with the game, I'd just thought i'd give you all sumin to do!"
edit on 12-4-2011 by Wookiep because: (no reason given)



new topics

top topics



 
72
<< 11  12  13    15  16  17 >>

log in

join