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:
@@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user