Smooth Move
• Description:
This plug-in give player Multi-Jumps or Parachute, You can disable slowdown after Jumping for good Bhop or Movement.
• Instruction && Installations:
Compile plug-in with AMX Mod X v1.10.0.5467 or higher
• Console Variables:
- // --- --- ---
- // Smooth Move
- // --- --- ---
- ze_slowdown_enable 1 // Slowdown after Jumping (1 = Enabled | 0 = Disabled).
- ze_multijump_enable 0 // Multi-Jumps (0 = Disabled | 1 = Both | 2 = Human only | 3 = Zombie only).
- ze_multijump_count 2 // Number of Jumps (default: 2).
- ze_parachute_enable 0 // Parachute (0 = Disabled | 1 = Both | 2 = Human only | 3 = Zombie only).
- ze_parachute_fallspeed "90.0" // Parachute Fall speed (default: 90.0)
• APIs:
- /**
- * Give or Remove Multi-Jumps for specific player.
- *
- * @param id Client index.
- * @param bSet true = Give player Multi-Jumps | false = Otherwise.
- * @param iCount Number of Jumps.
- *
- * @return true | If the player gets the Multi-Jumps.
- * false | If player not on game.
- *
- * @error If this player not on game.
- */
- native ze_set_user_multijump(id, bool:bSet, iCount = 2);
- /**
- * Give or Remove Parachute for specific player.
- *
- * @param id Client index.
- * @param bSet true = Give player Parachute | false = Otherwise.
- *
- * @return true | If the player gets the Parachute.
- * false | If player not on game.
- *
- * @error If this player not on game.
- */
- native ze_set_user_parachute(id, bool:bSet);
• Change Logs:
- [Version 1.1]
- - Old version for ZE 1.x.
- [Version 1.2]
- - Merge Multi-Jumps and Parachute in one plug-in.
- - Added CVar "ze_slowdown_enable".
- [Version 1.2.1]
- - Minor changes.
- [Version 1.2.2] ; <~~ Current.
- - Fix water bug.
• Downloads: