sourcemod 1.13 upgrade. moved all plugins from steamworks to ripext. added smjanson and asyncsocket.inc an extra time so its easier to find. updated plugins that would not compile with 1.13

This commit is contained in:
jenz
2026-09-22 01:55:09 +02:00
parent 789b8ebef9
commit 2947bef434
17 changed files with 2131 additions and 462 deletions
+7 -3
View File
@@ -1,5 +1,7 @@
#pragma semicolon 1
#pragma newdecls required
#define PLUGIN_AUTHOR "Cloud Strife"
#define PLUGIN_VERSION "1.0"
@@ -21,15 +23,17 @@ public Plugin myinfo =
Handle g_CFuncRotating_StartForward = null;
Handle g_CFuncRotating_UpdateSpeed = null;
stock float FloatMod(float num, float denom)
/*
float FloatMod(float num, float denom)
{
return num - denom * RoundToFloor(num / denom);
}
stock float operator%(float oper1, float oper2)
float operator%(float oper1, float oper2)
{
return FloatMod(oper1, oper2);
}
*/
// Set m_bStopAtStartPos to false
public MRESReturn CFuncRotating_InputStartForward(int entity)
@@ -106,4 +110,4 @@ public void OnPluginStart()
{
LogError("Could not enable detour for CFuncRotating::UpdateSpeed");
}
}
}