mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-05 20:34:21 +00:00
first commit
This commit is contained in:
+69
@@ -0,0 +1,69 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<?php
|
||||
|
||||
#################################################################################
|
||||
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
||||
## --------------------------------------------------------------------------- ##
|
||||
## Filename manual.php ##
|
||||
## Developed by: Dzoki ##
|
||||
## License: TravianX Project ##
|
||||
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
|
||||
## ##
|
||||
#################################################################################
|
||||
|
||||
include("GameEngine/config.php");
|
||||
?>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title><?php echo SERVER_NAME; ?></title>
|
||||
<link REL="shortcut icon" HREF="favicon.ico"/>
|
||||
<meta name="content-language" content="en" />
|
||||
<meta http-equiv="cache-control" content="max-age=0" />
|
||||
<meta http-equiv="imagetoolbar" content="no" />
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<script src="mt-core.js?0faaa" type="text/javascript"></script>
|
||||
<script src="mt-more.js?0faaa" type="text/javascript"></script>
|
||||
<script src="unx.js?0faaa" type="text/javascript"></script>
|
||||
<script src="new.js?0faaa" type="text/javascript"></script>
|
||||
<link href="<?php echo GP_LOCATE; ?>lang/en/compact.css?f4b7c" rel="stylesheet" type="text/css" />
|
||||
<link href="<?php echo GP_LOCATE; ?>lang/en/lang.css?f4b7c" rel="stylesheet" type="text/css" />
|
||||
<link href="<?php echo GP_LOCATE; ?>travian.css?f4b7c" rel="stylesheet" type="text/css" />
|
||||
<link href="<?php echo GP_LOCATE; ?>lang/en/lang.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body class="manual">
|
||||
<?php
|
||||
|
||||
if (!ctype_digit($_GET['s'])) {
|
||||
$_GET['s'] = "0";
|
||||
}
|
||||
if (!ctype_digit($_GET['typ'])) {
|
||||
$_GET['typ'] = null;
|
||||
}
|
||||
if(!isset($_GET['typ']) && !isset($_GET['s'])) {
|
||||
include("Templates/Manual/00.tpl");
|
||||
}
|
||||
else if (!isset($_GET['typ']) && $_GET['s'] == 1) {
|
||||
include("Templates/Manual/00.tpl");
|
||||
}
|
||||
else if (!isset($_GET['typ']) && $_GET['s'] == 2) {
|
||||
include("Templates/Manual/direct.tpl");
|
||||
}
|
||||
else if (isset($_GET['typ']) && $_GET['typ'] == 5 && $_GET['s'] == 3) {
|
||||
include("Templates/Manual/medal.tpl");
|
||||
}
|
||||
else {
|
||||
if(isset($_GET['gid'])) {
|
||||
include("Templates/Manual/".$_GET['typ'].($_GET['gid']).".tpl");
|
||||
}
|
||||
else {
|
||||
if($_GET['typ'] == 4 && $_GET['s'] == 0) {
|
||||
$_GET['s'] = 1;
|
||||
}
|
||||
include("Templates/Manual/".$_GET['typ'].$_GET['s'].".tpl");
|
||||
}
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user