1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

Been a while -- unstable 0.75

-added mask command
-added baninfo command
-added alias command and removed redundant output from `find`
-added rcon command
-added webfront (http://127.0.0.1:1624)
-true skill is officially implemented
-find now shows last connect time
-noise on pm (if gsc_enabled)
-force 8 line chat height (if gsc_enabled)
-tell admins the number of reports on join
-enhanced ban tracking
-ip wait timeout added
-remove report on ban
-can't report yourself
-remove reported players when banned
-fixed rare crash with toadmins backend
-fixed crash when finding player stats that don't exist
-fixed a bug that caused owner command to reactivate only `creator` rank player existed
-fixed a bug that caused certain notifications to be sent to all players
This commit is contained in:
RaidMax
2015-04-09 23:02:12 -05:00
parent ed4883d675
commit c3bf5bf33a
24 changed files with 1585 additions and 612 deletions

View File

@ -10,8 +10,9 @@ namespace IW4MAdmin
static String IP;
static int Port;
static String RCON;
static public double Version = 0.6;
static public double Version = 0.7;
static public double latestVersion;
static public List<Server> Servers;
static void Main(string[] args)
{
@ -24,9 +25,9 @@ namespace IW4MAdmin
else
Console.WriteLine(" Version " + Version + " (unable to retrieve latest)");
Console.WriteLine("=====================================================");
foreach (Server IW4M in checkConfig())
Servers = checkConfig();
foreach (Server IW4M in Servers)
{
//Threading seems best here
Server SV = IW4M;
@ -36,6 +37,9 @@ namespace IW4MAdmin
Console.WriteLine("Now monitoring " + SV.getName());
}
IW4MAdmin_Web.WebFront test = new IW4MAdmin_Web.WebFront();
test.Init();
Utilities.Wait(5); //Give them time to read an error before exiting
}