


Halloween Event:
This event is a great chance to obtain in Game Currency at an accelerated rate!
Several Halloween Theme based mobs spawn with higher drop rates.
(Low, Medium & High Level areas)
[*]Large Tile Based World Map
[*]Unlimited Character Progression
[*][/img]8 Professions
[*]World Bosses
[*]Built In Chat
[*]Hidden Areas & Events
[*]Resource Gathering
The Story of Advancement and Hallsofvallhalla Spawn:
About 1 Year ago I had almost no coding skills. I knew nothing about SQL Databases, PHP Code, Javascript, and only the very basics of HTML. Through the Tutorials Vallhalla posted (Even though they where several years old at the time) I began to learn PHP.
Using that as a foundation Mordor 3 was created. Since then nearly every aspect of the game has been rewritten multiple times as better methods have take precedence.
One of the essential secrets to how the game runs so smoothly is the fusion of languages. PHP can work together with Javascript & HTML. Not only in separation, but in java functions that run PHP code and PHP code that runs java.
Code like this was removed from the Game:
if (isset($_GET['run'])) $linkchoice=$_GET['run'];
else $linkchoice='';
switch($linkchoice){
case 'barbarian' :
echo "function or link";
break;
They where replaced with:
function drawamap () { direction= "drawmap";
$.post("drawmap.php",{ name:direction },function(ajaxresult){
$("#drawmap").html(ajaxresult); }); };
This function when called sends the variable name to the file drawmap.php. It then puts the output in a div (("#drawmap"). It has several benefits. Mainly it does not reload the page it simply outputs the php file into the div. This can be any div or any file (whether it needs to actually display something or just perform tasks, updating variables etc).
It can also use the variables sent to control which actions to perform.
Onclick Vs Href!
Href is another thing that was almost entirely removed. The onclick functions run the java commands instead.
Using CSS to create nice buttons using images also does a great deal for the game appearance.
<a class="buttonimage" onclick="runthisjavacommand()">
How it works: You almost never leave the main page. Everything you do simply uses java functions to call php pages to perform tasks. Therefore, your output can display onclicks which are usable by the main page.
A lot of work was spent revamping data into tables that allow for easier display. Using fixed widths and images inside the tables is not to difficult.
The game is continuing to evolve and update. There have been a few 1,000 registrations and generally several players online at all times.