There's a lot of older ones on here but is this still possible and is there a working lua script to bhop with? :D thanks
[lua]
function Bhop()
local h = false
if input.IsKeyDown( KEY_USE ) then
if h then
RunConsoleCommand( '+Jump' )
h = false
else
RunConsoleCommand( '-Jump' )
h = true
end
end
end
hook.Add( 'Think', 'Bhop', Bhop)
[/lua]
This should work, but no promises.
[QUOTE=marvincmarvin;31365506]
This should work, but no promises.[/QUOTE]
Isn't that the same as holding down the spacebar?
Bunny hopping is a bit more complex; i've never successfully done it (i'm a noob i know). My understanding is your supposed to incorporate turning and strafing to maximize velocity?
But why even write a lua script to to that? You could always just make increase their velocity when they jump x times consecutively if your looking to make it simpler.
He's most likely asking to do this on other servers, not make a gamemode himself or sever.
Sorry, you need to Log In to post a reply to this thread.