Page 1 of 1

Smooth Move

Posted: 11 Apr 2024, 01:55
by z0h1r-LK

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:

  1. // --- --- ---
  2. // Smooth Move
  3. // --- --- ---
  4. ze_slowdown_enable 1            // Slowdown after Jumping (1 = Enabled | 0 = Disabled).
  5. ze_multijump_enable 0           // Multi-Jumps (0 = Disabled | 1 = Both | 2 = Human only | 3 = Zombie only).
  6. ze_multijump_count 2            // Number of Jumps (default: 2).
  7. ze_parachute_enable 0           // Parachute (0 = Disabled | 1 = Both | 2 = Human only | 3 = Zombie only).
  8. ze_parachute_fallspeed "90.0"   // Parachute Fall speed (default: 90.0)

APIs:

  1. /**
  2.  * Give or Remove Multi-Jumps for specific player.
  3.  *
  4.  * @param id     Client index.
  5.  * @param bSet   true = Give player Multi-Jumps | false = Otherwise.
  6.  * @param iCount Number of Jumps.
  7.  *
  8.  * @return       true  | If the player gets the Multi-Jumps.
  9.  *               false | If player not on game.
  10.  *
  11.  * @error        If this player not on game.
  12.  */
  13. native ze_set_user_multijump(id, bool:bSet, iCount = 2);
  14.  
  15. /**
  16.  * Give or Remove Parachute for specific player.
  17.  *
  18.  * @param id     Client index.
  19.  * @param bSet   true = Give player Parachute | false = Otherwise.
  20.  *
  21.  * @return       true  | If the player gets the Parachute.
  22.  *               false | If player not on game.
  23.  *
  24.  * @error        If this player not on game.
  25.  */
  26. native ze_set_user_parachute(id, bool:bSet);

Change Logs:

  1. [Version 1.1]
  2.  - Old version for ZE 1.x.
  3.  
  4. [Version 1.2]
  5.  - Merge Multi-Jumps and Parachute in one plug-in.
  6.  - Added CVar "ze_slowdown_enable".
  7.  
  8. [Version 1.2.1]  # Current.
  9.  - Minor changes.

Downloads:


Re: Smooth Move

Posted: 11 Apr 2024, 21:15
by z0h1r-LK
  • Updated to 1.2.1