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

View File

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