Results 1 to 9 of 9
  1. #1
    Kubensis's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    My Mood
    Flirty

    TTT server exploit or some shit, respawning abusing host framerate

    So i was able to respawn while dead using host framerate 3, I'm just unsure how to recreate it. i did it 2 times.

    I was dead, i pressed 2, went fast and got a disconnect error, when it hit 0 for reconnect i hit 1 instantly, and respawned there. I am unable to recreate it though now.

    do you guys have any ideas?
    This would be great if it was fucking consistent.
    Last edited by Hunter; 01-09-2016 at 11:54 AM.

  2. #2
    Keepo123's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    m͏̺͓̲̥̪is̷t̞̖͍͚̤k̥B̸̼&#81
    Posts
    84
    Reputation
    10
    Thanks
    163
    My Mood
    Yeehaw
    AirStuck
    /2short

  3. The Following User Says Thank You to Keepo123 For This Useful Post:

    buckballs (02-08-2016)

  4. #3
    scarface is my bitch's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    111
    My Mood
    Amazed
    yeah mabey you just glitched out try to see if using a airstuck could make it work again

  5. #4
    Smoke's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    11,899
    Reputation
    2661
    Thanks
    4,610
    My Mood
    Amazed
    Moved this to the right section.

    Good luck.


    CLICK TO BUY NOW!!


    Quote Originally Posted by Liz View Post
    This is my first vouch, ever. Rapidgator account worked perfectly. Would buy in the future.

  6. #5
    Kubensis's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    My Mood
    Flirty
    an airstuck? u mean like framerate 999999999999999999999999999999 shit?

  7. #6
    Keepo123's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    m͏̺͓̲̥̪is̷t̞̖͍͚̤k̥B̸̼&#81
    Posts
    84
    Reputation
    10
    Thanks
    163
    My Mood
    Yeehaw
    Quote Originally Posted by Kubensis View Post
    an airstuck? u mean like framerate 999999999999999999999999999999 shit?
    No I mean you stopped packets or some shit.
    Download amplify and use this..

    Code:
    require("amplify")
    function ON()
    	amplify.AirStuck(true)
    	print("stuck")
    end
    
    function OFF()
    	amplify.AirStuck(false)
    	print("unstuck")
    end
    concommand.Add("StuckON", "", ON)
    concommand.Add("StuckOFF", "", OFF)

  8. The Following User Says Thank You to Keepo123 For This Useful Post:

    buckballs (02-08-2016)

  9. #7
    Scetch08's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    your hallucinations
    Posts
    101
    Reputation
    10
    Thanks
    107
    My Mood
    Lurking
    Quote Originally Posted by Keepo123 View Post
    No I mean you stopped packets or some shit.
    Download amplify and use this..

    Code:
    require("amplify")
    function ON()
    	amplify.AirStuck(true)
    	print("stuck")
    end
    
    function OFF()
    	amplify.AirStuck(false)
    	print("unstuck")
    end
    concommand.Add("StuckON", "", ON)
    concommand.Add("StuckOFF", "", OFF)
    Why not use keypress? you just have to check if your typing to avoid accidental stopping/re-sending packets?
    什么他妈的你他妈的刚才说我,你这小婊子?我会让你知道我毕业了我班的顶部的海豹突击队,我已经参与了许多 秘密袭击的基地组织,和我有超过300证实杀死。我在训练的大猩猩战,我在整个美国军队的最高狙击手。你是 我什么都不是,但只是一个目标。我会消灭你他妈的精度喜欢哪一个从未见过在这个地球上,记住我的话他妈的。 你以为你可以逃脱说狗屎我在互联网上?再想想,笨蛋。在我们发言,我联系我的秘密横跨美国间谍网络和IP被 追踪作为现在让您风暴,蛆更好的准备。这抹了你打电话

  10. The Following User Says Thank You to Scetch08 For This Useful Post:

    bee_tee_gee (12-16-2015)

  11. #8
    bee_tee_gee's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    157
    Reputation
    10
    Thanks
    64
    Quote Originally Posted by Keepo123 View Post
    No I mean you stopped packets or some shit.
    Download amplify and use this..

    Code:
    require("amplify")
    function ON()
    	amplify.AirStuck(true)
    	print("stuck")
    end
    
    function OFF()
    	amplify.AirStuck(false)
    	print("unstuck")
    end
    concommand.Add("StuckON", "", ON)
    concommand.Add("StuckOFF", "", OFF)
    Code:
    require("amplify")
    
    local function airstuck()
          if input.IsKeyDown(KEY_H) then
    	     amplify.AirStuck(true)
    else
    	     amplify.AirStuck(false)
    	end
    end
    
    hook.Add("CreateMove", "airstuck", airstuck)
    not good code but better example, just hold H down instead of typing concommands out
    Last edited by bee_tee_gee; 12-16-2015 at 02:34 PM.

  12. #9
    Keepo123's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    m͏̺͓̲̥̪is̷t̞̖͍͚̤k̥B̸̼&#81
    Posts
    84
    Reputation
    10
    Thanks
    163
    My Mood
    Yeehaw
    Quote Originally Posted by bee_tee_gee View Post
    Code:
    require("amplify")
    
    local function airstuck()
          if input.IsKeyDown(KEY_H) then
    	     amplify.AirStuck(true)
    else
    	     amplify.AirStuck(false)
    	end
    end
    
    hook.Add("CreateMove", "airstuck", airstuck)
    not good code but better example, just hold H down instead of typing concommands out
    yeah, I just was in a rush and you could always bind the concommands

  13. The Following User Says Thank You to Keepo123 For This Useful Post:

    buckballs (02-08-2016)

Similar Threads

  1. [Info] TTT Server full of Exploits
    By Herp Derpinstine in forum Garry's Mod Discussions & Help
    Replies: 7
    Last Post: 10-25-2014, 09:30 PM
  2. [DEFACED] Some shit site
    By arunforce in forum General
    Replies: 15
    Last Post: 05-29-2011, 11:57 AM
  3. why do USA think u.k is gay or some shit?
    By hackzerz in forum Debate Fort
    Replies: 10
    Last Post: 10-15-2010, 06:14 PM
  4. Disabled some shit
    By Dave84311 in forum General
    Replies: 121
    Last Post: 06-11-2010, 07:28 AM
  5. Replies: 23
    Last Post: 01-13-2010, 04:40 AM