Update function.php

This commit is contained in:
Shadow
2014-03-21 11:38:35 +02:00
parent 1a06675d1b
commit d2f10a83ec
+104 -63
View File
@@ -27,73 +27,114 @@ class funct {
} }
} }
function Act($get){ function Act($get){
global $admin,$database; global $admin,$database;
switch($get['action']){ switch($get['action']){
case recountPop: case "recountPop":
$admin->recountPop($get['did']); $admin->recountPop($get['did']);
$admin->recountCP($get['did']); $admin->recountCP($get['did']);
break; break;
case recountPopUsr: case "recountPopUsr":
$admin->recountPopUser($get['uid']); $admin->recountPopUser($get['uid']);
break; break;
case StopDel: case "StopDel":
//stop deleting //stop deleting
break; break;
case delVil: case "delVil":
if($get['mode'] != 1){ if($get['mode'] != 1){
$admin->DelVillage($get['did']); $admin->DelVillage($get['did']);
}else{ }else{
$admin->DelVillage($get['did'], 1); $admin->DelVillage($get['did'], 1);
}
break;
case "delBan":
$admin->DelBan($get['uid'],$get['id']);
//remove ban
break;
case "addBan":
if($get['time']){$end = time()+$get['time']; }else{$end = '';}
if(is_numeric($get['uid'])){
$get['uid'] = $get['uid'];
}else{
$get['uid'] = $database->getUserField(addslashes($get['uid']),'id',1);
}
$admin->AddBan($get['uid'],$end,$get['reason']);
//add ban
break;
case "delOas":
//oaza
break;
case "logout":
$this->LogOut();
break;
case "killHero":
$varray = $database->getProfileVillages($get['uid']);
$killhero=false;
$error="";
for ($i = 0; $i <= count($varray)-1; $i++) {
$killhero=$database->FindHeroInVil($varray[$i]['wref']);
if ($killhero) break;
$killhero=$database->FindHeroInDef($varray[$i]['wref']);
if ($killhero) break;
$killhero=$database->FindHeroInMovement($varray[$i]['wref']);
if ($killhero) break;
}
if (!$killhero){
$killhero=$database->FindHeroInOasis($get['uid']);
}
if ($killhero) {
$database->KillMyHero($get['uid']);
$error="&kc=1";
}else $error="&e=1";
header("Location: admin.php?p=player&uid=".$get['uid'].$error);
exit;
case "reviveHero":
$result=$database->query("SELECT * FROM ".TB_PREFIX."hero WHERE uid='".$get['uid']."'");
$hdata=mysql_fetch_array($result);
$database->query("UPDATE ".TB_PREFIX."units SET hero = 1 WHERE vref = ".$hdata['wref']);
$database->query("UPDATE ".TB_PREFIX."hero SET `dead` = '0', `inrevive` = '0', `health` = '100', `lastupdate` = ".time()." WHERE `uid` = '".$get['uid']."'");
header("Location: admin.php?p=player&uid=".$get['uid']."&rc=1");
exit;
case "addHero":
$user = $database->getUserArray($get['uid'],1);
$vilarray=$database->getVrefCapital($get['uid']);
$database->query("INSERT INTO ".TB_PREFIX."hero (`uid`, `wref`, `regeneration`, `unit`, `name`, `level`, `points`,
`experience`, `dead`, `health`, `attack`, `defence`, `attackbonus`, `defencebonus`, `trainingtime`, `autoregen`,
`intraining`) VALUES ('".$get['uid']."', '" . $vilarray['wref'] . "', '0', '".$get['u']."', '".addslashes($user['username'])."',
'0', '5', '0', '0', '100', '0', '0', '0', '0', '".time()."', '50', '0')");
$database->query("UPDATE ".TB_PREFIX."units SET hero = 1 WHERE vref = ".$vilarray['wref']);
header("Location: admin.php?p=player&uid=".$get['uid']."&ac=1");
exit;
} }
break; if($get['action'] == 'logout'){
case delBan: header("Location: admin.php");
$admin->DelBan($get['uid'],$get['id']); }else{
//remove ban header("Location: ".$_SERVER['HTTP_REFERER']);
break; }
case addBan:
if($get['time']){$end = time()+$get['time']; }else{$end = '';}
if(is_numeric($get['uid'])){
$get['uid'] = $get['uid'];
}else{
$get['uid'] = $database->getUserField(addslashes($get['uid']),'id',1);
}
$admin->AddBan($get['uid'],$end,$get['reason']);
//add ban
break;
case delOas:
//oaza
break;
case logout:
$this->LogOut();
break;
}
if($get['action'] == 'logout'){
header("Location: admin.php");
}else{
header("Location: ".$_SERVER['HTTP_REFERER']);
}
} }
function Act2($post){ function Act2($post){
global $admin,$database; global $admin,$database;
switch($post['action']){ switch($post['action']){
case DelPlayer: case "DelPlayer":
$admin->DelPlayer($post['uid'],$post['pass']); $admin->DelPlayer($post['uid'],$post['pass']);
header("Location: ?p=search&msg=ursdel"); header("Location: ?p=search&msg=ursdel");
break; break;
case punish: case "punish":
$admin->Punish($post); $admin->Punish($post);
header("Location: ".$_SERVER['HTTP_REFERER']); header("Location: ".$_SERVER['HTTP_REFERER']);
break; break;
case addVillage: case "addVillage":
$admin->AddVillage($post); $admin->AddVillage($post);
header("Location: ".$_SERVER['HTTP_REFERER']); header("Location: ".$_SERVER['HTTP_REFERER']);
break; break;
} }
} }
function LogIN($username,$password){ function LogIN($username,$password){
@@ -177,4 +218,4 @@ if($funct->CheckLogin()){
if($_POST['action']=='login'){ if($_POST['action']=='login'){
$funct->LogIN($_POST['name'],$_POST['pw']); $funct->LogIN($_POST['name'],$_POST['pw']);
} }
?> ?>