Skip to content

Commit 1227834

Browse files
committed
merge from upstream
2 parents f3d8ce9 + bb8eb74 commit 1227834

68 files changed

Lines changed: 721 additions & 363 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

addons/sourcemod/configs/matchmodes.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
}
1616
"zonemod"
1717
{
18-
"name" "ZoneMod 2.8.9e"
18+
"name" "ZoneMod 2.9"
1919
}
2020
"zoneretro"
2121
{
22-
"name" "ZoneMod Retro 2.8.9e"
22+
"name" "ZoneMod Retro 2.9"
2323
}
2424
"neomod"
2525
{
@@ -51,7 +51,7 @@
5151
}
5252
"zonehunters"
5353
{
54-
"name" "ZoneHunters 2.8.9d"
54+
"name" "ZoneHunters 2.9"
5555
}
5656
}
5757
"3v3"
Binary file not shown.
Binary file not shown.

addons/sourcemod/gamedata/l4d2_resolve_collision.txt

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"left4dead2"
44
{
55
"Offsets"
6-
{
6+
{
77
"Infected::m_vecNeighbors"
88
{
99
"windows" "7468"
@@ -118,6 +118,30 @@
118118
"linux" "@_ZN11CBaseEntity15SetGroundEntityEPS_"
119119
"windows" "\x55\x8B\xEC\x53\x8B\xD9\x8B\x83\x44\x02\x00\x00"
120120
}
121+
122+
"ZombieBotLocomotion::OnAnimationActivityComplete"
123+
{
124+
"library" "server"
125+
"linux" "@_ZN19ZombieBotLocomotion27OnAnimationActivityCompleteEi"
126+
"windows" "\x55\x8B\xEC\x83\xEC\x0C\x57\x8B\xF9\x83\xBF\xE8\x00\x00\x00\x00"
127+
}
128+
129+
"CBaseEntity::SetAbsVelocity" // https://github.com/Psykotikism/L4D1-2_Signatures
130+
{
131+
"library" "server"
132+
"linux" "@_ZN11CBaseEntity14SetAbsVelocityERK6Vector"
133+
"mac" "@_ZN11CBaseEntity14SetAbsVelocityERK6Vector"
134+
"windows" "\x2A\x2A\x2A\x2A\x2A\x2A\x56\x8B\x2A\x2A\xF3\x2A\x2A\x2A\x57\x8B\x2A\x0F"
135+
/* ? ? ? ? ? ? 56 8B ? ? F3 ? ? ? 57 8B ? 0F */
136+
}
137+
138+
"ZombieBotLocomotion::UpdatePosition"
139+
{
140+
"library" "server"
141+
"linux" "@_ZN19ZombieBotLocomotion14UpdatePositionERK6Vector"
142+
"windows" "\x55\x8B\xEC\x83\xEC\x30\xA1\x2A\x2A\x2A\x2A\x53\x56\x57\x8B\xF9"
143+
/* ? ? ? ? ? ? 56 8B ? ? F3 ? ? ? 57 8B ? 0F */
144+
}
121145
}
122146
}
123147
}
37 Bytes
Binary file not shown.
1.56 KB
Binary file not shown.
1.34 KB
Binary file not shown.
576 Bytes
Binary file not shown.

addons/sourcemod/scripting/archive/double_getup.sp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,14 @@ public void OnPluginStart()
125125
if (lateLoad) {
126126
for (int i = 1; i <= MaxClients; i++) {
127127
if (IsClientInGame(i)) {
128-
OnClientPostAdminCheck(i);
128+
OnClientPutInServer(i);
129129
}
130130
}
131131
}
132132
}
133133

134134
// Used to check for tank rocks and tank punches.
135-
public void OnClientPostAdminCheck(int client)
135+
public void OnClientPutInServer(int client)
136136
{
137137
SDKHook(client, SDKHook_OnTakeDamage, OnTakeDamage);
138138
}

addons/sourcemod/scripting/archive/modules/FinaleSpawn.sp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public FS_ConVarChange(Handle:convar, const String:oldValue[], const String:newV
4141
FS_bEnabled = GetConVarBool(FS_hEnabled);
4242
}
4343

44-
public OnClientPostAdminCheck(client)
44+
public OnClientPutInServer(client)
4545
{
4646
SDKHook(client, SDKHook_PreThinkPost, HookCallback);
4747
}

0 commit comments

Comments
 (0)