
As this project is soon nearing it's original release I though I'd open up a thread to stir up some momentum. For a while now I've had a project up on my github named Dunked-Framework with a goal in mind to aid people in bypassing CAC. I went about the project the completely wrong way and I let it die. A week ago I made up my mind that I was finishing this project and getting a working edition out before Christmas. So far There have been 28 commits in the past 4 days of constant updates and progress.
Where's the project hosted?
The project is hosted under my personal GitHub, licensed under the MIT license.
Link.
What does this mean for you?
This framework allows you to utilize lua still, but it does not use GMod's lua state at all. It exposes a multitude of source engine functions that you would not otherwise be able to access vs in GMod's lua state. In simple terms, you will be able to bypass
every single anticheat designed to detect loading lua without having to do a single thing.
How does it really work?
Dunked-Framework relies on a Lua Binder called
Sol 2.0 to manage it's lua state. Reading the source code or asking questions to
me will give you a more specific and detailed answer.
Do you have any examples or screenshots?
Examples are a bit shoddy right now since I'm still exposing all the data types needed to write a working ESP example, but I do have drawing utilities set up correctly.
Code:
for n in pairs(_G) do print(n) end
iNoob = surface.CreateFont("Tahoma", 14, 700, 0, 0, 16)
vec = Vector.new(123, 123, 123)
print(vec.x)
print(vec.y)
print(vec.z)
ang = Angle.new(89, 180, -181)
print(ang.x)
print(ang.y)
print(ang.z)
col = Color.new(41, 8, 52, 255)
print(col.r)
print(col.g)
print(col.b)
print(col.a)
hook.Add("CreateMove", "OnCreateMove", function(pCmd)
end)
hook.Add("PaintTraverse", "OnPaintTraverse" ,function()
surface.DrawSetColor(col.r, col.g, col.b, col.a)
surface.DrawOutlinedRect(100, 100, 100, 100)
surface.DrawFilledRect(200, 100, 100, 100)
surface.DrawLine(300, 300, 2, 5)
surface.DrawText(iNoob, 500, 500, col, "Dunked-Framework Rocks!!!!")
end)
When is this being released?
Like I said earlier, I'm aiming for a compiled, version 1.0 release on mpgh before Christmas. I'm only going to try and target an ESP, but if I have the time I will include an example of an aimbot.
Misc Questions
How do I contribute?
Anyway you see fit. Opening a pull request is completely fine by me.
Will this ever be detected?
Never, unless VAC gets enabled for GMod.