2025-01-16 20:13:59 +01:00
2024-01-15 23:06:34 +01:00
2024-01-15 23:06:38 +01:00
2024-01-17 20:32:26 +01:00
2024-02-21 22:30:10 +01:00
2024-01-15 23:06:34 +01:00
2025-01-16 20:13:59 +01:00

CS2GSI

GitHub License NuGet Version Github GitHub Release

.net7.0, .net8.0, .net9.0

Example Usage

public static void Main(string[] args)
    {
        CS2GSI.CS2GSI gsi = new ();
        gsi.AnyMessage += eventArgs => Console.WriteLine("Message");
        gsi.OnKill += eventArgs => Console.WriteLine($"Kill number {eventArgs.ValueAsOrDefault<int>()}");
        while(gsi.IsRunning)
            Thread.Sleep(10);
    }

Events

All Events with IDs here: https://github.com/C9Glax/CS2GSI/blob/master/CS2GSI/CS2Event.cs

EventName (ParameterType) Description

  • OnKill (int) Number of Kills in Match
  • OnHeadshot (int) Number of Headshots in Round
  • OnDeath (int) Number of Deaths in Match
  • OnFlashed
  • OnBurning
  • OnSmoked
  • OnRoundStart
  • OnRoundOver
  • OnRoundWin
  • OnRoundLoss
  • OnDamageTaken (int) Amount of Damage Taken
  • OnMatchStart
  • OnMatchOver
  • OnMoneyChange (int) Delta in Money
  • OnHealthChange (int) Delta in Health
  • OnArmorChange (int) Delta in Armor
  • OnHelmetChange (bool) Helmet on/off
  • OnEquipmentValueChange (int) Delta in Equipmentvalue
  • OnTeamChange
  • OnPlayerChange (string) SteamId64
  • OnHalfTime
  • OnFreezeTime
  • OnBombPlanted
  • OnBombDefused
  • OnBombExploded
  • AnyEvent
  • AnyMessage
  • OnActivityChange (string) Activity
Description
No description provided
Readme 117 KiB
2024-01-16 04:37:57 +01:00
Languages
C# 100%