Skip to content

Commit 29fe277

Browse files
Merge pull request #313 from shobhit-pathak/dev
0.8.11
2 parents 65c5516 + 7a2a48b commit 29fe277

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# MatchZy Changelog
22

3+
# 0.8.11
4+
5+
#### August 9, 2025
6+
7+
- Updated CSS Version
8+
- Fixed SmokeGrenadeProjectile Signatures
9+
310
# 0.8.10
411

512
#### May 12, 2025

MatchZy.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using CounterStrikeSharp.API.Modules.Commands;
44
using CounterStrikeSharp.API.Modules.Utils;
55
using CounterStrikeSharp.API.Core.Attributes;
6-
using CounterStrikeSharp.API.Modules.Timers;
76
using CounterStrikeSharp.API.Modules.Events;
87

98

@@ -14,7 +13,7 @@ public partial class MatchZy : BasePlugin
1413
{
1514

1615
public override string ModuleName => "MatchZy";
17-
public override string ModuleVersion => "0.8.10";
16+
public override string ModuleVersion => "0.8.11";
1817

1918
public override string ModuleAuthor => "WD- (https://github.com/shobhit-pathak/)";
2019

MatchZy.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.315">
10+
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.333">
1111
<PrivateAssets>none</PrivateAssets>
1212
<ExcludeAssets>runtime</ExcludeAssets>
1313
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

SmokeGrenadeProjectile.cs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ namespace MatchZy;
77

88
public class SmokeGrenadeProjectile
99
{
10-
public static string smokeGrenadeProjectileWindowsSig = @"\x48\x89\x5C\x24\x08\x48\x89\x6C\x24\x10\x48\x89\x74\x24\x18\x57\x41\x56\x41\x57\x48\x83\xEC\x50\x4C\x8B\xB4\x24\x90\x00\x00\x00\x49\x8B\xF8";
11-
public static string smokeGrenadeProjectileLinuxSig = @"\x55\x4c\x89\xc1\x48\x89\xe5\x41\x57\x41\x56\x49\x89\xd6\x48\x89\xf2\x48\x89\xfe\x41\x55\x45\x89\xcd\x41\x54\x4d\x89\xc4\x53\x48\x83\xec\x28\x48\x89\x7d\xb8\x48";
10+
public static string smokeGrenadeProjectileWindowsSig =
11+
@"48 8B C4 48 89 58 ? 48 89 68 ? 48 89 70 ? 57 41 56 41 57 48 81 EC ? ? ? ? 48 8B B4 24 ? ? ? ? 4D 8B F8";
12+
13+
public static string smokeGrenadeProjectileLinuxSig =
14+
@"55 4C 89 C1 48 89 E5 41 57 49 89 FF 41 56 45 89 CE";
1215

1316
public static string smokeGrenadeProjectileSig = RuntimeInformation.IsOSPlatform(OSPlatform.Linux) ? smokeGrenadeProjectileLinuxSig : smokeGrenadeProjectileWindowsSig;
1417
public static MemoryFunctionWithReturn<IntPtr, IntPtr, IntPtr, IntPtr, IntPtr, IntPtr, IntPtr, int> CSmokeGrenadeProjectile_CreateFunc = new(smokeGrenadeProjectileSig);
@@ -25,5 +28,4 @@ public static nint Create(Vector position, QAngle angle, Vector velocity, CCSPla
2528
player.TeamNum
2629
);
2730
}
28-
29-
}
31+
}

0 commit comments

Comments
 (0)