2018-01-29 19:24:30 +00:00
|
|
|
<?php
|
2021-08-27 15:55:18 +00:00
|
|
|
|
|
|
|
use Battles\Bank;
|
|
|
|
use Battles\Database\DBPDO;
|
|
|
|
use Battles\User;
|
|
|
|
|
2020-09-30 12:52:51 +00:00
|
|
|
require_once "functions.php";
|
2021-08-27 15:55:18 +00:00
|
|
|
if (!User::$current->getClan() || User::$current->getBattle()) {
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
const PRICES = [
|
|
|
|
'sleep15' => 20,
|
|
|
|
'sleep30' => 20,
|
|
|
|
'closebattle' => 100,
|
|
|
|
'heal20' => 10,
|
|
|
|
'heal35' => 25,
|
|
|
|
'heal50' => 50,
|
|
|
|
'travmoff' => 10,
|
|
|
|
'attack' => 10,
|
|
|
|
'bloodattack' => 25,
|
|
|
|
'death' => 100,
|
|
|
|
'comment' => 5,
|
|
|
|
'openbattle' => 100,
|
|
|
|
'reamdeath' => 50,
|
|
|
|
'clone' => 25,
|
|
|
|
'unclone' => 25,
|
|
|
|
];
|
2018-01-29 19:24:30 +00:00
|
|
|
|
2021-08-27 15:55:18 +00:00
|
|
|
$check_owner = DBPDO::$db->ofetch('select short_name from clans where owner_id = ?', User::$current->getId());
|
|
|
|
$check_bonuses = DBPDO::$db->ofetch('select 1 from clan_bonuses where short_name = ?', User::$current->getClan());
|
|
|
|
|
|
|
|
if (User::$current->getClan() !== $check_owner->short_name) {
|
|
|
|
exit('Запрещено: Вы не глава клана.');
|
|
|
|
}
|
|
|
|
if (!$check_bonuses) {
|
|
|
|
exit('Запрещено: Вашему клану нельзя покупать бонусы.');
|
2018-01-29 19:24:30 +00:00
|
|
|
}
|
|
|
|
|
2021-08-27 15:55:18 +00:00
|
|
|
function buy_bonus($name): bool
|
2018-07-02 15:35:25 +00:00
|
|
|
{
|
2021-08-27 15:55:18 +00:00
|
|
|
global $prices;
|
|
|
|
$bank = new Bank(User::$current->getId());
|
|
|
|
if ($bank->getMoney() <= PRICES[$name]) {
|
|
|
|
return false;
|
2018-07-02 15:35:25 +00:00
|
|
|
}
|
2021-08-27 15:55:18 +00:00
|
|
|
$query = sprintf('update clan_bonuses set %s = %s + 1 where short_name = ?', $name, $name);
|
|
|
|
DBPDO::$db->execute($query, User::$current->getClan());
|
|
|
|
$bank->setMoney($bank->getMoney() - $prices[$name]);
|
|
|
|
return true;
|
2018-07-02 15:35:25 +00:00
|
|
|
}
|
|
|
|
|
2021-08-27 15:55:18 +00:00
|
|
|
echo !empty($_POST['type']) && buy_bonus($_POST['type']) ? 'success' : 'error';
|