Files
TravianZ/a2b2.php
T
Martin Ambrus f5c3e029b5 feat: access log config setting and a real get-post-cookie logger
This is a very naive and primitive logger of user requests to the game.
To be used on systems where access to webserver's log data is not
available (especially if the webserver doesn't store POST data as well).
2017-10-28 18:59:16 +02:00

375 lines
19 KiB
PHP

<?php
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Filename a2b2.php ##
## Developed by: Dzoki ##
## License: TravianX Project ##
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
## ##
#################################################################################
use App\Utils\AccessLogger;
include("GameEngine/Village.php");
AccessLogger::logRequest();
$amount = $_SESSION['amount'];
$start = $generator->pageLoadTimeStart();
if(isset($_GET['newdid'])) {
$_SESSION['wid'] = $_GET['newdid'];
header("Location: ".$_SERVER['PHP_SELF']);
exit;
}
else {
$building->procBuild($_GET);
}
$automation->isWinner();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title><?php echo SERVER_NAME . ' - Account transactions' ?></title>
<link rel="shortcut icon" href="favicon.ico"/>
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="imagetoolbar" content="no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script src="mt-full.js?0faab" type="text/javascript"></script>
<script src="unx.js?f4b7f" type="text/javascript"></script>
<script src="new.js?0faab" type="text/javascript"></script>
<link href="<?php echo GP_LOCATE; ?>lang/en/lang.css?f4b7d" rel="stylesheet" type="text/css" />
<link href="<?php echo GP_LOCATE; ?>lang/en/compact.css?f4b7f" rel="stylesheet" type="text/css" />
<?php
if($session->gpack == null || GP_ENABLE == false) {
echo "
<link href='".GP_LOCATE."travian.css?e21d2' rel='stylesheet' type='text/css' />
<link href='".GP_LOCATE."lang/en/lang.css?e21d2' rel='stylesheet' type='text/css' />";
} else {
echo "
<link href='".$session->gpack."travian.css?e21d2' rel='stylesheet' type='text/css' />
<link href='".$session->gpack."lang/en/lang.css?e21d2' rel='stylesheet' type='text/css' />";
}
?>
<script type="text/javascript">
window.addEvent('domready', start);
</script>
</head>
<body class="v35 ie ie8">
<div class="wrapper">
<img style="filter:chroma();" src="img/x.gif" id="msfilter" alt="" />
<div id="dynamic_header">
</div>
<?php include("Templates/header.tpl"); ?>
<div id="mid">
<?php include("Templates/menu.tpl"); ?>
<?php include("Templates/Plus/pmenu.tpl"); ?>
<h1>Account transactions</h1>
<div id="products">
<?php
if ($amount == 199) {
// Statement retrieve Gold Package A
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$golds = mysqli_fetch_array($MyGold);
$goldnow = $golds['6'] + 60;
mysqli_query($GLOBALS['link'],"UPDATE ".TB_PREFIX."users set gold = '".$goldnow."' where `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$golds1 = mysqli_fetch_array($MyGold);
?><p>Thank you for your purchase here at <?php echo SERVER_NAME ?></p><p>Below you see the entry record. Out of it, you can observe your old as well as your new account balance.</p>
<table class="plusFunctions" cellpadding="1" cellspacing="1">
<thead>
<tr>
<th colspan="5" height="20">Record of <?php echo date('d.m.Y'); ?></th>
</tr>
<tr>
<td align="center">Description</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td align="center">Action</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td>Date</td>
</tr>
</thead>
<tbody>
<tr>
<td class="desc"><b>&nbsp;&nbsp;Account Balance (old)</b></td>
<td class="desc"><div style="text-align: center"><?php echo $golds['6']; ?></div></td>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="act"><div style="text-align: center">&nbsp;</div></td>
</tr>
<tr>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="desc"><div style="text-align: center"><b><font color="#71D000">Package</font></b></div></td>
<td class="desc"><div style="text-align: center">60 Gold</div></td>
<td class="act"><div style="text-align: center">&nbsp;</div></td>
</tr>
<tr>
<td class="desc"><b>&nbsp;&nbsp;Account Balance (new)</b></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center"><?php echo $golds1['6']; ?></div></td>
<td class="act"><div style="text-align: center"><?php echo date('d.m.Y H:i:s'); ?></div></td>
</tr>
</tbody></table>
<p>Please verify the information.<br />It will let us know if the data is incorrect.</p>
<p>Please mail your username, package, order time and email used to <a href="mailto:<?php echo (defined('PAYPAL_EMAIL') ? PAYPAL_EMAIL : 'martin@martinambrus.com') ?>">our billing address</a>.</p>
<?php
}
if ($amount == 499) {
// Statement retrieve Gold Package B
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$golds = mysqli_fetch_array($MyGold);
$goldnow = $golds['6'] + 120;
mysqli_query($GLOBALS['link'],"UPDATE ".TB_PREFIX."users set gold = '".$goldnow."' where `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$golds1 = mysqli_fetch_array($MyGold);
?><p>Thank you for your purchase here at <?php echo SERVER_NAME ?>.</p><p>Below you see the entry record. Out of it, you can observe your old as well as your new account balance.</p>
<table class="plusFunctions" cellpadding="1" cellspacing="1">
<thead>
<tr>
<th colspan="5" height="20">Record of <?php echo date('d.m.Y'); ?></th>
</tr>
<tr>
<td align="center">Description</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td align="center">Action</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td>Date</td>
</tr>
</thead>
<tbody>
<tr>
<td class="desc"><b>&nbsp;&nbsp;Account Balance (old)</b></td>
<td class="desc"><div style="text-align: center"><?php echo $golds['6']; ?></div></td>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="act"><div style="text-align: center">&nbsp;</div></td>
</tr>
<tr>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="desc"><div style="text-align: center"><b><font color="#71D000">Package</font></b></div></td>
<td class="desc"><div style="text-align: center">60 Gold</div></td>
<td class="act"><div style="text-align: center">&nbsp;</div></td>
</tr>
<tr>
<td class="desc"><b>&nbsp;&nbsp;Account Balance (new)</b></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center"><?php echo $golds1['6']; ?></div></td>
<td class="act"><div style="text-align: center"><?php echo date('d.m.Y H:i:s'); ?></div></td>
</tr>
</tbody></table>
<p>Please verify the information.<br />It will let us know if the data is incorrect.</p>
<p>Please mail your username, package, order time and email used to <a href="mailto:<?php echo (defined('PAYPAL_EMAIL') ? PAYPAL_EMAIL : 'martin@martinambrus.com') ?>">our billing address</a>.</p>
<?php
}
if ($amount == 999) {
// Statement retrieve Gold Package C
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$golds = mysqli_fetch_array($MyGold);
$goldnow = $golds['6'] + 360;
mysqli_query($GLOBALS['link'],"UPDATE ".TB_PREFIX."users set gold = '".$goldnow."' where `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$golds1 = mysqli_fetch_array($MyGold);
?><p>Thank you for your purchase here at <?php echo SERVER_NAME ?>.</p><p>Below you see the entry record. Out of it, you can observe your old as well as your new account balance.</p>
<table class="plusFunctions" cellpadding="1" cellspacing="1">
<thead>
<tr>
<th colspan="5" height="20">Record of <?php echo date('d.m.Y'); ?></th>
</tr>
<tr>
<td align="center">Description</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td align="center">Action</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td>Date</td>
</tr>
</thead>
<tbody>
<tr>
<td class="desc"><b>&nbsp;&nbsp;Account Balance (old)</b></td>
<td class="desc"><div style="text-align: center"><?php echo $golds['6']; ?></div></td>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="act"><div style="text-align: center">&nbsp;</div></td>
</tr>
<tr>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="desc"><div style="text-align: center"><b><font color="#71D000">Package</font></b></div></td>
<td class="desc"><div style="text-align: center">60 Gold</div></td>
<td class="act"><div style="text-align: center">&nbsp;</div></td>
</tr>
<tr>
<td class="desc"><b>&nbsp;&nbsp;Account Balance (new)</b></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center"><?php echo $golds1['6']; ?></div></td>
<td class="act"><div style="text-align: center"><?php echo date('d.m.Y H:i:s'); ?></div></td>
</tr>
</tbody></table>
<p>Please verify the information.<br />It will let us know if the data is incorrect.</p>
<p>Please mail your username, package, order time and email used to <a href="mailto:<?php echo (defined('PAYPAL_EMAIL') ? PAYPAL_EMAIL : 'martin@martinambrus.com') ?>">our billing address</a>.</p>
<?php
}
if ($amount == 1999) {
// Statement retrieve Gold Package D
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$golds = mysqli_fetch_array($MyGold);
$goldnow = $golds['6'] + 1000;
mysqli_query($GLOBALS['link'],"UPDATE ".TB_PREFIX."users set gold = '".$goldnow."' where `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$golds1 = mysqli_fetch_array($MyGold);
?><p>Thank you for your purchase here at <?php echo SERVER_NAME ?>.</p><p>Below you see the entry record. Out of it, you can observe your old as well as your new account balance.</p>
<table class="plusFunctions" cellpadding="1" cellspacing="1">
<thead>
<tr>
<th colspan="5" height="20">Record of <?php echo date('d.m.Y'); ?></th>
</tr>
<tr>
<td align="center">Description</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td align="center">Action</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td>Date</td>
</tr>
</thead>
<tbody>
<tr>
<td class="desc"><b>&nbsp;&nbsp;Account Balance (old)</b></td>
<td class="desc"><div style="text-align: center"><?php echo $golds['6']; ?></div></td>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="act"><div style="text-align: center">&nbsp;</div></td>
</tr>
<tr>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="desc"><div style="text-align: center"><b><font color="#71D000">Package</font></b></div></td>
<td class="desc"><div style="text-align: center">60 Gold</div></td>
<td class="act"><div style="text-align: center">&nbsp;</div></td>
</tr>
<tr>
<td class="desc"><b>&nbsp;&nbsp;Account Balance (new)</b></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center"><?php echo $golds1['6']; ?></div></td>
<td class="act"><div style="text-align: center"><?php echo date('d.m.Y H:i:s'); ?></div></td>
</tr>
</tbody></table>
<p>Please verify the information.<br />It will let us know if the data is incorrect.</p>
<p>Please mail your username, package, order time and email used to <a href="cata7007@gmail.com">our billing address</a>.</p>
<?php
}
if ($amount == 4999) {
// Statement retrieve Gold Package E
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$golds = mysqli_fetch_array($MyGold);
$goldnow = $golds['6'] + 2000;
mysqli_query($GLOBALS['link'],"UPDATE ".TB_PREFIX."users set gold = '".$goldnow."' where `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$golds1 = mysqli_fetch_array($MyGold);
?><p>Thank you for your purchase here at <?php echo SERVER_NAME ?>.</p><p>Below you see the entry record. Out of it, you can observe your old as well as your new account balance.</p>
<table class="plusFunctions" cellpadding="1" cellspacing="1">
<thead>
<tr>
<th colspan="5" height="20">Record of <?php echo date('d.m.Y'); ?></th>
</tr>
<tr>
<td align="center">Description</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td align="center">Action</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td>Date</td>
</tr>
</thead>
<tbody>
<tr>
<td class="desc"><b>&nbsp;&nbsp;Account Balance (old)</b></td>
<td class="desc"><div style="text-align: center"><?php echo $golds['6']; ?></div></td>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="act"><div style="text-align: center">&nbsp;</div></td>
</tr>
<tr>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="desc"><div style="text-align: center"><b><font color="#71D000">Package</font></b></div></td>
<td class="desc"><div style="text-align: center">60 Gold</div></td>
<td class="act"><div style="text-align: center">&nbsp;</div></td>
</tr>
<tr>
<td class="desc"><b>&nbsp;&nbsp;Account Balance (new)</b></td>
<td class="desc"><div style="text-align: center">&nbsp;</div></td>
<td class="desc"><div style="text-align: center"><b>&nbsp;</b></div></td>
<td class="desc"><div style="text-align: center"><?php echo $golds1['6']; ?></div></td>
<td class="act"><div style="text-align: center"><?php echo date('d.m.Y H:i:s'); ?></div></td>
</tr>
</tbody></table>
<p>Please verify the information.<br />It will let us know if the data is incorrect.</p>
<p>Please mail your username, package, order time and email used to <a href="mailto:<?php echo (defined('PAYPAL_EMAIL') ? PAYPAL_EMAIL : 'martin@martinambrus.com') ?>">our billing address</a>.</p>
<?php
}
if ($amount == 0)
{
$MyGold = mysqli_query($GLOBALS['link'],"SELECT * FROM ".TB_PREFIX."users WHERE `id`='".$session->uid."'") or die(mysqli_error($database->dblink));
$golds = mysqli_fetch_array($MyGold);
?>
<p>Here you can see your current account statement.</p>
<table class="plusFunctions" cellpadding="1" cellspacing="1">
<thead>
<tr>
<th colspan="5" height="20">Record of <?php echo date('d.m.Y'); ?></th>
</tr>
<tr>
<td align="center">Description</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td align="center">Action</td><td align="center"><img src="img/x.gif" class="gold" alt="Gold" title="Gold" /></td><td>Date</td></tr>
</thead>
<tbody>
<tr>
<td class="desc"><b>&nbsp;&nbsp;Current account balance</b></td>
<td class="desc"><div style="text-align: center">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div></td>
<td class="desc"><div style="text-align: center"><b>Account inquiry</b></div></td>
<td class="desc"><div style="text-align: center"><?php echo $golds['6']; ?></div></td>
<td class="act"><div style="text-align: center"><?php echo date('d.m.Y H:i:s'); ?></div></td>
</tr>
</tbody></table>
<p>Please verify the information.<br />It will let us know if the data is incorrect.</p>
<p>Please mail your username, package, order time and email used to <a href="mailto:<?php echo (defined('PAYPAL_EMAIL') ? PAYPAL_EMAIL : 'martin@martinambrus.com') ?>">our billing address</a>.</p>
<?php
}
?>
<?php $_SESSION['amount'] = 0; ?>
</div>
</div>
<br /><br /><div id="side_info">
<?php
include("Templates/multivillage.tpl");
include("Templates/quest.tpl");
include("Templates/news.tpl");
include("Templates/links.tpl");
?>
</div>
<div class="clear"></div>
</div>
<div class="footer-stopper"></div>
<div class="clear"></div>
<?php
include("Templates/footer.tpl");
include("Templates/res.tpl");
?>
<div id="stime">
<div id="ltime">
<div id="ltimeWrap">
Calculated in <b><?php echo round(($generator->pageLoadTimeEnd()-$start)*1000); ?></b> ms
<br />Server time: <span id="tp1" class="b"><?php echo date('H:i:s'); ?></span>
</div>
</div>
</div>
<div id="ce"></div>
</body>
</html>