• Serverside Bhop Script?
    6 replies, posted
Does anyone know where to get a serverside Bhop script? A good friend of mine was globally banned for using a bhop script, I just though it'd be safer to implement it serverside. ;)
There is one somewhere on my computer, I'll search it and then post it here ;) Btw, only use it on your own server, because anything else is considered hacking. EDIT: This one is the one I found, should work for the server side. [CODE]if SERVER then PlayerData = {} for id,player_ in pairs(player.GetAll()) do PlayerData[id] = player_ end hook.Add("PlayerAuthed","...",function(player_) table.insert(PlayerData,player_) end) hook.Add("PlayerDisconnected","...",function(player_) table.remove(PlayerData,player_) end) getTNameByPlayer = function(player_) for id,ply in pairs(PlayerData) do if player_ == ply then return "timer"..id end end end concommand.Add("+bhop",function(ply) local timerName = getTNameByPlayer(ply) if timerName == nil then return end timer.Create(timerName,0.001,0,function() ply:ConCommand((ply:IsOnGround() and "+" or "-").."jump") end) end) concommand.Add("-bhop",function(ply) local timerName = getTNameByPlayer(ply) if timerName == nil then return end ply:ConCommand("-jump") timer.Remove(timerName) end) end[/CODE]
I appreciate it, but i'm looking for one that will continuously hop while holding spacebar. Thanks though.
You have to bind a key to +bhop...
Your friend didn't get banned for using a bhop script, he got banned for using some sort of bypass. Do you have any idea how hard it would be for garry to write a reliable global anticheat for clientside lua scripts?
[QUOTE=gary23548;41950577]I appreciate it, but i'm looking for one that will continuously hop while holding spacebar. Thanks though.[/QUOTE] In console, bind spacebar to +bhop
Just make a bhop script that runs in createmove and send that to your clients. These bhop scripts that use console commands make you jump when you are typing in chat and are really slow.
Sorry, you need to Log In to post a reply to this thread.