Bunny Hop 1.2

Pluginuri pentru modul AmxModX.

Moderators: Moderatori ajutatori, Moderatori, Echipa eXtreamCS.com

Post Reply
LordOfNothing
Membru, skill +1
Membru, skill +1
Posts: 387
Joined: 19 Jul 2013, 15:51
Detinator Steam: Nu
Reputatie: Restrictie PM
Has thanked: 11 times
Been thanked: 35 times

24 Nov 2013, 09:43

Descriere: cu acest plugin puteti face bhop pe server !

Descarcare:
| Afiseaza codul
/*        LordOfNothing @ 2013

                Change Log :
                
                                1.0 - Original Source
                                1.1 - Change client_prethink with Ham_Player_Jump
                                1.2 - Add command /bhop 
                
                
                Credits :
                
                                wacK - Original Source
                                LordOfnothing - project developer
*/

#include <amxmodx>
#include <engine>
#include <hamsandwich>
#include <colorchat>

new const PLUGIN [] = "Auto Bunny Hop";
new const VERSION [] = "1.2";
new const AUTHOR [] = "LordOfNothing";

new bool:BhopOn[33];

public plugin_init() {

        register_plugin(PLUGIN,VERSION,AUTHOR)
        RegisterHam(Ham_Player_Jump, "player", "Fwd_JumpCount", 1)
        register_clcmd("say /bhop","ActivateBhop");
        register_clcmd("say_team /bhop","ActivateBhop");
}

public ActivateBhop(id)
{
        if(!BhopOn[id])
        {
                ColorChat(id, RED, "[BHOP] ^4Ai activat auto bhop !");
                BhopOn[id] = true;
                return PLUGIN_HANDLED
        }else{
                ColorChat(id, RED, "[BHOP] ^4Ai dezactivat auto bhop !");
                BhopOn[id] = false;
                return PLUGIN_HANDLED
        }
        return PLUGIN_CONTINUE
        
}

public client_disconnect(id)
{
        BhopOn[id] = false;
}

public Fwd_JumpCount(id) {

        if(is_user_alive(id) && BhopOn[id])
        {
                new oldbuttons = get_user_oldbutton(id);

                oldbuttons &= ~IN_JUMP;
                entity_set_int(id, EV_INT_oldbuttons, oldbuttons);
        }

}
Nume: Bhop
Versiune: 1.2
Link oficial: http://www.extreamcs.com/forum

Instalare:
1. Fisierul bhop.sma il puneti in addons/amxmodx/scripting
2. Fisierul bhop.amxx il puneti in addons/amxmodx/plugins
3. Intrati in fisierul addons/amxmodx/configs/plugins.ini si adaugati la urma:

Code: Select all

bhop.amxx

Comenzi chat:
  • /bhop
RoyalServer
smileye
Fost moderator
Fost moderator
Posts: 4648
Joined: 12 Jun 2012, 15:18
Detinator Steam: Da
Reputatie: Fost moderator
Has thanked: 258 times
Been thanked: 38 times
Contact:

24 Nov 2013, 09:53

Frumos.Ca sa nu fac alt topic, spune-mi un script de bhop pentru cfg, ca sa sar de mai multe ori cand apas space.

Am scriptul asta, dar nu merge.

Code: Select all

\\ Bunny - Hop //
\\ Descriere: Tinand apasat space sari incontinu
-----------------
alias +newbh "alias _special jump; jump"
alias -newbh "alias _special"
alias newbhtoggle "bhopon"
alias jump "special; wait; +jump; wait; -jump"
bind "space" "+newbh"
munir
Membru eXtream
Membru eXtream
Posts: 3193
Joined: 30 Aug 2012, 22:16
Detinator Steam: Da
CS Status: Fost scripter
Detinator server CS: Nu
SteamID: -
Reputatie: Fost super moderator
Restrictie schimbare nume
Nume anterior: falseq, cruyff
Location: Bucuresti
Has thanked: 342 times
Been thanked: 571 times
Contact:

24 Nov 2013, 10:12

Ai fi fost mult mai apreciat daca veneai cu o idee originala. Nu vad nimic original la plugin, mai sunt pe net 500 de pluginuri de genul.
@Felicitari.
Retras
LordOfNothing
Membru, skill +1
Membru, skill +1
Posts: 387
Joined: 19 Jul 2013, 15:51
Detinator Steam: Nu
Reputatie: Restrictie PM
Has thanked: 11 times
Been thanked: 35 times

24 Nov 2013, 10:57

@smiley: scrie pe google bhop.cfg

@false: cum pot sal fac din engine in fakemeta ?
User avatar
sN1kkeRs.
Membru, skill +3
Membru, skill +3
Posts: 1058
Joined: 19 Sep 2013, 19:43
Detinator Steam: Da
Detinator server CS: Da
SteamID: bzk15
Location: Brăila
Has thanked: 124 times
Been thanked: 37 times

24 Nov 2013, 11:24

smileye wrote:Frumos.Ca sa nu fac alt topic, spune-mi un script de bhop pentru cfg, ca sa sar de mai multe ori cand apas space.

Am scriptul asta, dar nu merge.

Code: Select all

\\ Bunny - Hop //
\\ Descriere: Tinand apasat space sari incontinu
-----------------
alias +newbh "alias _special jump; jump"
alias -newbh "alias _special"
alias newbhtoggle "bhopon"
alias jump "special; wait; +jump; wait; -jump"
bind "space" "+newbh"

Code: Select all

alias +hop "alias _special hopf;hopf ;cl_sidespeed 400 ;cl_pitchspeed 400" 

alias -hop "alias _special;cl_sidespeed 400;cl_pitchspeed 400" 

alias hopf "special;wait;+jump;wait;-jump" 

bind space "+hop"
smileye
Fost moderator
Fost moderator
Posts: 4648
Joined: 12 Jun 2012, 15:18
Detinator Steam: Da
Reputatie: Fost moderator
Has thanked: 258 times
Been thanked: 38 times
Contact:

24 Nov 2013, 12:39

Nu merge nimic din ce am testat, eu as vrea pentru server clasic.
LordOfNothing
Membru, skill +1
Membru, skill +1
Posts: 387
Joined: 19 Jul 2013, 15:51
Detinator Steam: Nu
Reputatie: Restrictie PM
Has thanked: 11 times
Been thanked: 35 times

25 Nov 2013, 08:06

Bineinteles ca nu merge daca il folosesti pe STEAM sau FAKE STEAM , acest script merge doar pe NON STEAM

ia pluginul meu si bagal pe serveru tau , toti vor putea face bhop ;)
mr.f3lyx
Membru, skill +2
Membru, skill +2
Posts: 610
Joined: 10 Nov 2013, 20:24
Detinator Steam: Da
Location: Palermo, Italy
Has thanked: 69 times
Been thanked: 17 times

05 Dec 2013, 22:14

alias +jump_2 "alias _special j_bhop; j_start"
alias -jump_2 "alias _special j_stop"
alias j_bhop "+jump;wait;-jump;wait;j_start"
alias j_start "special"
alias j_stop " "
bind "SPACE" "+jump_2"
Post Reply

Return to “AmxModX”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 0 guests