| $title | $description | ";
$num=getNoTopics($query,$handle);
echo "$num | ";
}
function seperator($cols){
echo " | |
";
}
$page_title="Home";
include "scripts/pageheader.php";
$id=$_GET['id'];
if (is_logged_in()){
$mtype=$id;
if ($mtype==""){
$mtype="n entry";
}else{
$mtype=" ".$mtype;
}
echo "Add a$mtype
";
}
echo "Category | Description | Mods |
";
//List Categories
if ($id=="")
listSearch("","All","All Items in order of popularity",$handle);
if ($id=="mod" || $id==""){
listSearch("mod","All Mods","All Mods in order of popularity",$handle);
listSearch("mpack","All Mod Packs","All Mod Packs in order of popularity",$handle);
}
if ($id=="texture" || $id=="")
listSearch("texture","All Texture Packs","All Texture Packs in order of popularity",$handle);
if ($id=="")
listSearch("sound","All Sound Packs","All Sound Packs and Sound Mods in order of popularity",$handle);
if ($id=="mod" || $id==""){
seperator(4);
listSearch("deco","Block Adder Mods","Adds basic decorating blocks to the game (eg: moreblocks, homedecor)",$handle);
listSearch("tech","Technical Mods","Technical Mods (eg: Mesecons, Technic)",$handle);
listSearch("fun","Experimental Mods","Experimental mods for the game (eg: Chess, Mesecons, Carts)",$handle);
listSearch("server","Server Interaction Mods","Mods ideal for servers (low lag, tools)(eg: antigrief, money)",$handle);
listSearch("food","Food Mods","Mods that add food",$handle);
listSearch("growing","Growing Mods","Mods that add Plants",$handle);
listSearch("mobs","Mob Mods","Mods that add Mobs",$handle);
listSearch("util","Utility Mods","Mods that add new feature and actons to the game (eg: bones,falling_items,throwing)",$handle);
listSearch("3d","3D Object Mods","Mods that use NodeBoxes",$handle);
seperator(4);
listSearch("envir","Enviroment Mods","Changes the map generator",$handle);
listSearch("biome","Biome Mods","Adds a new biome to the game",$handle);
}
if ($id=="texture" || $id==""){
seperator(4);
listSearch("comic-txt","Comic Style Textures","Cartoon Style Texture Packs",$handle);
listSearch("real-txt","Realistic Textures","Realistic Styled Texture Packs",$handle);
listSearch("hd-txt","HD Textures","HD Texture packs",$handle);
}
seperator(4);
listSearch("0.4.2","0.4.2","for 0.4.2-rc1",$handle);
listSearch("0.4.1","0.4.1","for 0.4 Stable",$handle);
listSearch("0.4","0.4","for 0.4",$handle);
echo "
";
//listSearch("0.3","0.3","for 0.3",0);
//listSearch("old_minetest","Older","for older versions of minetest",0);
include "scripts/pagefooter.php";
?>