mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-11 07:40:54 -05:00
Just pushing some changes
-webfront now displays player info and link to repz account -webfront shows ips for authed admin ( determined by ip ) -webfront now show chat and allows authed players to send ingame messages -fixed time span issue in webfront -fixed most recent ban always missing -fixed crash when RCON stops responding and removing a player -version on footer
This commit is contained in:
@ -5,6 +5,25 @@ using System.Text.RegularExpressions;
|
||||
|
||||
namespace IW4MAdmin
|
||||
{
|
||||
class Chat
|
||||
{
|
||||
public Chat ( Player O, String M, DateTime D)
|
||||
{
|
||||
Origin = O;
|
||||
Message = M;
|
||||
Time = D;
|
||||
}
|
||||
|
||||
public String timeString()
|
||||
{
|
||||
return Time.ToShortTimeString();
|
||||
}
|
||||
|
||||
public Player Origin { get; private set; }
|
||||
public String Message { get; private set; }
|
||||
public DateTime Time { get; private set; }
|
||||
}
|
||||
|
||||
class Event
|
||||
{
|
||||
public enum GType
|
||||
|
Reference in New Issue
Block a user