Thread: Screen Capture

Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    lior784's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    1
    My Mood
    Bored

    Angry Screen Capture

    Hi I am looking for a hack that isnt detectable by the screen capture AC. Right now was my 2 time to get Perm banned from that thing and its getting me mad. Is there anyway to bypass this thing?
    Last edited by Hunter; 01-18-2016 at 12:12 PM.

  2. #2
    suchisgood's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Posts
    902
    Reputation
    10
    Thanks
    559
    My Mood
    Angelic
    It's impossible to bypass if the G_. stack is private on the screen.Capture

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

    D3M0L1T10N (05-19-2014)

  4. #3
    Trollaux's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2,074
    Reputation
    137
    Thanks
    792
    Quote Originally Posted by suchisgood View Post
    It's impossible to bypass if the G_. stack is private on the screen.Capture
    Code:
    cvars.AddChangeCallback("antiscreenshot", function()
    	if enabled:GetBool() then
    		_G.render.Capture = function(data)
    			if data.format == "jpeg" then
    				return missingjpg
    			elseif data.format == "png" then
    				return missingpng
    			end
    		end
    	
    		util.Base64Encode = function( str )
    			local encoding = encodeData( missingpng );
    			
    			return( noided_dummy );
    		end
    	else
    		_G.render.Capture = actualRenderCapture
    		util.Base64Encode = encodeData;
    	end
    end)
    d e a d b o y s
    Quote Originally Posted by Dave84311 View Post
    What do you call a troll with shitty jokes?
    Trollaux
    Quote Originally Posted by Kyeran View Post
    Foot job with lots of oil.
    Quote Originally Posted by Kyeran View Post
    If she's 12, I'm 12.

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

    blackstab1337 (12-16-2014)

  6. #4
    suchisgood's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Posts
    902
    Reputation
    10
    Thanks
    559
    My Mood
    Angelic
    Quote Originally Posted by Trollaux View Post


    Code:
    cvars.AddChangeCallback("antiscreenshot", function()
    	if enabled:GetBool() then
    		_G.render.Capture = function(data)
    			if data.format == "jpeg" then
    				return missingjpg
    			elseif data.format == "png" then
    				return missingpng
    			end
    		end
    	
    		util.Base64Encode = function( str )
    			local encoding = encodeData( missingpng );
    			
    			return( noided_dummy );
    		end
    	else
    		_G.render.Capture = actualRenderCapture
    		util.Base64Encode = encodeData;
    	end
    end)
    antiscreenshot is not a console cmd

  7. #5
    Trollaux's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2,074
    Reputation
    137
    Thanks
    792
    Quote Originally Posted by suchisgood View Post
    antiscreenshot is not a console cmd
    fix it then lua expert.
    d e a d b o y s
    Quote Originally Posted by Dave84311 View Post
    What do you call a troll with shitty jokes?
    Trollaux
    Quote Originally Posted by Kyeran View Post
    Foot job with lots of oil.
    Quote Originally Posted by Kyeran View Post
    If she's 12, I'm 12.

  8. The Following 2 Users Say Thank You to Trollaux For This Useful Post:

    Gray (05-18-2014),Zombeezz (05-18-2014)

  9. #6
    lior784's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    1
    My Mood
    Bored
    So guys does it work or not?

  10. #7
    suchisgood's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Posts
    902
    Reputation
    10
    Thanks
    559
    My Mood
    Angelic
    Quote Originally Posted by lior784 View Post
    So guys does it work or not?
    Nope it's impossible if it gets overrided first by an anticheat, else if you override it and they don't have it overrided then it's possible you can.

    Quick example of a working panic mode..

    Code:
    local function Esp_func()
    	//Esp code here
    end
    hook.Add("HUDPaint","E_S_P", Esp_func)
    
    local function unhook_panic()
    	hook.Remove("HUDPaint","E_S_P")
    	timer.Simple(2, function() hook.Add("HUDPaint","E_S_P", Esp_func) end)
    end
    
    local oldrc = render.Capture
    function render.Capture( tbl )
    	unhook_panic()
    	return oldrc( tbl )
    end
    Goes in lua/autorun/client/someluafile.lua

    Don't forget to thank me.
    Last edited by suchisgood; 05-19-2014 at 08:41 AM.

  11. #8
    Gray's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Sweden
    Posts
    13,557
    Reputation
    2516
    Thanks
    10,618
    He wont get thanked anyway, they have removed the thank plugin from MPGH.

  12. #9
    tdsx's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    255
    Reputation
    10
    Thanks
    1,004
    Quote Originally Posted by suchisgood View Post
    Nope it's impossible if it gets overrided first by an anticheat, else if you override it and they don't have it overrided then it's possible you can.

    Quick example of a working panic mode..

    Code:
    local function Esp_func()
    	//Esp code here
    end
    hook.Add("HUDPaint","E_S_P", Esp_func)
    
    local function unhook_panic()
    	hook.Remove("HUDPaint","E_S_P")
    	timer.Simple(2, function() hook.Add("HUDPaint","E_S_P", Esp_func) end)
    end
    
    local oldrc = render.Capture
    function render.Capture( tbl )
    	unhook_panic()
    	return oldrc( tbl )
    end
    Goes in lua/autorun/client/someluafile.lua

    Don't forget to thank me.
    No, lol. You can easily get the original function back if it gets overriden.

  13. #10
    suchisgood's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Posts
    902
    Reputation
    10
    Thanks
    559
    My Mood
    Angelic
    Quote Originally Posted by tdsx View Post
    No, lol. You can easily get the original function back if it gets overriden.
    Okay please tell me how in lua, no modules!

  14. #11
    tdsx's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    255
    Reputation
    10
    Thanks
    1,004
    Quote Originally Posted by suchisgood View Post
    Okay please tell me how in lua, no modules!
    debug.getlocal
    debug.getupvalue

    Where is my prize?

  15. #12
    suchisgood's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Posts
    902
    Reputation
    10
    Thanks
    559
    My Mood
    Angelic
    Quote Originally Posted by tdsx View Post
    debug.getlocal
    debug.getupvalue

    Where is my prize?
    Yes and most anti cheats disable them, well only the good ones.

  16. #13
    Gray's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Sweden
    Posts
    13,557
    Reputation
    2516
    Thanks
    10,618
    I know what section this is, but you're all acting like a bunch of spoiled kids, just set your differences aside and try getting along for a change, this is just ridiculous.

  17. #14
    tdsx's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    255
    Reputation
    10
    Thanks
    1,004
    Quote Originally Posted by suchisgood View Post
    Yes and most anti cheats disable them, well only the good ones.
    I've yet to see an AC disable those, and even if they did, you can just recreate them with a module.

    Quote Originally Posted by Vinternatt View Post
    I know what section this is, but you're all acting like a bunch of spoiled kids, just set your differences aside and try getting along for a change, this is just ridiculous.
    I wasn't trying to sound condescending or anything like that.

  18. #15
    suchisgood's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Posts
    902
    Reputation
    10
    Thanks
    559
    My Mood
    Angelic
    Quote Originally Posted by tdsx View Post
    I've yet to see an AC disable those, and even if they did, you can just recreate them with a module.

    I wasn't trying to sound condescending or anything like that.
    Yeah the only real way to bypass anticheats is C++ but C++ is hard, Although my friend is really good at it.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] -RagerZ- Screen Capture v1.0
    By Ragehax in forum Combat Arms Hacks & Cheats
    Replies: 30
    Last Post: 11-08-2009, 06:02 PM
  2. -RagerZ- Screen Capture v1.0
    By Ragehax in forum Visual Basic Programming
    Replies: 9
    Last Post: 10-19-2009, 09:52 PM
  3. Re: Screen Capture Program
    By Jimmy in forum Hardware & Software Support
    Replies: 6
    Last Post: 09-03-2009, 02:59 PM
  4. Screen Capture Source Code
    By Pixie in forum Visual Basic Programming
    Replies: 0
    Last Post: 08-07-2009, 05:58 PM
  5. Screen Capture Tutorial
    By Pixie in forum Visual Basic Programming
    Replies: 0
    Last Post: 08-06-2009, 11:57 PM