mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 16:44:24 +00:00
33 lines
2.0 KiB
PHP
33 lines
2.0 KiB
PHP
<?php
|
|
#################################################################################
|
|
## ##
|
|
## -= YOU MUST NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## ##
|
|
## Project: ZravianX ##
|
|
## Version: 2011.11.05 ##
|
|
## Filename: GameEngine/Admin/Mods/cp.php ##
|
|
## Developed by: Dzoki ##
|
|
## Edited by: ZZJHONS ##
|
|
## License: Creative Commons BY-NC-SA 3.0 ##
|
|
## Copyright: ZravianX (c) 2011 - All rights reserved ##
|
|
## URLs: http://zravianx.zzjhons.com ##
|
|
## Source code: http://www.github.com/ZZJHONS/ZravianX ##
|
|
## ##
|
|
#################################################################################
|
|
|
|
include_once("../../Account.php");
|
|
mysql_connect(SQL_SERVER, SQL_USER, SQL_PASS);
|
|
mysql_select_db(SQL_DB);
|
|
if ($session->access < ADMIN) die("Access Denied: You aren't Admin!");
|
|
|
|
$id = $_POST['id'];
|
|
$admid = $_POST['admid'];
|
|
mysql_query("UPDATE ".TB_PREFIX."users SET cp = cp + ".$_POST['cp']." WHERE id = ".$id."");
|
|
|
|
$name = $database->getUserField($id,"username",0);
|
|
mysql_query("Insert into ".TB_PREFIX."admin_log values (0,$admid,'Added ".$_POST['cp']." Culture Points to user <a href=\'admin.php?p=player&uid=$id\'>$name</a> ',".time().")");
|
|
|
|
header("Location: ../../../admin.php?p=player&uid=".$id."&cp=ok");
|
|
?>
|