mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 01:09:21 +02:00
89 lines
2.8 KiB
PHP
89 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* Change sex
|
|
*
|
|
* @package MyAAC
|
|
* @author Gesior <jerzyskalski@wp.pl>
|
|
* @author Slawkens <slawkens@gmail.com>
|
|
* @copyright 2017 MyAAC
|
|
* @version 0.6.6
|
|
* @link http://my-aac.org
|
|
*/
|
|
defined('MYAAC') or die('Direct access not allowed!');
|
|
|
|
$sex_changed = false;
|
|
$player_id = isset($_POST['player_id']) ? (int)$_POST['player_id'] : NULL;
|
|
$new_sex = isset($_POST['new_sex']) ? (int)$_POST['new_sex'] : NULL;
|
|
if((!$config['account_change_character_sex']))
|
|
echo 'You cant change your character sex';
|
|
else
|
|
{
|
|
$points = $account_logged->getCustomField('premium_points');
|
|
if(isset($_POST['changesexsave']) && $_POST['changesexsave'] == 1) {
|
|
if($points < $config['account_change_character_sex_points'])
|
|
$errors[] = 'You need ' . $config['account_change_character_sex_points'] . ' premium points to change sex. You have <b>'.$points.'</b> premium points.';
|
|
|
|
if(empty($errors) && !isset($config['genders'][$new_sex])) {
|
|
$errors[] = 'This sex is invalid.';
|
|
}
|
|
|
|
if(empty($errors)) {
|
|
$player = new OTS_Player();
|
|
$player->load($player_id);
|
|
|
|
if($player->isLoaded()) {
|
|
$player_account = $player->getAccount();
|
|
|
|
if($account_logged->getId() == $player_account->getId()) {
|
|
if($player->isOnline()) {
|
|
$errors[] = 'This character is online.';
|
|
}
|
|
|
|
if(empty($errors) && $player->getSex() == $new_sex)
|
|
$errors[] = 'Sex cannot be same';
|
|
|
|
if(empty($errors)) {
|
|
$sex_changed = true;
|
|
$old_sex = $player->getSex();
|
|
$player->setSex($new_sex);
|
|
|
|
$old_sex_str = 'Unknown';
|
|
if(isset($config['genders'][$old_sex]))
|
|
$old_sex_str = $config['genders'][$old_sex];
|
|
|
|
$new_sex_str = 'Unknown';
|
|
if(isset($config['genders'][$new_sex]))
|
|
$new_sex_str = $config['genders'][$new_sex];
|
|
|
|
$player->save();
|
|
$account_logged->setCustomField("premium_points", $points - $config['account_change_character_name_points']);
|
|
$account_logged->logAction('Changed sex on character <b>' . $player->getName() . '</b> from <b>' . $old_sex_str . '</b> to <b>' . $new_sex_str . '</b>.');
|
|
echo $twig->render('success.html.twig', array(
|
|
'title' => 'Character Sex Changed',
|
|
'description' => 'The character <b>' . $player->getName() . '</b> sex has been changed to <b>' . $new_sex_str . '</b>.'
|
|
));
|
|
}
|
|
}
|
|
else {
|
|
$errors[] = 'Character <b>'.$player_name.'</b> is not on your account.';
|
|
}
|
|
}
|
|
else {
|
|
$errors[] = "Character with this name doesn't exist.";
|
|
}
|
|
}
|
|
}
|
|
|
|
if(!$sex_changed) {
|
|
if(!empty($errors)) {
|
|
echo $twig->render('error_box.html.twig', array('errors' => $errors));
|
|
}
|
|
echo $twig->render('account.change_sex.html.twig', array(
|
|
'players' => $account_logged->getPlayersList(),
|
|
'player_sex' => isset($player) ? $player->getSex() : -1,
|
|
'points' => $points
|
|
));
|
|
}
|
|
}
|
|
|
|
?>
|