1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

re-implemented auto-upload on publish

fixed the max length migration for MySQL
configure the python projects to be able to be published from command line
optimize find active pentalties query
add feature for issue #38
testing fix for concurrent dict access (in stats plugin)
This commit is contained in:
RaidMax
2018-09-12 19:53:11 -05:00
parent 090bd3214a
commit d6996f96e6
20 changed files with 1029 additions and 59 deletions

View File

@ -9,41 +9,118 @@ namespace SharedLibraryCore
{
public enum EventType
{
/// <summary>
/// the event wasn't parsed properly
/// </summary>
Unknown,
// events "generated" by the server
/// <summary>
/// a server started being monitored
/// </summary>
Start,
/// <summary>
/// a server stopped being monitored
/// </summary>
Stop,
/// <summary>
/// a client was detecting as connecting via RCon
/// </summary>
Connect,
/// <summary>
/// a client was detecting joining via log
/// </summary>
Join,
/// <summary>
/// a client was detected leaving via log
/// </summary>
Quit,
/// <summary>
/// a client was detected leaving by RCon
/// </summary>
Disconnect,
/// <summary>
/// the current map ended
/// </summary>
MapEnd,
/// <summary>
/// the current map changed
/// </summary>
MapChange,
// events "generated" by clients
// events "generated" by clients
/// <summary>
/// a client sent a message
/// </summary>
Say,
/// <summary>
/// a client was warned
/// </summary>
Warn,
/// <summary>
/// a client was reported
/// </summary>
Report,
/// <summary>
/// a client was flagged
/// </summary>
Flag,
/// <summary>
/// a client was unflagged
/// </summary>
Unflag,
/// <summary>
/// a client was kicked
/// </summary>
Kick,
/// <summary>
/// a client was tempbanned
/// </summary>
TempBan,
/// <summary>
/// a client was banned
/// </summary>
Ban,
/// <summary>
/// a client entered a command
/// </summary>
Command,
/// <summary>
/// a client's permission was changed
/// </summary>
ChangePermission,
// events "generated" by IW4MAdmin
/// <summary>
/// a message is sent to all clients
/// </summary>
Broadcast,
/// <summary>
/// a message is sent to a specific client
/// </summary>
Tell,
// events "generated" by script/log
/// <summary>
/// AC Damage Log
/// </summary>
ScriptDamage,
/// <summary>
/// AC Kill Log
/// </summary>
ScriptKill,
/// <summary>
/// damage info printed out by game script
/// </summary>
Damage,
/// <summary>
/// kill info printed out by game script
/// </summary>
Kill,
/// <summary>
/// team info printed out by game script
/// </summary>
JoinTeam,
StatusUpdate
}
static long NextEventId;