Thread: Auto strafer

Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    Matt0722's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    61
    Reputation
    10
    Thanks
    13

    Question Auto strafer

    is there a hack out there that is a auto wiggler/strafer for bhoping?
    that can auto strafe or you or do you have to move your mouse with out pressing a and d

  2. #2
    TheBandit's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by Matt0722 View Post
    is there a hack out there that is a auto wiggler/strafer for bhoping?
    that can auto strafe or you or do you have to move your mouse with out pressing a and d
    yes I have one

  3. #3
    Matt0722's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    61
    Reputation
    10
    Thanks
    13
    Quote Originally Posted by TheBandit View Post
    yes I have one
    is it free or do i have to pay.

  4. #4
    Prometheois117's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    Pshh, nothing personal, kid...
    Posts
    435
    Reputation
    24
    Thanks
    309
    I don't like how people don't care to look.

     
    Code:
    concommand.Remove("+bhop")
    concommand.Add("+bhop",function()
    local ply = LocalPlayer()
    local oldeyeang = ply:EyeAngles()
    hook.Add("CreateMove","hape",function(cmd)
    local neweyeang = ply:EyeAngles()
    if neweyeang.y > oldeyeang.y then
    oldeyeang = neweyeang
    RunConsoleCommand("+moveleft")
    RunConsoleCommand("-moveright")
    timer.Simple(.01, function() RunConsoleCommand("-moveleft") end)
    end

    if oldeyeang.y > neweyeang.y then
    oldeyeang = neweyeang
    RunConsoleCommand("+moveright")
    RunConsoleCommand("-moveleft")
    timer.Simple(.01, function() RunConsoleCommand("-moveright") end)
    end
    end)
    end)
    concommand.Remove("-hemp")
    concommand.Add("-hemp",function()
    RunConsoleCommand("-moveleft")
    RunConsoleCommand("-moveright")
    hook.Remove("CreateMove","hape")
    end)



    First, you need to bypass. Make this into a lua script and run it.
    this script was made by Melted Bu11et, full credit goes to him
    Once you have loaded this, type +bhop into console.

    If you need help hacking, please add me on Skype! I'd be glad to help anyone!*





     
    Quote Originally Posted by betterex View Post
    +vouch. Helped me learn how to use EggCrack and was fast about it :3
    Quote Originally Posted by tinyb0b View Post
    +Vouch Was really nice. Good trader. Gave Minecraft account quick and easily. Also helped me with an issue I had.

    Quote Originally Posted by PandaPlaysMC View Post
    +Vouch to Prometheois117, DOOD DIS GUYS DA BOMB, He gave me a Account
    Quote Originally Posted by JoshuaTrann View Post
    +Vouch He taught me how to use eggcrack right away when I added him on skype and he answered a ton of my questions LOL



     

    Understand if there is not an explanation of why you want to add me it will result in an instant block.
     
    My Skype is Tekkitear.

  5. The Following User Says Thank You to Prometheois117 For This Useful Post:

    Matt0722 (06-29-2014)

  6. #5
    Matt0722's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    61
    Reputation
    10
    Thanks
    13
    Quote Originally Posted by Prometheois117 View Post
    I don't like how people don't care to look.

     
    Code:
    concommand.Remove("+bhop")
    concommand.Add("+bhop",function()
    local ply = LocalPlayer()
    local oldeyeang = ply:EyeAngles()
    hook.Add("CreateMove","hape",function(cmd)
    local neweyeang = ply:EyeAngles()
    if neweyeang.y > oldeyeang.y then
    oldeyeang = neweyeang
    RunConsoleCommand("+moveleft")
    RunConsoleCommand("-moveright")
    timer.Simple(.01, function() RunConsoleCommand("-moveleft") end)
    end

    if oldeyeang.y > neweyeang.y then
    oldeyeang = neweyeang
    RunConsoleCommand("+moveright")
    RunConsoleCommand("-moveleft")
    timer.Simple(.01, function() RunConsoleCommand("-moveright") end)
    end
    end)
    end)
    concommand.Remove("-hemp")
    concommand.Add("-hemp",function()
    RunConsoleCommand("-moveleft")
    RunConsoleCommand("-moveright")
    hook.Remove("CreateMove","hape")
    end)



    First, you need to bypass. Make this into a lua script and run it.
    this script was made by Melted Bu11et, full credit goes to him
    Once you have loaded this, type +bhop into console.
    the thing is i look everywhere i dont find a single auto strafer only for css and out dated ones
    so ill try this one

  7. #6
    s0nnythecat's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    4
    Quote Originally Posted by Prometheois117 View Post
    I don't like how people don't care to look.



    First, you need to bypass. Make this into a lua script and run it.
    this script was made by Melted Bu11et, full credit goes to him
    Once you have loaded this, type +bhop into console.

    Or you could use
     
    local bhop = { }
    bhop.MetaPlayer = FindMetaTable( "Player")
    bhop.oldKeyDown = bhop.MetaPlayer['KeyDown']
    bhop.On = true
    bhop.SOn = true
    bhop.Hooks = { hook = { }, name = { } }
    bhop.jump = false
    function bhop.AddHook(hookname, name, func)
    table.insert( bhopHooks.hook, hookname )
    table.insert( bhopHooks.name, name )
    hook.Add( hookname, name, func ) --Hopefully you have something better
    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

    local oldEyePos = LocalPlayer():EyeAngles()--This is to see where player is looking
    function bhop.CreateMove( cmd )
    bhop.jump = false
    if (cmd:KeyDown( IN_JUMP )) then

    if (not bhop.jump) then
    if (bhop.On and ~LocalPlayer():OnGround()) then --Bhop here
    cmd:RemoveKey( IN_JUMP )
    end
    else
    bhop.jump = false
    end

    if(bhop.SOn ) 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
    bhop.right = false
    elseif( oldEyePos.y > traceRes.y ) then --If you move your mouse right, move right, while jumping
    oldEyePos = traceRes
    cmd:SetSideMove( 1000000 )
    bhop.right = true
    bhop.left = false
    end
    end
    elseif (not bhop.jump) then
    bhop.jump = true
    end
    end

    bhop.AddHook( "CreateMove", tostring(math.random(0, 133712837)), bhop.CreateMove )--add the hook

    concommand.Add( "bhop", function () --Toggler
    bhop.On = not bhop.On
    local state = "off"
    if bhop.On then state = "on" end
    print("Bhop ".. state)
    end)

    concommand.Add( "bhop_strafe", function ()
    bhop.SOn = not bhop.SOn
    local state = "off"
    if bhop.SOn then state = "on" end
    print("Strafe ".. state)
    end)

    concommand.Add("bhop_unload", function()
    for i = 1, #bhop.Hooks.hook do
    hook.Remove( bhop.Hooks.hook[i], bhop.Hooks.name[i] )
    print( "Unhooked "..bhop.Hooks.hook[i].." using name "..bhop.Hooks.name[i] )
    end

    concommand.Remove("bhop_strafe")
    concommand.Remove("bhop")
    concommand.Remove( "bhop_unload" )
    bhop = nil

    print("Bhop unloaded")
    end)

    print("Bhop loaded\nMade by LordOfGears2, enjoy. \nLeave feedback, please\n\n\n")
    pastebin: TDdrDK5U

    something not complete shit for once
    Last edited by s0nnythecat; 06-30-2014 at 03:02 AM.

  8. #7
    TheEagleEye's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    any way to do it without a bypasser... because ive been banned from servers for using lua bypassers

  9. #8
    Prometheois117's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Location
    Pshh, nothing personal, kid...
    Posts
    435
    Reputation
    24
    Thanks
    309
    If it's run by a little kid, maybe
    But besides that, no.
    sv_allowcslua has to be 1
    Most, if not all have it set to 0
    If you try to run a lua file withoujt bypass, and allowcslua is 0, nothing will happen.

    If you need help hacking, please add me on Skype! I'd be glad to help anyone!*





     
    Quote Originally Posted by betterex View Post
    +vouch. Helped me learn how to use EggCrack and was fast about it :3
    Quote Originally Posted by tinyb0b View Post
    +Vouch Was really nice. Good trader. Gave Minecraft account quick and easily. Also helped me with an issue I had.

    Quote Originally Posted by PandaPlaysMC View Post
    +Vouch to Prometheois117, DOOD DIS GUYS DA BOMB, He gave me a Account
    Quote Originally Posted by JoshuaTrann View Post
    +Vouch He taught me how to use eggcrack right away when I added him on skype and he answered a ton of my questions LOL



     

    Understand if there is not an explanation of why you want to add me it will result in an instant block.
     
    My Skype is Tekkitear.

  10. #9
    Matt0722's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    61
    Reputation
    10
    Thanks
    13
    Quote Originally Posted by Prometheois117 View Post
    If it's run by a little kid, maybe
    But besides that, no.
    sv_allowcslua has to be 1
    Most, if not all have it set to 0
    If you try to run a lua file withoujt bypass, and allowcslua is 0, nothing will happen.
    lol i basicly have 3 bypasses
    [NOT LUA]

  11. #10
    tdsx's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    255
    Reputation
    10
    Thanks
    1,007
    Quote Originally Posted by TheEagleEye View Post
    any way to do it without a bypasser... because ive been banned from servers for using lua bypassers
    Code:
    sv_allowcslua 1; lua_openscript_cl script.lua; sv_allowcslua 0
    Most ACs use a callback for cvar changing, but that can bypass some ACs that check for cvars manually.

  12. #11
    Kennuckle's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Newfoundland
    Posts
    10
    Reputation
    10
    Thanks
    0
    I have a bhop cfg file.
    You just plop it in your cfg foilder, type a quick command in your console and it will auto strafe. Though sometimes it glitches a little but most of the time it works.

  13. #12
    TheEagleEye's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    can u send me it??

  14. #13
    RustyBallz's Avatar
    Join Date
    May 2014
    Gender
    male
    Location
    neko land
    Posts
    33
    Reputation
    10
    Thanks
    313
    My Mood
    Asleep
    Get good, Use HOSC.
    This will be in Alpha 1.3

  15. #14
    liquidsystem's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    507
    Reputation
    135
    Thanks
    692
    My Mood
    Happy
    I have an auto-strafer that's coded in C++, not sure if that's what you'd want... It works on anything.
    If you wish to thank me, don't forget to click the button!

    Currently Playing: Osu, OldSchool Runescape (pm for username)


    Bitcoin Address: 1HUdLVM7DnT9gC1i5kNKzcKWekSbFoKNp2


    Steam
    Main Account
    Sales Account

    Feel free to PM me if you have any other questions relating Java, Python, or Physics, or general schoolwork


  16. #15
    Melted Bu11et's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    151
    Reputation
    10
    Thanks
    24
    Quote Originally Posted by RustyBallz View Post
    Get good, Use HOSC.
    This will be in Alpha 1.3
    how about you stop advertising your absolutely shitty hack

Page 1 of 2 12 LastLast

Similar Threads

  1. GMOD Auto Strafer?
    By kittydecat in forum Garry's Mod Discussions & Help
    Replies: 1
    Last Post: 02-10-2014, 08:33 PM
  2. [Request] Auto Strafer for CSS
    By Nilax in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 0
    Last Post: 03-09-2013, 02:04 PM
  3. WarRock Auto Vehicle Repair Hack
    By mortis123 in forum WarRock - International Hacks
    Replies: 12
    Last Post: 01-17-2006, 08:40 PM
  4. Vehicle Stealing and Vehicle auto-destroy in Havana
    By Zededarian in forum Game Hacking Tutorials
    Replies: 0
    Last Post: 01-02-2006, 04:34 PM
  5. WarRock Auto Healer
    By Flawless in forum WarRock - International Hacks
    Replies: 8
    Last Post: 12-31-2005, 03:44 AM