bunnyhop lua

stfu

New member
Joined
Oct 31, 2019
Messages
1
Reaction score
0
Максимально простой скрипт на бхоп.
Советую поменять спейс на любую другую кнопку, особенно если общаетесь в текстовом чате, ибо во время открытого чата при нажатии на спейс вы будете прыгать.
UPD: данный код нужно вставить в Glua Loader'e
Code:
CreateClientConVar("lenny_bunnyhop", 1, true, false)

function Bunnyhop()
    if GetConVar("lenny_bunnyhop"):GetInt() == 1 then
         if input.IsKeyDown(KEY_SPACE) then
             if LocalPlayer():IsOnGround() then
                 RunConsoleCommand("+jump")
                 timer.Create("Bhop", 0, 0.01, function()
                  RunConsoleCommand("-jump")
                 
                  end)
             end
         end
    end
end

hook.Add("Think", "Bunnyhop", Bunnyhop )
 
Last edited:

dima_iv71

New member
Joined
May 13, 2006
Messages
1
Reaction score
0
"bunnyhop lua" is literally a game-changer for some of us in the gaming community. Anyone else using it for scripting mods in games like CS:GO or Overwatch? Does it still work on the latest updates?"
 

DuZorn

New member
Joined
Nov 16, 2011
Messages
1
Reaction score
0
"Dude, I'm loving the Bunnyhop Lua mod for Minecraft. The new Lua scripting interface is insane and opens up so many possibilities for mod creators. Has anyone tried implementing some cryptocurrency integration yet?"
 

diver417

New member
Joined
Mar 16, 2012
Messages
1
Reaction score
0
"Hey OP, what's the current status on this BunnyHop Lua project? I remember seeing some hype around it a few months ago but lost track of the updates. Got any new intel on the roadmap?"
 
Top