Results 1 to 5 of 5

Hybrid View

  1. #1
    asdfjasfj93's Avatar
    Join Date
    Apr 2023
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by thetikene View Post
    Incredible release! My prediction is that this will revive the mpgh garrys mod forum and the whole hacking community by itself
    This insane code took me weeks of research. It will allow you to escape handcuffs (automatically!1)

    Code:
    /*
        CONFIG
    */
    local auto_free = true      -- If set to true, it will automatically remove handcuffs. Otherwise, you gotta hold the F key
    
    -- Yes
    local ply = LocalPlayer()
    local releasing = false
    
    -- Remove cuffs when letter F is pressed
    local do_attack = true
    local function cuff_spam(cmd)
        local is_handcuffed, handcuffs = ply:IsHandcuffed()
        if not is_handcuffed then 
            if releasing then
                releasing = false
                chat.AddText(Color( 255, 51, 51 ), "FOK OFF")
                RunConsoleCommand("-attack")
            end
        return end
        if input.IsKeyDown(KEY_F) or auto_free then
            if not releasing then
                chat.AddText(Color( 0, 204, 255 ), "Some retard just handcuffed you. Releasing...")
                releasing = true
            end
            if do_attack then
                RunConsoleCommand("+attack")
                do_attack = false
            else
                RunConsoleCommand("-attack")
                do_attack = true
            end
        end
    end
    hook.Add("CreateMove", "anticuff", cuff_spam)
    
    -- Remove move penalty
    hook.Add("SetupMove", "Cuffs Move Penalty", function()
        return
    end)
    
    -- Make it so you can cuff everybody even restricted jobs (maybe cant be bothered to try)
    hook.Add( "CuffsCanHandcuff", "Cuff ProtectAdmin", function()
        return true
    end)
    absolute legend for releasing something on this game still. many thanks!

    Edit: what handcuff addon is this for? or is it universal
    Last edited by asdfjasfj93; 08-16-2023 at 06:13 PM.

Similar Threads

  1. [Modified-DarkRP] Anti-Cheat?
    By TheCrazzysGamer in forum Garry's Mod Discussions & Help
    Replies: 1
    Last Post: 06-16-2013, 11:02 AM
  2. Anti-Sniper Kit v1.0 [Release]
    By Kyojiro in forum WarRock - International Hacks
    Replies: 8
    Last Post: 04-29-2006, 08:33 PM
  3. Anti Hack Detection Runnable
    By terryma in forum Gunz General
    Replies: 3
    Last Post: 02-07-2006, 07:10 PM
  4. Anti Virus software
    By kyo in forum General
    Replies: 3
    Last Post: 01-11-2006, 07:29 PM
  5. HW Man's anti-vehicle mines
    By poiu123 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 01-05-2006, 07:42 AM