Welcome, Guest.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - KittoniuM

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 »
91
General Chat / Re: Hack not injecting
« on: January 18, 2023, 04:15:36 PM »
When will this new loader come?

late jan to march, don't know yet not planned, not much demand

92
General Chat / Re: Hack not injecting
« on: January 18, 2023, 09:03:47 AM »
Assuming this is for Combat Arms Classic.

The game must be ran without BattlEye enabled:
Make a "Start.bat" file in the game directory with the following contents:
"Engine.exe" -windowtitle "Combat_Arms" -rez Engine.REZ -rez Game --lc=EN -BattlEye 1


This is temporary, I am working on a loader that works with battleye.
for now, this is the only way to use the hack and thats why its so cheap - 10 cents a day!!

93
Garrys Mod / Re: Review of gmod vip Hack
« on: January 10, 2023, 05:18:10 PM »
Thank you so much for your positive review!
I have tried to polish this hack as much as possible

94
General Chat / Re: Gmod paid Hack
« on: January 09, 2023, 08:59:00 PM »
Just sent 15 dollars to the e-mail. Friends and family. Cant wait to see whats this is about✌🏼


You should have them now, enjoy :)

95
Garrys Mod / Re: Custom Visuals
« on: January 09, 2023, 12:30:45 AM »
You can use the hotkey for friendlist (uses aimtarget)
turn off Ignore Invisible and turn on aim team then add everyone you can see

96
Garrys Mod / Re: General Cheat Questions [VIP]
« on: January 08, 2023, 01:08:31 AM »
Neither Step, Linear or Curve are changing smoothnes, its always instalock on the head

Aim step must be enabled and turn it down to 5-10 degrees per frame

97
Garrys Mod / Re: General Cheat Questions [VIP]
« on: January 07, 2023, 11:18:58 PM »
I'm having troubles finding the smoothing option in GMOD VIP Hack lmao, can someone help me out?

Is there an Option to customize the colours for every single Job (BOX / NAME /...) on darkrp servers?

Thank you!

The aimbot smoothing is called "Aim Step" in the aimbot tab. Options to customize it may be in the Customization button of Aimbot, there is Step, Linear and Curved options.

There is no option for job specific players. You can use the shitlist/friendlist

98
Garrys Mod / Re: Custom Visuals
« on: January 07, 2023, 03:17:43 PM »
that would require the use of Lua,  this  is a strictly C++ hack.

You could use the Shitlist/Friendlist to achieve a similar result - ignore people and force others on the aimbot

99
Garrys Mod / Re: can't open 32bit?
« on: January 07, 2023, 06:32:23 AM »
Why does my windows defender say that the bigpackets file contains windows32backdoor bladavindi.
Script kiddie back door or am i buggin?
Do you know how to read?

100
Garrys Mod / Re: can't open 32bit?
« on: January 05, 2023, 03:17:50 PM »
Sounds like antivirus is removing it.
Turn it off and try again, or add the folders to antivirus exclusions.

Gamehacks will always be detected as a virus (false positive)

101
Reversing / Re: Find GetRenderContext in Source Engine for Chams
« on: January 02, 2023, 10:35:39 PM »
For Left 4 Dead and newer games this method may not work

so this is another method, which you can also find clientmode from
this function is void CViewRender::RenderView( const CViewSetup &view, const CViewSetup &hudViewSetup, int nClearFlags, int whatToDraw )


102
Reversing / [ Reversing ] [ Reversing ] Find GetRenderContext in Source Engine for Chams
« on: January 01, 2023, 09:24:22 PM »
In Dx9 hacks you can get advanced DrawIndexedPrimitive chams using the engines CMaterialSystem GetRenderContext method.


