Server Monitor

As I currently cant think of a good name RG Web LiveStats will have to do. The examples below show you how to include the stats on your own website

Note that ip_port needs to be replaced with eg 127.0.0.1_44000 - not a :

The upright version, which is not displayed below is still in development, but a full list of available CSS functions will be provided shortly as well as a few basic examples. This also has the ability to turn on + off certains boxes as well as odd + even row colours on the player list.

First Example - Easiest
<script type="text/javascript" src="http://warsow.routed-gaming.co.uk/scripts/ip_port.js"></script>

Second Example - Little more advance - involves CSS <script type="text/javascript" src="http://warsow.routed-gaming.co.uk/scripts/ip_port_customstyle.js"></script> <style type="text/css">

.rg_warsow_stats {
     width: 450px;
     background-color: #654;
     padding: 5px;
     font-family: Arial;
     border: 1px solid #000;
}

.rg_warsow_stats table {
     width: 100%;
     border-collapse: collapse;
     background-color: #243;
}

.rg_warsow_stats tr {

}

.rg_warsow_stats th {
     background-color: #543;
     text-align: left;
     padding: 5px;
     font-weight: normal;
     border-bottom: 1px solid #245;
     font-size: 12px;
}

.rg_warsow_stats td {
     text-align: left;
     border-bottom: 1px solid #234;
     font-size: 10px;
     padding: 5px;
     vertical-align: top;
}

.rg_warsow_stats .name {
     font-weight: bold;
}

</style>