diff options
author | Matthijs Kuiper <info@matthijskuiper.nl> | 2017-02-04 16:05:45 +0100 |
---|---|---|
committer | Matthijs Kuiper <info@matthijskuiper.nl> | 2017-02-04 16:05:45 +0100 |
commit | 40dfa7d5c0dc8e4cb2c95e403b6b4b2c4bf70644 (patch) | |
tree | 6ac6279ac26749ffe7ca0ae9603fbcae2e757e6e /html/pages/match_info.php |
Original UTStats beta 4.2.84.2.8
Diffstat (limited to 'html/pages/match_info.php')
-rwxr-xr-x | html/pages/match_info.php | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/html/pages/match_info.php b/html/pages/match_info.php new file mode 100755 index 0000000..27b6669 --- /dev/null +++ b/html/pages/match_info.php @@ -0,0 +1,78 @@ +<?php
+$r_info = small_query("SELECT teamgame, t0, t1, t2, t3, t0score, t1score, t2score, t3score FROM uts_match WHERE id = '$mid'");
+if (!$r_info) die("Match not found");
+$teamgame = ($r_info['teamgame'] == 'True') ? true : false;
+
+echo '
+<table class = "box" border="0" cellpadding="1" cellspacing="2" width="720">
+ <tbody><tr>
+ <td class="heading" align="center">Unreal Tournament Match</td>
+ </tr>
+</tbody></table>
+<br>';
+include("pages/match_info_server.php");
+
+$GLOBALS['gid'] = $gid;
+$_GLOBALS['gid'] = $gid;
+$GLOBALS['gamename'] = $gamename;
+$_GLOBALS['gamename'] = $gamename;
+
+include('includes/teamstats.php');
+switch($real_gamename) {
+ case "Assault":
+ case "Assault (insta)":
+ include("pages/match_info_ass.php");
+ break;
+
+ case "Capture the Flag":
+ case "Capture the Flag (insta)":
+ include("pages/match_info_ctf.php");
+ teamstats($mid, 'Match Summary');
+ break;
+
+ case "Domination":
+ case "Domination (insta)":
+ teamstats($mid, 'Match Summary', 'dom_cp', 'Dom Pts');
+ break;
+
+ case "JailBreak":
+ case "JailBreak (insta)":
+ teamstats($mid, 'Match Summary', 'ass_obj', 'Team Releases');
+ break;
+
+ case "Bunny Track":
+ include("pages/match_info_bt.php");
+ break;
+
+ case "Extended Last Man Standing":
+ case "Extended Last Man Standing (insta)":
+ case "Last Man Standing":
+ case "Last Man Standing (insta)":
+ case "Last Man Standing +":
+ case "Last Man Standing + (insta)":
+ case "Last Man Standing++":
+ case "Last Man Standing++ (insta)":
+ include("pages/match_info_lms.php");
+ break;
+
+ default:
+ if ($teamgame) {
+ teamstats($mid, 'Match Summary');
+ } else {
+ teamstats($mid, 'Player Summary');
+ }
+}
+
+
+if ($real_gamename == "Assault" or $real_gamename== "Assault (insta)") {
+ include("pages/match_info_other2.php");
+}
+else if ($real_gamename != "Bunny Track") {
+ include("pages/match_info_other.php");
+}
+
+if ($real_gamename == "Capture the Flag" or $real_gamename== "Capture the Flag (insta)") {
+ include("pages/match_report.php");
+}
+
+?>
\ No newline at end of file |