<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
 
<html>
 
<head>
 
<title>GameServer Stats and Player Stats by Jointy </title>
 
<meta name="author" content="Jointy">
 
<meta name="keywords" content="Game Server Status and Player Stats">
 
 
</head>
 
<script language="Javascript">
 
<!--
 
var text = "powered by Jointy ;D"
 
var speed = 200
 
var x = 0
 
function status_script() {
 
var a = text.substring(0,x)
 
var b = text.substring(x,x+1).toUpperCase()
 
var c = text.substring(x+1,text.length)
 
window.status = a + b + c
 
if (x == text.length) {
 
x = 0
 
}
 
else {
 
x++
 
}
 
setTimeout("status_script()",speed)
 
}
 
 
status_script();
 
//-->
 
</script>
 
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
 
<p align="center"/>
 
<form action="action.php" method="POST">
 
<table>
 
<tr><td>Server IP and Server Port</td></tr>
 
<tr><td><input type="Text" name="serverip" value="ip" size="25">:<input type="Text" name="serverport" value="port" size="5" maxlength="5"></td></tr>
 
<tr><td colspan="2"><select name="type" size="1"><option value="q3a">Quake3Arena</option><option value="hl">HalfLife</option><option value="q2">Quake2</option><option value="q2">Soldier of Fortune</option><option value="q2">KingPin</option><option value="ut">Unreal Tournament</option><option value="ut">Tactical Ops</option><option value="ut">Battle Field 1942</option></select></td></tr>
 
<tr><td colspan="2"><input type="Submit" value="Go !"> | <input type="reset" value="Again !"></td></tr>
 
<tr><td colspan="2">Bsp.: Quake3Arena Server - IP: "62.146.198.12" or DNS Port: "7310"</td></tr>
 
<tr><td colspan="2">Bsp.: Tactical Ops Server - IP: "212.122.148.66" or DNS Port: "7722"</td></tr>
 
<tr><td colspan="2"><font face="MS Sans Serif" color="#FF0000">Without any "/" and ":" at Begin or End of the IP or DNS !!</font></td></tr>
 
</table></form>
 
</p>
 
</body>
 
</html>
 
 
 |