Welcome to The ODI

The ODI is your #1 Source for TV and Movie Spoilers, News, Previews and More!!

The site is being updated daily. If you think you have a scoop, then please click on the following button or to browse the site use the drop down menu to select a subject.


Anagram Found on Dharma Wants You Site!!



So as most of you should know by now, LOST ARGs have had one person we follow through the game (Rachel Blake for TLE, Sam Thomas for Find815) and this time it is Ruckus Guy who perhaps might be Dan Bronson.

Previous emails from Dharma have had hidden messages embedded in the source code to reveal anagrams and hints from RuckusGuy and when several fans realized there was some activity on the DWY site, well the investigating began.

What was happening you ask?? Well if you login to DharmaWantsYou.com, funky letters and code was appearing at the center where it said "Volunteer Assessments Commencing Soon".

Embedded in the letters was an anagram, which if you solved revealed the following line:

"I am on the inside"

This ine confirms one that our friend Ruckus is working his way into Dharma and that the hacking referred to he leaked email (which is supposed to be sent today) is still a part of the game.

This anagram is also revvealed if you look at the source code which is posted below:

Here is a video and some screencaps of the jumbled letters appearing and below that is the code.

Thanks to Lauren and everyone else for the heads up and thanks to everyone over at DarkUFO's OGR page that sent in this info:



(Click to Enlarge)
NOTE: The third image shows the scrambled anagram letters


Anagram Site Source Code:
private function showAnagramHandler(param1:TimerEvent) : void
{
var _loc_2:Array;
var _loc_3:String;
var _loc_4:TextFormat;
m_timer.removeEventListener(TimerEvent.TIMER, showAnagramHandler, false);
m_timer.delay = 2000;
m_timer.addEventListener(TimerEvent.TIMER, hideAnagramHandler, false, 0, true);
m_testing.removeEventListener(Event.ENTER_FRAME, scrambleText, false);
_loc_2 = ["I", "A", "M", "O", "N", "T", "H", "E", "I", "N", "S", "I", "D", "E"];
_loc_3 = "";
while (_loc_2.length > 0)
{
// label
_loc_3 = _loc_3 + _loc_2.splice(Math.floor(Math.random() * _loc_2.length), 1);
}// end while
_loc_3 = _loc_3.toLowerCase();
_loc_4 = m_testing.getTextFormat();
m_testing.defaultTextFormat = _loc_4;
m_testing.text = _loc_3;
return;
}