Файл: public_html/modules/tutorial/3.php
Строк: 17
<?php
$root = $_SERVER['DOCUMENT_ROOT'];
include_once ($root.'/core/base.php');
falseauth();
$header = "Начало";
include_once ($root.'/core/head.php');
if($u['tutorial'] != 3) redirect('/tutorial/'.$u['tutorial']);
if($u['tutorial'] >= 15) redirect('/');
if($u['save'] == 1) redirect('/');
if(isset($_GET['battle']))
{
$_SESSION['tutorial_hp'] = 100;
setTutorialNum(4);
redirect('/tutorial/4');
}
echo '
<div class="b">
<table width="100%">
<tr>
<td width="55px" valign="top">
<img width="50px" src="/images/naparnik.png"/>
</td>
<td valign="top">
<big> <font color = "white">Напарник</font></big>
<div class="txt">
Обещаю тебе, что после боя мы вместе возьмем тебе нормальное снаряжение! Давай добьем последнего!
</div>
</td>
</tr>
</table></br>
';
echo '
<center><a href="?battle"><input type="submit" value="В бой"></a></center>
</div>';
include_once ($root.'/core/foot.php');