[QUOTE=DarkSpider]That is a dumb anticheat. Mine is cooler.
Also:
[lua]
local oldRun = RunConsoleCommand
function RunConsoleCommand(...)
if string.find(table.concat({...}," "),"hack") then return end
oldRun(...)
end
[/lua][/QUOTE]
Haha override the shit :v:
[b]Edit:[/b]
but you can do WAY easier!
just change +aimbot_scan and -aimbot_scan to anything without aimbot in it like +SHIT and -SHIT
[QUOTE=FPtje]Haha override the shit :v:
[b]Edit:[/b]
but you can do WAY easier!
just change +aimbot_scan and -aimbot_scan to anything without aimbot in it like +SHIT and -SHIT[/QUOTE]
Like I did.
[QUOTE=APerspective]
Stuff
[/QUOTE]
This is why I use a DLL for my hacks :ninja:
[QUOTE=Deco Da Man]This is why I use a DLL for my hacks :ninja:[/QUOTE]
[B]That[/B] is caught by VAC.
-snip- don't have to mention that.
EDIT: New reason: it's a client-side module.
If client-side modules triggered VAC, then all the people that used the WinAmp module would be VAC banned, no?
Ha, that's why I use a DLL for my hacks. :ninja:
[QUOTE=Deco Da Man]-snip- don't have to mention that.
EDIT: New reason: it's a client-side module.
If client-side modules triggered VAC, then all the people that used the WinAmp module would be VAC banned, no?
Ha, that's why I use a DLL for my hacks. :ninja:[/QUOTE]
As far as I am aware DLL injecting into the game will trigger VAC. At least for the public detected ones.
Well it's not injecting any code at all. Garry's Mod runs it, giving it full access to the engine. You just need to get the right things out of the engine to do it.
Running an Lua module wouldn't change anything. You're still required to call into Lua, otherwise you'd be modifying the client memory space, in which case you would be caught by VAC.
Wasn't there something about garrysmod so vac didn't work on it?
[b]Edit:[/b]
I'd test it, but I got too many games for that.
[b]Edit:[/b]
And DarkSpider, try to fix the effects thing, it kills the freeze effect, toolgun info effect and some random effects.
[b]Edit:[/b]
And what is pcall and teleport [B]supposed[/B] to do?
I don't believe VAC is disabled for any reason.
This isn't Darkspider's bot.
Pcall calls an Lua function. Teleport is supposed to teleport you, but GM:Move is only predicted on the client, you'll only teleport for a split second.
VAC could be disabled, my friend is VAC banned but still plays on VAC servers in Garry's Mod, but he can't connect to VAC servers in most games(cs, dod, and such).
VAC doesn't work on Garrys Mod... I thought everyone knew that! As I was told it is because Garry is against how glitchy VAC is (Don't hold this to me though).
You would have an argument if it weren't for the fact that most of the servers on the list have the VAC shield icon and say "Valve anti-cheat: Secure."
"Hook 'RenderBloom' Failed: postprocess/bloom.lua:95: attempt to index upvalue 'pp_bloom' (a nil value)
Hook 'RenderMotionBlur' Failed: postprocess/motion_blur.lua:68: attempt to index upvalue 'pp_motionblur' (a nil value)
Hook 'RenderSunbeams' Failed: postprocess/sunbeams.lua:33: attempt to index upvalue 'pp_sunbeams' (a nil value)
Hook 'RenderSharpen' Failed: postprocess/sharpen.lua:28: attempt to index upvalue 'pp_sharpen' (a nil value)
Hook 'RenderMaterialOverlay' Failed: postprocess/overlay.lua:38: attempt to index upvalue 'pp_mat_overlay' (a nil value)
Hook 'DrawMorph' Failed: postprocess/morph.lua:124: attempt to index upvalue 'pp_morph' (a nil value)
Hook 'RenderColorModify' Failed: postprocess/color_modify.lua:39: attempt to index upvalue 'pp_colormod' (a nil value)
Hook 'DrawRTTexture' Failed: weapons\gmod_tool\stools/rtcamera.lua:185: attempt to index upvalue 'rtcamera_draw' (a nil value"
I need some help Fixing this...I just can't get it to work...
Edit: Still is broken and says it's a invalid command when I do esp_on...
[QUOTE=APerspective]You would have an argument if it weren't for the fact that most of the servers on the list have the VAC shield icon and say "Valve anti-cheat: Secure."[/QUOTE]
It may say it, but I know that people who are banned can still play gmod on any server that they want to. So it seems to be more of something to be there, just because it can. I wish Garry would come into this thread and tell us what it is. :sigh:
My attempt to stop this.
[lua]
local pmeta = FindMetaTable( "Player" )
local vmeta = FindMetaTable( "Vector" )
function vmeta:ToScreen()
if CLIENT then
draw.DrawText( "Remove the client scripts before playing here.", "BudgetLabel", ScrW() * 0.5, ScrH() * 0.4, Color( 255, 51, 51, 255 ), TEXT_ALIGN_CENTER )
draw.RoundedBox( 0, 0, 0, ScrW(), ScrH(), Color(0,0,0,255) )
end
end
function pmeta:SetEyeAngles()
if CLIENT then
draw.DrawText( "Remove the client scripts before playing here.", "BudgetLabel", ScrW() * 0.5, ScrH() * 0.4, Color( 255, 51, 51, 255 ), TEXT_ALIGN_CENTER )
draw.RoundedBox( 0, 0, 0, ScrW(), ScrH(), Color(0,0,0,255) )
end
end
[/lua]
Works on my gamemode.
Mine spams their screen with a giant epilepsy box then bans them 10 seconds later
[QUOTE=PC Camp]My attempt to stop this.
[lua]
local pmeta = FindMetaTable( "Player" )
local vmeta = FindMetaTable( "Vector" )
function vmeta:ToScreen()
if CLIENT then
draw.DrawText( "Remove the client scripts before playing here.", "BudgetLabel", ScrW() * 0.5, ScrH() * 0.4, Color( 255, 51, 51, 255 ), TEXT_ALIGN_CENTER )
draw.RoundedBox( 0, 0, 0, ScrW(), ScrH(), Color(0,0,0,255) )
end
end
function pmeta:SetEyeAngles()
if CLIENT then
draw.DrawText( "Remove the client scripts before playing here.", "BudgetLabel", ScrW() * 0.5, ScrH() * 0.4, Color( 255, 51, 51, 255 ), TEXT_ALIGN_CENTER )
draw.RoundedBox( 0, 0, 0, ScrW(), ScrH(), Color(0,0,0,255) )
end
end
[/lua]
Works on my gamemode.[/QUOTE]
Doesn't that break the smartsnap too?
[b]Edit:[/b]
[QUOTE=DarkSpider]Mine spams their screen with a giant epilepsy box then bans them 10 seconds later[/QUOTE]
Mine plays an alarm as soon when they InitialSpawn with a chatprint on everyone: "ply:Nick() .. " USES AIMBOT! WARN AN ADMIN OR SHOOT BACK, FLAME HIM, PROPKILL HIM, OR WHATEVER TO MAKE HIM LEAVE!" and when he tries to use +aimbot_scan (or any other command that triggers the scan) then he gets the scream sound spammed and a chatprint spammed and he dies. :) Scares the shit out of him :excited:
But it's easy to get around my aimbot :( it only makes the client check if a few variables exist and if they do then he has aimbot. I have to work on a better one of course...
[QUOTE=DarkSpider]Mine spams their screen with a giant epilepsy box then bans them 10 seconds later[/QUOTE]
It must be broken for me.
[QUOTE=nikerocks123]VAC doesn't work on Garrys Mod... I thought everyone knew that! As I was told it is because Garry is against how glitchy VAC is (Don't hold this to me though).[/QUOTE]
That kind of sucks, means VAC doesn't ban cheaters in Garry's Mod?
If you ask me VAC is a need not an option.
Why is anyone making a lua hack anyway if VAC is not activated in Garry's Mod?
Idiot. I got perma'd by vac. FOR NO REASON WHATSOEVER! I was peacfully dming in my server, and suddenly, [quote=vac] YOY HAVE BEEN BANED FOR A CHEATING INFRACTION! FROM ALL GAMES, AND SOURCE MODS! *gives a list of about every game in steam, including garrysmod.*[/quote] But i am still playing gmod, so i think nothing of it, exept that i can't play on other cs:s servers. My point being that vac bans very randomly. And is very glitchy.
You can't get VAC banned for using a LUA aimbot...
[QUOTE=Weee-Oshi-]Idiot. I got perma'd by vac. FOR NO REASON WHATSOEVER! I was peacfully dming in my server, and suddenly, But i am still playing gmod, so i think nothing of it, exept that i can't play on other cs:s servers. My point being that vac bans very randomly. And is very glitchy.[/QUOTE]
You might have hacked, or accidentally hacked. It takes a few days-weeks before they send you a ban message.
I got banned, I think it was when I accidentally set Cheat Engine to steam, or some steam game instead of what I was trying to hack.
[QUOTE=CowThing]You might have hacked, or accidentally hacked. It takes a few days-weeks before they send you a ban message.
I got banned, I think it was when I accidentally set Cheat Engine to steam, or some steam game instead of what I was trying to hack.[/QUOTE]
Oh yeah, steam engine got my old account VAC banned, accidentally targeted css, got banned like 1 week after, long time ago tho.
[QUOTE=CowThing]It takes a few days-weeks before they send you a ban message.
[/quote]
3 weeks to be exact.
[quote]
I got banned, I think it was when I accidentally set Cheat Engine to steam, or some steam game instead of what I was trying to hack.[/QUOTE]
Exactly what I did, I was cheating at a Flash Game in firefox D:
>h<l2.exe was too close to >f<irefox.exe!
Don't tell me that Cheat Engine is a common reason for accidentally VAC bans ..
If you use it on the game while you're playing. I don't see why it shouldn't be a ban reason.
Can someone tell me how to get this to work on Fortwars?
Really nice.
[QUOTE=Deco Da Man]>h<l2.exe was too close to >f<irefox.exe![/QUOTE]
Cheat Engine doesn't sort alphabetically, it sorts by process ID.
Sorry, you need to Log In to post a reply to this thread.