349 lines
23 KiB
PHP
349 lines
23 KiB
PHP
<html>
|
|
<head>
|
|
<title>PQS - Game Console</title>
|
|
<link href="css/main.css" rel="stylesheet" type="text/css">
|
|
<script type="text/javascript" src="js/jquery.js"></script>
|
|
<script type="text/javascript">
|
|
var auto_refreshqueue = setInterval(function() {
|
|
$.ajaxSetup({ cache: false });
|
|
$('#queuediv').load('includes/getconsole.php');
|
|
}, 2000);
|
|
|
|
var auto_refreshpods = setInterval(function() {
|
|
$.ajaxSetup({ cache: false });
|
|
$('#mechpods').load('includes/mechpods.php');
|
|
}, 2000);
|
|
</script>
|
|
</head>
|
|
<body style='background: #000;'>
|
|
<?php
|
|
require_once("includes/config.php");
|
|
date_default_timezone_set('America/Chicago');
|
|
$ttime = date('Hi');
|
|
$numberpods = 0;
|
|
//var_dump($_SESSION);
|
|
//var_dump($_GET);
|
|
//var_dump($_POST);
|
|
if (isset($_GET['clearcurrent'])) {
|
|
$link = mysqli_connect('localhost', 'pqs', 'pqs') or die('Could not connect: ' . mysqli_error($link));
|
|
mysqli_select_db($link, 'pqs') or die('Could not select database');
|
|
$sql = "TRUNCATE TABLE pqs_currentmission";
|
|
mysqli_query($link, $sql) or die('Query failed: ' . mysqli_error($link));
|
|
mysqli_close($link);
|
|
}
|
|
if (isset($_GET['submit'])) {$submit=$_GET['submit'];}else{$submit='';}
|
|
|
|
if ($submit=='Update'){
|
|
$pod01 = (isset($_GET['pod01'])) ? 1 : 0;
|
|
$pod02 = (isset($_GET['pod02'])) ? 1 : 0;
|
|
$pod03 = (isset($_GET['pod03'])) ? 1 : 0;
|
|
$pod04 = (isset($_GET['pod04'])) ? 1 : 0;
|
|
$pod05 = (isset($_GET['pod05'])) ? 1 : 0;
|
|
$pod06 = (isset($_GET['pod06'])) ? 1 : 0;
|
|
$pod07 = (isset($_GET['pod07'])) ? 1 : 0;
|
|
$pod08 = (isset($_GET['pod08'])) ? 1 : 0;
|
|
$pod09 = (isset($_GET['pod09'])) ? 1 : 0;
|
|
$pod10 = (isset($_GET['pod10'])) ? 1 : 0;
|
|
$pod11 = (isset($_GET['pod11'])) ? 1 : 0;
|
|
$pod12 = (isset($_GET['pod12'])) ? 1 : 0;
|
|
$pod13 = (isset($_GET['pod13'])) ? 1 : 0;
|
|
$pod14 = (isset($_GET['pod14'])) ? 1 : 0;
|
|
$pod15 = (isset($_GET['pod15'])) ? 1 : 0;
|
|
$pod16 = (isset($_GET['pod16'])) ? 1 : 0;
|
|
$numberpods = $pod01 + $pod02 + $pod03 + $pod04 + $pod05 + $pod06 + $pod07 + $pod08 + $pod09 + $pod10 + $pod11 + $pod12 + $pod13 + $pod14 + $pod15 + $pod16;
|
|
$visibility = $_GET['visibility'];
|
|
$weather = $_GET['weather'];
|
|
$timeofday = $_GET['timeofday'];
|
|
$timelimit = $_GET['timelimit'];
|
|
$timetoreset = $_GET['timetoreset'];
|
|
$radar = $_GET['radar'];
|
|
$heat = (isset($_GET['heat'])) ? 1 : 0;
|
|
$friendlyfire = (isset($_GET['friendlyfire'])) ? 1 : 0;
|
|
$splashdamage = (isset($_GET['splashdamage'])) ? 1 : 0;
|
|
$limitedammo = (isset($_GET['limitedammo'])) ? 1 : 0;
|
|
$noreturn = (isset($_GET['noreturn'])) ? 1 : 0;
|
|
$printdebriefing = (isset($_GET['printdebriefing'])) ? 1 : 0;
|
|
$missionreview = (isset($_GET['missionreview'])) ? 1 : 0;
|
|
$weaponjam = (isset($_GET['weaponjam'])) ? 1 : 0;
|
|
$advancemode = (isset($_GET['advancemode'])) ? 1 : 0;
|
|
$armormode = (isset($_GET['armormode'])) ? 1 : 0;
|
|
$cameraship = $_GET['cameraship'];
|
|
$groupAvalible = (isset($_GET['groupAvalible'])) ? 1 : 0;
|
|
|
|
$link = mysqli_connect('localhost', 'pqs', 'pqs') or die('Could not connect: ' . mysqli_error($link));
|
|
mysqli_select_db($link, 'pqs') or die('Could not select database');
|
|
|
|
$queryconfig = "UPDATE pqs_gameconfig SET numpods=" . $numberpods . ", timepergame=" . $timelimit . ", timetoreset=" . $timetoreset . ", timelimit=".$timelimit.", visibility=".$visibility.", weather=".$weather.", radar=".$radar.", heat=".$heat.", friendlyfire=".$friendlyfire.", splashdamage=".$splashdamage.", limitedammo=".$limitedammo.", noreturn=".$noreturn.", printdebriefing=".$printdebriefing.", missionreview=".$missionreview.", weaponjam=".$weaponjam.", advancemode=".$advancemode.", armormode=".$armormode.", GroupAvalible=".$groupAvalible." WHERE gamechoiceid=1";
|
|
|
|
mysqli_query($link, $queryconfig) or die('Query failed: ' . mysqli_error($link));
|
|
|
|
$queryconfig = "UPDATE pqs_pods SET pod01=".$pod01.", pod02=".$pod02.", pod03=".$pod03.", pod04=".$pod04.", pod05=".$pod05.", pod06=".$pod06.", pod07=".$pod07.", pod08=".$pod08.", pod09=".$pod09.", pod10=".$pod10.",pod11=".$pod11.", pod12=".$pod12.", pod13=".$pod13.", pod14=".$pod14.", pod15=".$pod15.", pod16=".$pod16." ";
|
|
|
|
mysqli_query($link, $queryconfig) or die('Query failed: ' . mysqli_error($link));
|
|
|
|
$queryconfig = "UPDATE pqs_mission SET MissionSize=" . $numberpods . " WHERE Completed=0";
|
|
mysqli_query($link, $queryconfig) or die('Query failed: ' . mysqli_error($link));
|
|
mysqli_close($link);
|
|
}
|
|
|
|
|
|
if ($submit=='Commit Mission') {
|
|
$link = mysqli_connect('localhost', 'pqs', 'pqs') or die('Could not connect: ' . mysqli_error($link));
|
|
mysqli_select_db($link, 'pqs') or die('Could not select database');
|
|
$sql = "SELECT MIN(MissionID) FROM pqs_queue";
|
|
$getid = mysqli_query($link, $sql) or die('Query failed: ' . mysqli_error($link));
|
|
$rs = mysqli_fetch_array($getid);
|
|
$missionid = $rs[0];
|
|
$sql = "TRUNCATE TABLE pqs_currentmission";
|
|
mysqli_query($link, $sql) or die('Query failed: ' . mysqli_error($link));
|
|
$sql = "SELECT callsign, mech FROM pqs_queue where MissionID=$missionid";
|
|
$getid = mysqli_query($link, $sql) or die('Query failed: ' . mysqli_error($link));
|
|
while ($rs = mysqli_fetch_array($getid)) {
|
|
$callsign = str_replace("'", "''", $rs[0]);
|
|
$sql = "INSERT INTO pqs_currentmission (callsign,missionid) VALUES ('$callsign',$missionid)";
|
|
mysqli_query($link, $sql) or die('DEBUG: Insert into currentmission failed: ' . mysqli_error($link));
|
|
$sql = "INSERT INTO pqs_pastmissions (callsign,mech,missionid) VALUES ('$callsign','$rs[1]',$missionid)";
|
|
mysqli_query($link, $sql) or die('DEBUG: Insert into pastmissions failed: ' . mysqli_error($link));
|
|
}
|
|
$sql = "DELETE FROM pqs_queue WHERE MissionID=$missionid";
|
|
mysqli_query($link, $sql) or die('Query failed: ' . mysqli_error($link));
|
|
$sql = "UPDATE pqs_mission SET Completed=1, nummercs=$_GET[nummercs], missiontime=$ttime WHERE MissionID=$missionid";
|
|
mysqli_query($link, $sql) or die('Query failed: ' . mysqli_error($link));
|
|
mysqli_close($link);
|
|
}
|
|
if (isset($_GET['lock'])) {
|
|
$link = mysqli_connect('localhost', 'pqs', 'pqs') or die('Could not connect: ' . mysqli_error($link));
|
|
mysqli_select_db($link, 'pqs') or die('Could not select database');
|
|
$sql = "SELECT MIN(MissionID) FROM pqs_queue";
|
|
$getid = mysqli_query($link, $sql) or die('Query failed: ' . mysqli_error($link));
|
|
$rs = mysqli_fetch_array($getid);
|
|
$missionid = $rs[0];
|
|
$sql = "UPDATE pqs_mission SET locked=1 WHERE MissionID=$missionid";
|
|
mysqli_query($link, $sql) or die('Query failed: ' . mysqli_error($link));
|
|
mysqli_close($link);
|
|
}
|
|
if (isset($_GET['action'])) {
|
|
if ($_GET['action'] == 'clearupdate') {
|
|
if (isset($_GET['playerid'])) $playerid = $_GET['playerid'];
|
|
$link = mysqli_connect('localhost', 'pqs', 'pqs') or die('Could not connect: ' . mysqli_error($link));
|
|
mysqli_select_db($link, 'pqs') or die('Could not select database');
|
|
$sql = "UPDATE pqs_queue SET Updated = 0 WHERE ID = $playerid";
|
|
$result = mysqli_query($link, $sql) or die('Delete player from Queue failed: ' . mysqli_error($link));
|
|
mysqli_close($link);
|
|
}
|
|
}
|
|
|
|
$link = mysqli_connect('localhost', 'pqs', 'pqs') or die('Could not connect: ' . mysqli_error($link));
|
|
mysqli_select_db($link, 'pqs') or die('Could not select database');
|
|
$sql = "SELECT MIN(MissionID) FROM pqs_queue";
|
|
$getid = mysqli_query($link, $sql) or die('Query failed: ' . mysqli_error($link));
|
|
$rs = mysqli_fetch_array($getid);
|
|
$missionid = $rs[0];
|
|
$locked = 0;
|
|
if ($missionid != 0) {
|
|
$sql = "SELECT locked FROM pqs_mission WHERE MissionId=$missionid";
|
|
$getid = mysqli_query($link, $sql) or die('Query failed: ' . mysqli_error($link));
|
|
$rs = mysqli_fetch_array($getid);
|
|
$locked = $rs[0];
|
|
}
|
|
mysqli_close($link);
|
|
echo "<table width='450' border='0'>";
|
|
echo "<tr><td align='center'><a class='queuedisplayhead' href='console.php?clearcurrent=1'><font size='3'>Clear Current Queue</font></a> | ";
|
|
echo "<a class='queuedisplayhead' href='history.php?launch=console' target='_blank'><font size='3'>Open History Window</font></a></td></tr>";
|
|
echo "<tr><td align='center' valign='top'><table width='100%'><tr><td align='center' colspan='2'>";
|
|
echo "<div id='queuediv' class='consolediv'> </div>";
|
|
echo "</td></tr>";
|
|
echo "<tr><td align='center'>Total Pods: <span id='mechpods' class='mechpods'></span>";
|
|
echo "<form name='submit-group' action=''># Mercs in Pods: <input type='text' name='nummercs' value='0' size=2></td>";
|
|
echo "<td align='center'><input type='submit' name='submit' class='button' id='submit_btn' value='Commit Mission' /></form><br></td></tr>";
|
|
if ($locked == 1) {
|
|
echo "<tr><td align='center' colspan='2'><br><font size='4' color='990000'>This mission is LOCKED!</font><br></td></tr>";
|
|
} else { ?>
|
|
<form onsubmit="return confirm('Are you sure you want to lock this mission?\n\n\t\tIf YES, click OK\n\t\tIf NO, click Cancel.')"><?php
|
|
echo "<tr><td align='center' colspan='2'><br><input type='hidden' name='lock' value='lock'><input type='submit' name='submit' class='button' id='submit_btnlock' value='Lock Mission' /></form></td></tr>";
|
|
}
|
|
echo "</table></td>";
|
|
echo "<tr><td align='center' valign='top'>";
|
|
echo "<table width='100%'><tr><td align='center'>";
|
|
echo "<div class='consolediv'><div id='configform'>";
|
|
echo "<font size='6'>Configuration</font><br><br>";
|
|
echo "<form name='submit-config' action='console.php'>";
|
|
|
|
$link = mysqli_connect('localhost', 'pqs', 'pqs') or die('Could not connect: ' . mysql_error());
|
|
mysqli_select_db($link, 'pqs') or die('Could not select database');
|
|
$query = 'SELECT * FROM pqs_gameconfig';
|
|
$result = mysqli_query($link, $query) or die('Query failed: ' . mysql_error());
|
|
while ($line = mysqli_fetch_array($result)) {
|
|
$numpods = $line[1];
|
|
$timepergame = $line[2];
|
|
$timetoreset = $line[3];
|
|
$visibility = $line[7];
|
|
$weather = $line[8];
|
|
$timeofday = $line[9];
|
|
$timelimit = $line[10];
|
|
$radar = $line[11];
|
|
$heat = $line[12];
|
|
$friendlyfire = $line[13];
|
|
$splashdamage = $line[14];
|
|
$limitedammo = $line[15];
|
|
$noreturn = $line[16];
|
|
$printdebriefing = $line[17];
|
|
$missionreview = $line[18];
|
|
$weaponjam = $line[19];
|
|
$advancemode = $line[20];
|
|
$armormode = $line[21];
|
|
$cameraship = $line[22];
|
|
$groupAvalible = $line[23];
|
|
|
|
}
|
|
|
|
$query = 'SELECT * FROM pqs_pods';
|
|
$result = mysqli_query($link, $query) or die('Query failed: ' . mysql_error());
|
|
while ($line = mysqli_fetch_array($result)) {
|
|
$pod01 = $line[0];
|
|
$pod02 = $line[1];
|
|
$pod03 = $line[2];
|
|
$pod04 = $line[3];
|
|
$pod05 = $line[4];
|
|
$pod06 = $line[5];
|
|
$pod07 = $line[6];
|
|
$pod08 = $line[7];
|
|
$pod09 = $line[8];
|
|
$pod10 = $line[9];
|
|
$pod11 = $line[10];
|
|
$pod12 = $line[11];
|
|
$pod13 = $line[12];
|
|
$pod14 = $line[13];
|
|
$pod15 = $line[14];
|
|
$pod16 = $line[15];
|
|
}
|
|
|
|
?>
|
|
|
|
Time Limit : <select name='timelimit' >
|
|
<option value=1<?php if($timelimit==1)echo ' selected ';?>>1</option>
|
|
<option value=2<?php if($timelimit==2)echo ' selected ';?>>2</option>
|
|
<option value=3<?php if($timelimit==3)echo ' selected ';?>>3</option>
|
|
<option value=4<?php if($timelimit==4)echo ' selected ';?>>4</option>
|
|
<option value=5<?php if($timelimit==5)echo ' selected ';?>>5</option>
|
|
<option value=6<?php if($timelimit==6)echo ' selected ';?>>6</option>
|
|
<option value=7<?php if($timelimit==7)echo ' selected ';?>>7</option>
|
|
<option value=8<?php if($timelimit==8)echo ' selected ';?>>8</option>
|
|
<option value=9<?php if($timelimit==9)echo ' selected ';?>>9</option>
|
|
<option value=10<?php if($timelimit==10)echo ' selected ';?>>10</option>
|
|
<option value=11<?php if($timelimit==11)echo ' selected ';?>>11</option>
|
|
<option value=12<?php if($timelimit==12)echo ' selected ';?>>12</option>
|
|
<option value=13<?php if($timelimit==13)echo ' selected ';?>>13</option>
|
|
<option value=14<?php if($timelimit==14)echo ' selected ';?>>14</option>
|
|
<option value=15<?php if($timelimit==15)echo ' selected ';?>>15</option>
|
|
<option value=20<?php if($timelimit==20)echo ' selected ';?>>20</option>
|
|
<option value=25<?php if($timelimit==25)echo ' selected ';?>>25</option>
|
|
<option value=30<?php if($timelimit==30)echo ' selected ';?>>30</option>
|
|
</select>
|
|
<br>
|
|
Reset Time : <select name='timetoreset' >
|
|
<option value=1<?php if($timetoreset==1)echo ' selected ';?>>1</option>
|
|
<option value=2<?php if($timetoreset==2)echo ' selected ';?>>2</option>
|
|
<option value=3<?php if($timetoreset==3)echo ' selected ';?>>3</option>
|
|
<option value=4<?php if($timetoreset==4)echo ' selected ';?>>4</option>
|
|
<option value=5<?php if($timetoreset==5)echo ' selected ';?>>5</option>
|
|
<option value=6<?php if($timetoreset==6)echo ' selected ';?>>6</option>
|
|
<option value=7<?php if($timetoreset==7)echo ' selected ';?>>7</option>
|
|
<option value=8<?php if($timetoreset==8)echo ' selected ';?>>8</option>
|
|
<option value=9<?php if($timetoreset==9)echo ' selected ';?>>9</option>
|
|
<option value=10<?php if($timetoreset==10)echo ' selected ';?>>10</option>
|
|
</select>
|
|
<br>
|
|
<?php
|
|
|
|
if ("$pod01" == 0) {echo "<font color=red>Pod01 : </font>";} else {echo "Pod01 : ";} if ("$pod01" == 1) { echo "<input type='checkbox' id='pod01' name='pod01' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod01' name='pod01' /><br>"; }
|
|
if ("$pod02" == 0) {echo "<font color=red>Pod02 : </font>";} else {echo "Pod02 : ";} if ("$pod02" == 1) { echo "<input type='checkbox' id='pod02' name='pod02' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod02' name='pod02' /><br>"; }
|
|
if ("$pod03" == 0) {echo "<font color=red>Pod03 : </font>";} else {echo "Pod03 : ";} if ("$pod03" == 1) { echo "<input type='checkbox' id='pod03' name='pod03' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod03' name='pod03' /><br>"; }
|
|
if ("$pod04" == 0) {echo "<font color=red>Pod04 : </font>";} else {echo "Pod04 : ";} if ("$pod04" == 1) { echo "<input type='checkbox' id='pod04' name='pod04' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod04' name='pod04' /><br>"; }
|
|
if ("$pod05" == 0) {echo "<font color=red>Pod05 : </font>";} else {echo "Pod05 : ";} if ("$pod05" == 1) { echo "<input type='checkbox' id='pod05' name='pod05' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod05' name='pod05' /><br>"; }
|
|
if ("$pod06" == 0) {echo "<font color=red>Pod06 : </font>";} else {echo "Pod06 : ";} if ("$pod06" == 1) { echo "<input type='checkbox' id='pod06' name='pod06' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod06' name='pod06' /><br>"; }
|
|
if ("$pod07" == 0) {echo "<font color=red>Pod07 : </font>";} else {echo "Pod07 : ";} if ("$pod07" == 1) { echo "<input type='checkbox' id='pod07' name='pod07' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod07' name='pod07' /><br>"; }
|
|
if ("$pod08" == 0) {echo "<font color=red>Pod08 : </font>";} else {echo "Pod08 : ";} if ("$pod08" == 1) { echo "<input type='checkbox' id='pod08' name='pod08' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod08' name='pod08' /><br>"; }
|
|
if ("$pod09" == 0) {echo "<font color=red>Pod09 : </font>";} else {echo "Pod09 : ";} if ("$pod09" == 1) { echo "<input type='checkbox' id='pod09' name='pod09' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod09' name='pod09' /><br>"; }
|
|
if ("$pod10" == 0) {echo "<font color=red>Pod10 : </font>";} else {echo "Pod10 : ";} if ("$pod10" == 1) { echo "<input type='checkbox' id='pod10' name='pod10' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod10' name='pod10' /><br>"; }
|
|
if ("$pod11" == 0) {echo "<font color=red>Pod11 : </font>";} else {echo "Pod11 : ";} if ("$pod11" == 1) { echo "<input type='checkbox' id='pod11' name='pod11' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod11' name='pod11' /><br>"; }
|
|
if ("$pod12" == 0) {echo "<font color=red>Pod12 : </font>";} else {echo "Pod12 : ";} if ("$pod12" == 1) { echo "<input type='checkbox' id='pod12' name='pod12' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod12' name='pod12' /><br>"; }
|
|
if ("$pod13" == 0) {echo "<font color=red>Pod13 : </font>";} else {echo "Pod13 : ";} if ("$pod13" == 1) { echo "<input type='checkbox' id='pod13' name='pod13' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod13' name='pod13' /><br>"; }
|
|
if ("$pod14" == 0) {echo "<font color=red>Pod14 : </font>";} else {echo "Pod14 : ";} if ("$pod14" == 1) { echo "<input type='checkbox' id='pod14' name='pod14' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod14' name='pod14' /><br>"; }
|
|
if ("$pod15" == 0) {echo "<font color=red>Pod15 : </font>";} else {echo "Pod15 : ";} if ("$pod15" == 1) { echo "<input type='checkbox' id='pod15' name='pod15' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod15' name='pod15' /><br>"; }
|
|
if ("$pod16" == 0) {echo "<font color=red>Pod16 : </font>";} else {echo "Pod16 : ";} if ("$pod16" == 1) { echo "<input type='checkbox' id='pod16' name='pod16' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='pod16' name='pod16' /><br>"; }
|
|
?>
|
|
|
|
Visability : <select name='visibility' >
|
|
<option value=0<?php if($visibility==0)echo ' selected ';?>>Random</option>
|
|
<option value=1<?php if($visibility==1)echo ' selected ';?>>Deflt</option>
|
|
<option value=2<?php if($visibility==2)echo ' selected ';?>>Clear</option>
|
|
<option value=3<?php if($visibility==3)echo ' selected ';?>>L Fog</option>
|
|
<option value=4<?php if($visibility==4)echo ' selected ';?>>H Fog</option>
|
|
<option value=5<?php if($visibility==5)echo ' selected ';?>>PS Fog</option>
|
|
</select>
|
|
<br>
|
|
Weather : <select name='weather' >
|
|
<option value=0<?php if($visibility==0)echo ' selected ';?>>Random</option>
|
|
<option value=1<?php if($visibility==1)echo ' selected ';?>>Off</option>
|
|
<option value=2<?php if($visibility==2)echo ' selected ';?>>On</option>
|
|
</select>
|
|
<br>
|
|
Time of Day : <select name='timeofday' >
|
|
<option value=0<?php if($visibility==0)echo ' selected ';?>>Random</option>
|
|
<option value=1<?php if($visibility==1)echo ' selected ';?>>Day</option>
|
|
<option value=2<?php if($visibility==2)echo ' selected ';?>>Night</option>
|
|
</select>
|
|
<br>
|
|
Radar : <select name='radar' >
|
|
<option value=0<?php if($radar==0)echo ' selected ';?>>Random</option>
|
|
<option value=1<?php if($radar==1)echo ' selected ';?>>Novice</option>
|
|
<option value=2<?php if($radar==2)echo ' selected ';?>>Normal</option>
|
|
<option value=3<?php if($radar==3)echo ' selected ';?>>T Only</option>
|
|
<option value=4<?php if($radar==4)echo ' selected ';?>>No Rad</option>
|
|
</select>
|
|
<br>
|
|
|
|
<?php
|
|
echo " Heat : "; if ("$heat" == 1) { echo "<input type='checkbox' id='heat' name='heat' class='checkbox' checked /><br>"; } else { echo "<input type='checkbox' class='checkbox' id='heat' name='heat' /><br>"; }
|
|
|
|
echo "Friendly Fire : "; if ("$friendlyfire" == 1) { echo "<input type='checkbox' id='friendlyfire' name='friendlyfire' class='checkbox' checked />"; } else { echo "<input type='checkbox' class='checkbox' id='friendlyfire' name='friendlyfire' />"; } echo" <br>";
|
|
|
|
echo "Splash Damage : "; if ("$splashdamage" == 1) { echo "<input type='checkbox' id='splashdamage' name='splashdamage' class='checkbox' checked />"; } else { echo "<input type='checkbox' class='checkbox' id='splashdamage' name='splashdamage' />"; } echo" <br>";
|
|
|
|
echo "Limited Ammo : "; if ("$limitedammo" == 1) { echo "<input type='checkbox' id='limitedammo' name='limitedammo' class='checkbox' checked />"; } else { echo "<input type='checkbox' class='checkbox' id='limitedammo' name='limitedammo' />"; } echo" <br>";
|
|
|
|
echo "No Return : "; if ("$noreturn" == 1) { echo "<input type='checkbox' id='noreturn' name='noreturn' class='checkbox' checked />"; } else { echo "<input type='checkbox' class='checkbox' id='noreturn' name='noreturn' />"; }echo" <br>";
|
|
|
|
echo "Print Debriefing : "; if ("$printdebriefing" == 1) { echo "<input type='checkbox' id='printdebriefing' name='printdebriefing' class='checkbox' checked />"; } else { echo "<input type='checkbox' class='checkbox' id='printdebriefing' name='printdebriefing' />"; }echo" <br>";
|
|
|
|
echo "Mission Review : "; if ("$missionreview" == 1) { echo "<input type='checkbox' id='missionreview' name='missionreview' class='checkbox' checked />"; } else { echo "<input type='checkbox' class='checkbox' id='missionreview' name='missionreview' />"; }echo" <br>";
|
|
|
|
echo "Weapon Jam : "; if ("$weaponjam" == 1) { echo "<input type='checkbox' id='weaponjam' name='weaponjam' class='checkbox' checked />"; } else { echo "<input type='checkbox' class='checkbox' id='weaponjam' name='weaponjam' />"; }echo" <br>";
|
|
|
|
echo "Advance Mode : "; if ("$advancemode" == 1) { echo "<input type='checkbox' id='advancemode' name='advancemode' class='checkbox' checked />"; } else { echo "<input type='checkbox' class='checkbox' id='advancemode' name='advancemode' />"; }echo" <br>";
|
|
|
|
echo "Armor Mode : "; if ("$armormode" == 1) { echo "<input type='checkbox' id='armormode' name='armormode' class='checkbox' checked />"; } else { echo "<input type='checkbox' class='checkbox' id='armormode' name='armormode' />"; }echo" <br>";
|
|
|
|
?>
|
|
|
|
Cameraship : <select name='cameraship' >
|
|
<option value=0<?php if($cameraship==0)echo ' selected ';?>>None</option>
|
|
<option value=1<?php if($cameraship==1)echo ' selected ';?>>Camship</option>
|
|
<option value=2<?php if($cameraship==2)echo ' selected ';?>>LiveCam</option>
|
|
</select>
|
|
<br>
|
|
|
|
<?php
|
|
|
|
echo "Group Avalible : "; if ("$groupAvalible" == 1) { echo "<input type='checkbox' id='groupAvalible' name='groupAvalible' class='checkbox' checked />"; } else { echo "<input type='checkbox' class='checkbox' id='groupAvalible' name='groupAvalible' />"; }echo" <br>";
|
|
|
|
|
|
echo "<br><input type='submit' name='submit' class='button' id='submit_btn' value='Update' />";
|
|
echo "</form>";
|
|
echo "</div></div>";
|
|
echo "</td></tr></table></td></tr>";
|
|
echo "</td></tr></table></body></html>";
|
|
?>
|
|
|