1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-11 15:52:25 -05:00

zombie stats code

This commit is contained in:
RaidMax
2024-07-02 16:09:30 -05:00
parent 962abcf833
commit 79bd6ca8e1
44 changed files with 2354 additions and 4264 deletions

View File

@ -43,5 +43,6 @@ namespace SharedLibraryCore.Dtos
}
}
public Reference.Game Game { get; set; }
public string PerformanceBucket { get; set; }
}
}

View File

@ -1,4 +1,4 @@
namespace SharedLibraryCore.Events.Game.GameScript.Zombie;
namespace SharedLibraryCore.Events.Game.GameScript;
public class RoundEndEvent : GameEventV2
{

View File

@ -0,0 +1,15 @@
namespace SharedLibraryCore.Events.Game.GameScript.Zombie;
public class PlayerStatUpdatedGameEvent : ClientGameEvent
{
public enum StatUpdateType
{
Absolute,
Increment,
Decrement
}
public string StatTag { get; set; }
public int StatValue { get; set; }
public StatUpdateType UpdateType { get; set; }
}

View File

@ -5,5 +5,4 @@ namespace SharedLibraryCore.Events.Server;
public class ServerStatusReceiveEvent : GameServerEvent
{
public IStatusResponse Response { get; set; }
public string RawData { get; set; }
}

View File

@ -3,6 +3,7 @@ using System.Threading;
using System.Threading.Tasks;
using SharedLibraryCore.Events;
using SharedLibraryCore.Events.Game;
using SharedLibraryCore.Events.Game.GameScript;
using SharedLibraryCore.Events.Game.GameScript.Zombie;
namespace SharedLibraryCore.Interfaces.Events;

View File

@ -4,7 +4,7 @@
<OutputType>Library</OutputType>
<TargetFramework>net8.0</TargetFramework>
<PackageId>RaidMax.IW4MAdmin.SharedLibraryCore</PackageId>
<Version>2024.01.01.1</Version>
<Version>2024.0.0.0</Version>
<Authors>RaidMax</Authors>
<Company>Forever None</Company>
<Configurations>Debug;Release;Prerelease</Configurations>