in the source code you can find this refrence
Code: [Select]
void CClientVirtualReality::Deactivate()
{

if( !UseVR() )
return;

g_pSourceVR->Deactivate();

g_pMatSystemSurface->ForceScreenSizeOverride(false, 0, 0 );
g_pMaterialSystem->GetRenderContext()->Viewport( 0, 0, m_nNonVRWidth, m_nNonVRHeight );
g_pMatSystemSurface->SetFullscreenViewportAndRenderTarget( 0, 0, m_nNonVRWidth, m_nNonVRHeight, NULL );

    static ConVarRef cl_software_cursor( "cl_software_cursor" );

and this is what it looks like in ida:
(search for the strings  sub_10341DF0("cl_software_cursor"); sub_10341030(Buffer, 0x100u, "mat_setvideomode %i %i %i\n", this[128]);
Code: [Select]
void __thiscall sub_100F7700(_DWORD *this)
{
  int RenderContext; // eax

  if ( dword_1058D9B4 && (*(*dword_1058D9B4 + 36))(dword_1058D9B4) )
  {
    (*(*dword_1058D9B4 + 104))(dword_1058D9B4);
    (*(*g_pMatSystemSurface + 544))(g_pMatSystemSurface, 0, 0, 0);
    RenderContext = (*(*g_pMaterialSystem + 412))(g_pMaterialSystem);
    (*(*RenderContext + 152))(RenderContext, 0, 0, this[128], this[129]);
    (*(*g_pMatSystemSurface + 704))(g_pMatSystemSurface, 0, 0, this[128], this[129], 0);
    if ( (dword_1058F218 & 1) == 0 )
    {
      dword_1058F218 |= 1u;
      sub_10341DF0("cl_software_cursor");


from that we can see our index for render context:

 RenderContext = (*(*g_pMaterialSystem + 412))(g_pMaterialSystem);

412 bytes.. divided by 4 gives us our vtable pointer index (103)





here is a class it returns.. think i found it on UC or UnstucK
Code: [Select]
class CMaterialRenderContext
{
public:
BYTE pad0[0xc];
void** pad1;
uintptr_t RenderEntity;

__forceinline void* GetCurrentEnt()
{
if (RenderEntity == 0)
return nullptr;

return (void*)(RenderEntity - 4);
}
};


and this is how you use it in DIP


Code: [Select]
HRESULT __stdcall MyDrawIndexedPrimitive(IDirect3DDevice9* Device, D3DPRIMITIVETYPE PrimType, int BaseVertexIndex, unsigned int MinIndex, unsigned int NumVertices, unsigned int StartIndex, unsigned int PrimitiveCount)
{
if (!chams)
return OriginalDrawIndexedPrimitive(Device, PrimType, BaseVertexIndex, MinIndex, NumVertices, StartIndex, PrimitiveCount);


bool FillChanged = false;

static SourceEngine::CMaterialRenderContext* RenderCtx = nullptr;
if (!IsValidPointer(RenderCtx))
{
DbgLog(L"[Dx9 Dip] Trying to find Render Ctx\n");

//TODO: If the vfunc is called, it needs releaseing because its refcounted
RenderCtx = SourceEngine::s_Material->GetRenderContext();
}

if (IsValidPointer(RenderCtx))
{
SourceEngine::CValveEnt* Ent = (SourceEngine::CValveEnt*)RenderCtx->GetCurrentEnt();

103
News / January 2023
« on: January 01, 2023, 03:23:48 AM »
January 2023

In Progress
Gmod Laser Beams and Propkill ESP added
Gmod boogie_bomb t-weapon fix
Gmod Off After kill ignored with ragekey


January 29
FOREWARNED ESP - ADDED



January 27



January 26
DEVOUR - UPDATED
Now using the BigPackets Framework as all the other hacks.

January 25


January 15
Combat Arms Classic - UPDATED

January 15


January 14


January 10
BF2 ESP - UPDATED


January 8
Phasmophobia - UPDATED
Now using the BigPackets Framework as all the other hacks.

January 6
Garry's Mod - UPDATED
- Warnings System!

January 2
Codename CURE - UPDATED
- better zombie names
- chams added



Left 4 Dead 2 - UPDATED

Left 4 Dead 1 - UPDATED
"Spawn" pickups now have a name

HL2DM - UPDATED

January 1
ALL Games - UPDATING
- ability to force 3d box for Pickup, Projectile, Special, Vehciles from their tabs
- added option to disable Master Key Auto-Off
- better colorpicker window


GTA 3 Aimbot - UPDATED
GTAVC Aimbot - UPDATED

Killing Floor 1 - UPDATED
2018 to 2023 BP

Day of Defeat Source - UPDATED
2019 to 2023 BP
- Chams added


Black Mesa Aimbot - UPDATED
2019 to 2023 BP
- Chams added


No More Room In Hell - UPDATED
2019 to 2023 BP

Synergy - UPDATED
2018 to 2023 BP

Gmod ESP - UPDATED
Gmod Lite - UPDATED
Gmod Full - UPDATED

104
Garrys Mod / Re: Visuals and menu flickering
« on: December 26, 2022, 11:36:22 PM »
Hopefully the video is visible

Yes i see, is here any other servers that have this problem?

I'll buy an alt, keep watch for any news for when this is fixed

105
Garrys Mod / Re: Visuals and menu flickering
« on: December 26, 2022, 04:37:19 PM »
The menu goes away too?


Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 »

Total Registered Members:





2017-2023 BigPackets. All rights reserved. All other trademarks, logos and copyrights are the property of their respective owners. This site is not associated with any company in any way.