This commit is contained in:
lopar 2019-01-15 22:21:01 +02:00
parent 2672b97ae9
commit 5bed71ee60
2 changed files with 25 additions and 17 deletions

View File

@ -87,29 +87,33 @@ if ($_GET['exit'] == 1) {
db::c()->query('UPDATE `users`,`online` SET `users`.`room` = 2702, `online`.`room` = 2702 WHERE `users`.`id` = ?i AND `online`.`id` = ?i', $user['id'], $user['id']);
header('Location: city.php');
}
$status = 'Внимание! Моментальная оплата без подтверждения!';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="css/main.css" rel="stylesheet"/>
<link href="css/main.css" rel="stylesheet">
<link href="css/secondary.css" rel="stylesheet"/>
</head>
<body>
<TABLE border=0 width=100% cellspacing="0" cellpadding="0">
<tr>
<td align=right>
<form action="city.php?act=go&level=2702" method=POST>
<INPUT TYPE="button" value="Подсказка" style="background-color:#A9AFC0"
onClick="window.open('help/shop.html', 'help', 'height=300,width=500,location=no,menubar=no,status=no,toolbar=no,scrollbars=yes')">
<input type="button" class="btns" value="Обновить" onclick="location.href='main.php';"/>
<input type="button" class="btns button-route" value="Вернуться" onclick="location.href='?exit=1';"/>
</form>
</td>
</tr>
</TABLE>
<h3>АКАДЕМИЯ</h3>
<div style="text-align: center; color: red;">
<b>Внимание!</b> Нажав на кнопку с профессией, с вашего счета мгновенно будет списана ее стоимость. Будьте внимательны!
<div class="topRoomButtons">
<form action="city.php?act=go&level=2702" method=POST>
<input type="button" class="btns" value="Обновить" onclick="location.href='main.php';"/>
<input type="button" class="btns button-route" value="Вернуться" onclick="location.href='?exit=1';"/>
</form>
</div>
<h1>Академия</h1>
<div><?php if (!empty($status)) err($status); ?></div>
<div class="appblock">
<span class="legend">Колдун</span>
<button disabled>Недоступно</button>
<span class="wrap">Цена<span class="num">300</span></span>
<span class="wrap">Необходимый уровень<span class="num">3</span></span>
<span class="wrap">
Колдун может встраивать руны, тем самым увеличивать силу, интуицию, ловкость, выносливость предмета,
а также встраивать дополнительное здоровье и ману. Встройка рун производится в <b>Доме мастеров</b>.
</span>
</div>
<FORM METHOD=POST>
@ -203,7 +207,7 @@ if ($_GET['exit'] == 1) {
</tr>
<tr>
<td width=50% align=center><b>Наставник</b><br>
<?
<?php
if ($user['prof3'] != 1) {
if (($user['prof3'] + 86400 * 30 > time()) || ($user['prof3'] + 86400 * 30 * $user['prof3_level'] > time())) {
$timeprof3 = $user['prof3'];

View File

@ -1058,4 +1058,8 @@ img.item-wrap-normal {
background-repeat: no-repeat;
background-color: #AAA;
background-image: radial-gradient(circle, #EEE, #AAA);
}
div.topRoomButtons {
float: right;
}