Official version 0.9.5

This commit is contained in:
RaidMax 2015-09-01 11:00:12 -05:00
parent 995334796e
commit ea1ffeeb4a
6 changed files with 19 additions and 5 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1,6 +1,8 @@
VERSION 0.9.5
-Major refactoring to support plugins
-*web front redux*
-lots of little fixes and stability improvements
-temporary removal of stats plugin as I perfect it
VERSION 0.9.2
CHANGELOG:

View File

@ -13,8 +13,21 @@ namespace StatsPlugin
public override void Execute(Event E)
{
PlayerStats pStats = Stats.playerStats.getStats(E.Origin);
String statLine = String.Format("^5{0} ^7KILLS | ^5{1} ^7DEATHS | ^5{2} ^7KDR | ^5{3} ^7SKILL", pStats.Kills, pStats.Deaths, pStats.KDR, pStats.Skill);
String statLine;
PlayerStats pStats;
if (E.Target != null)
{
pStats = Stats.playerStats.getStats(E.Target);
statLine = String.Format("^5{0} ^7KILLS | ^5{1} ^7DEATHS | ^5{2} ^7KDR | ^5{3} ^7SKILL", pStats.Kills, pStats.Deaths, pStats.KDR, pStats.Skill);
}
else
{
pStats = Stats.playerStats.getStats(E.Origin);
statLine = String.Format("^5{0} ^7KILLS | ^5{1} ^7DEATHS | ^5{2} ^7KDR | ^5{3} ^7SKILL", pStats.Kills, pStats.Deaths, pStats.KDR, pStats.Skill);
}
E.Origin.Tell(statLine);
}
}

View File

@ -169,7 +169,6 @@ namespace Webfront_Plugin
<th class=server_map><span>{1}</span></th>
<th class=server_players><span>{2}</span></th>
<th class=server_gametype><span>{3}</span></th>
<th><a href=/stats>Stats</a></th>
<th><a href=/bans>Bans</a></th>
<th><a class='history' href='/graph?server={4}'>History</a></th>
</tr>

View File

@ -13,12 +13,12 @@ namespace Webfront_Plugin
if (E.Type == Event.GType.Start)
{
Manager.webFront.addServer(E.Owner);
E.Owner.Log.Write("Webfront now has access to server on port " + E.Owner.getPort(), Log.Level.Production);
E.Owner.Log.Write("Webfront now listening", Log.Level.Production);
}
if (E.Type == Event.GType.Stop)
{
Manager.webFront.removeServer(E.Owner);
E.Owner.Log.Write("Webfront has lost access to server on port " + E.Owner.getPort(), Log.Level.Production);
E.Owner.Log.Write("Webfront has lost access to server", Log.Level.Production);
}
}