1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-11 07:40:54 -05:00

changed player graph update interval to every 5 minutes

hopefully fixed skipping the logging of Kayak library issue.
I'm an idiot, 59 in playerhistory, not 60
added IW4 callback gsc for custom scriptkills.
Fixed duplicate death events
Trusted group can be enabled/disabled with !enable/disabletrusted
This commit is contained in:
RaidMax
2017-11-02 11:49:45 -05:00
parent c19d6e98f5
commit 9699f7c3f1
21 changed files with 189 additions and 29 deletions

View File

@ -44,11 +44,11 @@ namespace Plugin
public static ConfigurationManager ConfigManager { get; private set; }
public string Name { get { return "Fast Restarter"; } }
public string Name => "Fast Restarter";
public float Version { get { return 1.0f; } }
public float Version => 1.0f;
public string Author { get { return "RaidMax"; } }
public string Author => "RaidMax";
public async Task OnEventAsync(Event E, Server S)
{
@ -67,7 +67,7 @@ namespace Plugin
catch (SharedLibrary.Exceptions.DvarException)
{
await S.ExecuteCommandAsync("set src_intermission_time 20");
await S.SetDvarAsync("scr_intermission_time", 20);
}
}
}