[CSGO] Ramp slope fix (from Momentum Mod)
Posted: Sun Jan 26, 2020 1:25 pm
Ramp slope fix
Prevent players from stopping dead on (most?) ramps.
Slope movementPrevent players from stopping dead on (most?) ramps.
The Momentum Mod team claims to have fixed players having their velocity reset on slopes like surf ramps. User fatalis opened an issue on their GitHub repository describing his testings which would eventually be merged into the game.
SM9 asked for ways to port it to CSGO in IRC the other day, so here we go.
The plugin does exactly the same as the sv_ramp_fix ConVar in Momentum Mod, removing the code to reset player velocity when the game thinks they're inside a wall or suddently move in the opposite direction.
The only significant difference in CSGO is client prediction. The patch is only performed on the server, so clients will still predict getting stuck but continue on when they notice the server has a different opinion.VectorCopy(vec3_origin, mv->m_vecVelocity);
View punch
The CGameMovement::TryPlayerMove function checks if the player was slowed down significantly and simulates slamming into a wall with some effects on the client - including a huge view punch shaking the camera.
The plugin optionally is using DHooks to hook and block CGameMovement:layerRoughLandingEffects. The problem in CSGO is again that the view punch code is in the client as well, so it'll predict a view punch again, but reset shortly after. (Momentum Mod added a convar and moved it all to the server side)
Installation
Upload ramp_slope_fix.games.txt into your gamedata folder.
Upload ramp_slope_fix.smx into your plugins folder.
Optionally install DHooks for the view punch hook.
Download
Source
SMX File