From ce308e2e9c0fbcca95a2aec33a062c7fdef2013a Mon Sep 17 00:00:00 2001 From: Shadow Date: Tue, 2 Dec 2014 09:31:51 +0200 Subject: [PATCH] Resetting Game Server --- Admin/Templates/resetServer.php | 94 +++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 Admin/Templates/resetServer.php diff --git a/Admin/Templates/resetServer.php b/Admin/Templates/resetServer.php new file mode 100644 index 00000000..10fd1c41 --- /dev/null +++ b/Admin/Templates/resetServer.php @@ -0,0 +1,94 @@ + Access Denied: You are not Admin!"); +set_time_limit(0); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."a2b"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."abdata"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."activate"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."active"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."admin_log"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."alidata"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."ali_invite"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."ali_log"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."ali_permission"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."allimedal"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."artefacts"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."attacks"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."banlist"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."bdata"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."build_log"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."chat"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."config"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."deleting"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."demolition"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."diplomacy"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."enforcement"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."farmlist"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."fdata"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."forum_cat"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."forum_edit"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."forum_post"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."forum_survey"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."forum_topic"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."general"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."gold_fin_log"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."hero"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."illegal_log"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."links"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."login_log"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."market"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."market_log"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."mdata"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."medal"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."movement"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."ndata"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."online"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."password"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."prisoners"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."raidlist"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."research"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."route"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."send"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."tdata"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."tech_log"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."training"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."units"); +$time=time(); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."odata"); + +$database->populateOasisdata(); +$database->populateOasis(); +$database->populateOasisUnits2(); + +$passw=md5('123456'); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."users"); +mysql_query("INSERT INTO ".TB_PREFIX."users (id, username, password, email, tribe, access, gold, gender, birthday, location, desc1, desc2, plus, b1, b2, b3, b4, sit1, sit2, alliance, sessid, act, timestamp, ap, apall, dp, dpall, protect, quest, gpack, cp, lastupdate, RR, Rc, ok) VALUES +(5, 'Multihunter', '".$passw."', 'multihunter@travianx.mail', 0, 9, 0, 0, '0000-00-00', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, '', '', 0, 0, 0, 0, 0, 0, 0, 'gpack/travian_default/', 1, 0, 0, 0, 0), +(1, 'Support', '', 'support@travianx.mail', 0, 8, 0, 0, '0000-00-00', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, '', '', 0, 0, 0, 0, 0, 0, 0, 'gpack/travian_default/', 1, 0, 0, 0, 0), +(2, 'Nature', '', 'support@travianx.mail', 4, 8, 0, 0, '0000-00-00', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, '', '', 0, 0, 0, 0, 0, 0, 0, 'gpack/travian_default/', 1, 0, 0, 0, 0), +(4, 'Taskmaster', '', 'support@travianx.mail', 0, 8, 0, 0, '0000-00-00', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, '', '', 0, 0, 0, 0, 0, 0, 0, 'gpack/travian_default/', 1, 0, 0, 0, 0)"); + +mysql_query("DELETE FROM ".TB_PREFIX."vdata WHERE owner<>5"); +mysql_query("UPDATE ".TB_PREFIX."wdata SET occupied=0"); +mysql_query("TRUNCATE TABLE ".TB_PREFIX."ww_attacks"); + +header("Location: ../admin.php?p=resetdone"); +?>