mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 16:44:24 +00:00
103 lines
3.8 KiB
PHP
Executable File
103 lines
3.8 KiB
PHP
Executable File
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename editHero.php ##
|
|
## Type BACKEND ##
|
|
## Developed by: Dzoki & Advocatie ##
|
|
## License: TravianZ Project ##
|
|
## Reworks by: ronix ##
|
|
## Copyright: TravianZ (c) 2010-2014. All rights reserved. ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
if (!isset($_SESSION)) {
|
|
session_start();
|
|
}
|
|
if (empty($_SESSION['access']) || $_SESSION['access'] < 9) {
|
|
die("Access Denied: You are not Admin!");
|
|
}
|
|
|
|
// Issue #139: this Mod is POSTed to directly, so it must verify the CSRF token
|
|
// itself (it does not go through admin.php's central csrf_verify()).
|
|
require_once(__DIR__ . '/../csrf.php');
|
|
csrf_verify();
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Autoloader path
|
|
// ---------------------------------------------------------------------------
|
|
$autoprefix = '';
|
|
for ($i = 0; $i < 5; $i++) {
|
|
$autoprefix = str_repeat('../', $i);
|
|
if (file_exists($autoprefix . 'autoloader.php')) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
include_once($autoprefix . "GameEngine/config.php");
|
|
include_once($autoprefix . "GameEngine/Database.php");
|
|
include_once($autoprefix . "GameEngine/Data/hero_full.php");
|
|
|
|
$status = "&ce=1";
|
|
|
|
if (isset($_POST['id'], $_POST['hid'])) {
|
|
$id = (int)$_POST['id'];
|
|
$hid = (int)$_POST['hid'];
|
|
$hname = trim($_POST['hname'] ?? '');
|
|
|
|
if ($hname === '') {
|
|
header("Location: ../../../Admin/admin.php?p=editHero&uid=$id&e=1");
|
|
exit;
|
|
}
|
|
|
|
// Input curat - cast individual, NU escape global
|
|
$hunit = (int)($_POST['hunit'] ?? 0);
|
|
$hlvl = max(0, min(100, (int)($_POST['hlvl'] ?? 0)));
|
|
$exp = (int)($_POST['exp'] ?? 0);
|
|
$hhealth = (float)($_POST['hhealth'] ?? 100);
|
|
$hatk = (int)($_POST['hatk'] ?? 0);
|
|
$hdef = (int)($_POST['hdef'] ?? 0);
|
|
$hob = (int)($_POST['hob'] ?? 0);
|
|
$hdb = (int)($_POST['hdb'] ?? 0);
|
|
$hrege = (int)($_POST['hrege'] ?? 0);
|
|
|
|
$experience = isset($hero_levels[$hlvl]) ? (int)$hero_levels[$hlvl] : 0;
|
|
$hnameEsc = $database->escape($hname);
|
|
|
|
$q = "UPDATE " . TB_PREFIX . "hero SET
|
|
unit = $hunit,
|
|
name = '$hnameEsc',
|
|
level = $hlvl,
|
|
points = $exp,
|
|
experience = $experience,
|
|
health = '$hhealth',
|
|
attack = $hatk,
|
|
defence = $hdef,
|
|
attackbonus = $hob,
|
|
defencebonus = $hdb,
|
|
regeneration = $hrege
|
|
WHERE heroid = $hid AND uid = $id";
|
|
|
|
$return = $database->query($q);
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Log admin - adaptat pentru tabelul tău
|
|
// ---------------------------------------------------------------------------
|
|
|
|
if ($return) {
|
|
$adminId = (int)$_SESSION['id'];
|
|
$time = time();
|
|
$logText = "Changed hero info for user <a href='admin.php?p=player&uid=$id'>$id</a> (hero $hid)";
|
|
$logEsc = $database->escape($logText);
|
|
|
|
$database->query(
|
|
"INSERT INTO " . TB_PREFIX . "admin_log (`id`, `user`, `log`, `time`) " .
|
|
"VALUES (0, '$adminId', '$logEsc', $time)"
|
|
);
|
|
$status = "&cs=1";
|
|
}
|
|
}
|
|
|
|
header("Location: ../../../Admin/admin.php?p=player&uid=" . (int)$id . $status);
|
|
exit;
|
|
?>
|