Thread: GMod bhop

Results 1 to 7 of 7
  1. #1
    keelan720's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    35
    My Mood
    Psychedelic

    GMod bhop

    Hey guys, just wondering if there is a external gmod bhop script that works as well as a bhop script found in sasha or razor because all the bhop script for autohotkey ect don't work well at all compared to the hack menu scripts.

    The reason I want a external bhop script is due to lua restrictions on many servers (Yes I have a bypasser and it works, it's just those pesky Anticheats)

    Thanks,
    -Keelan

  2. #2
    AmiTHEHero's Avatar
    Join Date
    Jul 2015
    Gender
    female
    Location
    Earth
    Posts
    3
    Reputation
    10
    Thanks
    0
    You can use this Bhop.

    Code:
      
    
                        local bhop = { };
                        bhop.MetaPlayer = FindMetaTable( "Player") 
                        bhop.oldKeyDown = bhop.MetaPlayer['KeyDown']
                        local bhopOn = true;
                        local bhopSOn = true;
                        local bhopHooks = { hook = { }, name = { } };
                        bhop.left = false
                        bhop.right = false
                        bhop.jump = false
                        bhop.what = true
                        function bhop.AddHook(hookname, name, func)
                                table.insert( bhopHooks.hook, hookname );
                                table.insert( bhopHooks.name, name );
                                hook.Add( hookname, name, func );
                        end
                        bhop.MetaPlayer['KeyDown'] = function( self, key )
                        if self != LocalPlayer() then return end
                            if (key == IN_MOVELEFT) and bhop.left then
                                return true
                            elseif (key == IN_MOVERIGHT) and bhop.right then
                                return true
                            elseif (key == IN_JUMP) and bhop.jump then
                                return true
                            else
                                return bhop.oldKeyDown( self, key )
                            end
                        end
    
                        function bhop.spamjump()
                                bhop.what = false
                                bhop.jump = true
                                timer.Simple(.05, function() 
                                    bhop.jump = false
                                    timer.Simple( .25, function()
                                        bhop.what = true
                                    end)
                                end)
                        end
    
         
            local oldEyePos = LocalPlayer():EyeAngles()--This is to see where player is looking
            function bhop.CreateMove( cmd )
                            local JumpReleased = false;
                    if (cmd:KeyDown( IN_JUMP )) then
    
                            if (!JumpReleased) then
                                    if (bhopOn && !LocalPlayer():OnGround()) then --Bhop here
                                            cmd:RemoveKey( IN_JUMP );
                                            if bhop.what then
                                                bhop.spamjump()
                                            end
                                    end
                            else
                                    JumpReleased = false
                            end
                                           
                                    if(bhopSOn ) then--auto strafer
                                            local traceRes = LocalPlayer():EyeAngles()
                                   
                                            if( traceRes.y > oldEyePos.y ) then --If you move your mouse left, walk left, if you're jumping
                                                    oldEyePos = traceRes;
                                                    cmd:SetSideMove( -1000000 )
                                                    bhop.left = true
                                                    timer.Simple(1, function() bhop.left = false end)
                                            end
             
                                            if( oldEyePos.y > traceRes.y )  then --If you move your mouse right, move right,  while jumping
                                                    oldEyePos = traceRes;
                                                    cmd:SetSideMove( 1000000 )
                                                    bhop.right = true
                                                    timer.Simple(1, function() bhop.right = false end)
                                            end
                                    end
                    elseif (!JumpReleased) then
                            JumpReleased = true;
                    end
             
            end
               
            bhop.AddHook( "CreateMove", tostring(math.random(0, 133712837)), bhop.CreateMove )--add the hook
                concommand.Add( "bhop", function () --Toggler
                        if bhopOn then
                                print("Bhop off")
                                bhopOn = false;
                        else
                                print("Bhop on")
                                bhopOn = true;
                        end
                end )
                concommand.Add( "bhop_strafe",  function ()
                        if bhopSOn then
                                print("Strafe off")
                                bhopSOn = false;
                        else
                                print("Strafe on")
                                bhopSOn = true;
                        end
                end)
                concommand.Add("bhop_unload", function()
                    for i = 1, #bhopHooks.hook do
                    hook.Remove( bhopHooks.hook[i], bhopHooks.name[i] );
                    print( "Unhooked "..bhopHooks.hook[i].." using name "..bhopHooks.name[i] );
                end
                        concommand.Remove("bhop_strafe")
                        concommand.Remove("bhop")
                        bhopOn = false;
                        bhopSOn = false;
                        print("Bhop unloaded")
                        table.Empty( bhopHooks )
                        concommand.Remove( "bhop_unload" )
                end)
               
            print("Bhop loaded")

  3. #3
    Ecco2000's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    1
    My Mood
    Psychedelic
    Make one yourself one of the most simple cheats to make.Start in cs:go work to gmod.Once you are there start looking into other cheats.

    Edit: Thought you were talking about c++ sorry.

  4. #4
    teadrinkinghacker's Avatar
    Join Date
    Jul 2015
    Gender
    female
    Posts
    29
    Reputation
    10
    Thanks
    35
    Quote Originally Posted by Ecco2000 View Post
    Make one yourself one of the most simple cheats to make.Start in cs:go work to gmod.Once you are there start looking into other cheats.

    Edit: Thought you were talking about c++ sorry.
    why would you start in csgo and work your way down to gmod lmao what
    any post i participate in sub-posting or original posting in is considered a safe zone, you must keep the language casual and no cuss words and keep the sub-posting friendly and good (no non-friendly bad posting or sub-posting)

    need help with your posting? just copy how i do it!

    professional anti-bully-er and bullying abuse counselor

    if yo' ass think im a shitposta yo' betta' run befo' i get ya' w/ my counter-bad-posting skills

  5. #5
    Ecco2000's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    1
    My Mood
    Psychedelic
    Quote Originally Posted by teadrinkinghacker View Post


    why would you start in csgo and work your way down to gmod lmao what
    Csgo has more things to learn from.

  6. #6
    teadrinkinghacker's Avatar
    Join Date
    Jul 2015
    Gender
    female
    Posts
    29
    Reputation
    10
    Thanks
    35
    Quote Originally Posted by Ecco2000 View Post
    Csgo has more things to learn from.
    no it has unrealistic restrictions compared to gmod
    like untrusted if oob angles
    any post i participate in sub-posting or original posting in is considered a safe zone, you must keep the language casual and no cuss words and keep the sub-posting friendly and good (no non-friendly bad posting or sub-posting)

    need help with your posting? just copy how i do it!

    professional anti-bully-er and bullying abuse counselor

    if yo' ass think im a shitposta yo' betta' run befo' i get ya' w/ my counter-bad-posting skills

  7. #7
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    No response after several days, assuming solved.
    /Closed


    MPGH Staff History:
    Minion: 02-12-2013 - 6-28-2013
    Former Staff: 6-28-2013 - 7-14-2014
    Minion: 7-14-2014 - 1-3-2015
    Minion+: 1-3-2015 - 6-1-2015
    Moderator: 6-1-2015 - 10-2-2016
    Global Moderator: 10-2-2016 - Current

    Current Sections:
    DayZ Mod & Standalone Hacks & Cheats
    BattleOn Games Hacks, Cheats & Trainers
    Minecraft Hacks
    Other Semi-Popular First Person Shooter Hacks
    Blackshot Hacks & Cheats
    Need For Speed World Hacks
    Other First Person Shooter Hacks
    CounterStrike: Global Offensive Hacks
    Garry's Mod Hacks & Cheats


    Donating:
    If you want to donate money to me I take Bitcoin & Paypal, PM me for either of these if you're interested and thanks.
    Top Donators: (Awesome People)
    FanticSteal $75.00
    smurf_master $58.00 <- Best DayZ Gear Seller
    Fujiyama $25.00
    [MPGH]Black $10.00
    [MPGH]Hova $10.00
    xJudgez $4.54
    [MPGH]Normen's Sheep $3.50
    eminemlover $1.50


    Brony?
    https://www.mpgh.net/forum/groups/1728-mpgh-bronies.html

Similar Threads

  1. Krolek - A Autostrafe and Bhop GMod, CSS Hack!
    By kittydecat in forum Garry's Mod Hacks & Cheats
    Replies: 20
    Last Post: 05-16-2014, 11:44 PM
  2. Ace for GMOD.
    By Mexiforce in forum General
    Replies: 4
    Last Post: 10-15-2006, 09:01 AM
  3. [POLL]Gmod
    By System79 in forum General
    Replies: 13
    Last Post: 10-15-2006, 08:16 AM
  4. My Gmod sig made for Elly.
    By The_Enigma in forum Art & Graphic Design
    Replies: 17
    Last Post: 07-07-2006, 09:06 AM