Sign in to follow this  
Ponderer

Script for server status etc

Recommended Posts

I know there's a couple websites up now that show server status, players, etc... but does anyone have a basic script they wouldn't mind sharing that does it?  I'm just looking for online/offline, players... nothing too complicated.

 

Thank you for the help!

Share this post


Link to post
Share on other sites

stats.html in your Dedicated Server folder will do the stats for you.

 

Spoiler

<!DOCTYPE html> <HTML>
	<HEAD>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <TITLE>Wurm Online Server Stats</TITLE>
	<link rel="stylesheet" type="text/css" href="http://www.wurmonline.com/css/gameData.css" />
	</HEAD>

<BODY id="body" class="gameDataBody">
	<TABLE id="statsDataTable">
		<TR>
			<TH></TH>
			<TH></TH>
		</TR>
		<TR class="statsTR">
			<TD class="statsDataTDName">Server name</TD>
			<TD class="statsDataTDValue">Moorlands RP [6x] [Persistent Realm] .: moorwurm.com :.</TD>
		</TR>
		<TR class="statsTR">
			<TD class="statsDataTDName">Last updated</TD>
			<TD class="statsDataTDValue">Dec 9, 2015</TD>
		</TR>
		<TR class="statsTR">
			<TD class="statsDataTDName">Status</TD>
			<TD class="statsDataTDValue">Up and running</TD>
		</TR>
		<TR class="statsTR">
			<TD class="statsDataTDName">Uptime</TD>
			<TD class="statsDataTDValue">6 hours and 47 minutes</TD>
		</TR>
		<TR class="statsTR">
			<TD class="statsDataTDName">Wurm Time</TD>
			<TD class="statsDataTDValue">It is 02:01:30 on day of Awakening in week 3 of the starfall of the Digging in the year of 990.</TD>
		</TR>
		<TR class="statsTR">
			<TD class="statsDataTDName">Moorlands RP [6x] [Persistent Realm] .: moorwurm.com :. players</TD>
			<TD class="statsDataTDValue">6/250</TD>
		</TR>
		<TR class="statsTR">
			<TD class="statsDataTDName">Epic cluster players</TD>
			<TD class="statsDataTDValue">0/0</TD>
		</TR>
		<TR class="statsTR">
			<TD class="statsDataTDName">Total players</TD>
			<TD class="statsDataTDValue">6/250</TD>
		</TR>
		</TABLE>

</BODY>
</HTML>

 

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this