• Use [hide] Content [/hide] to prevent leeching of your content.

Try My Wallhack . Made it yesterday .

cezarica

New Member
Great news. :D

Right now I use B4TTL3^AiMB0T to play on zombie plague servers but the aimbot places a 'mark' on all players (human and zombies) and this sucks. If possible, could you please make in this new tool the aim only at zombies head? :)

Thank you and looking forward for the release. :D
 

(+)

Member
Zombies are in the CT team if I remember it right .

Everyone else on T .

So , I just need to make it aim at the CT team .
 

(+)

Member
I made a critical discovery .

Found out why performance was reduced with v7 below .

Now almost lossless performance , can now work on onboard video cards . LOL .<br /><br />-- Mon Mar 21, 2011 5:20 am --<br /><br />To people making their own cheat , remove this from your glbegin :

Code:
d_glGetFloatv(GL_CURRENT_COLOR, curcol);

also remove :

Code:
d_glDepthRange

-------------------

Use this instead for smoke :

Code:
if (mode==GL_QUADS)
	bDrawingSmoke = bTRUE;
else 
	bDrawingSmoke = bFALSE;

Too many changes in Opengl since video cards are now too high tech .
The old opengl methods would overheat video cards and lead to damage .

For player wallhack just use the engine pointers :

This is from ECC source .

Code:
        if( bPlayer && bEngine && bIngame && !bClean && !bActiveClean )
	{
		if(mode == 0x0005 ||mode == 0x0006)
		{
			if( ((engine_studio_api_s*) dwStudio)->GetCurrentEntity() )
			{
				if( ((engine_studio_api_s*) dwStudio)->GetCurrentEntity()->player )
				{
					d_glDisable(0x0B71);
				}
				else
				{
					d_glEnable(0x0B71);
				}
			}
			else
			{
				d_glEnable(0x0B71);
			}
		}
		else if(mode != 0x0007)
			d_glEnable(0x0B71);
	}
 

(+)

Member
I have a question .

Are there still CS servers that go up to maximum 64+ players ?

-- Tue Mar 22, 2011 1:48 am --

I have seen 1250 before on deathmatch .

-- Tue Mar 22, 2011 4:14 am --

Also avoid this :

Code:
d_glGetIntegerv( /*GL_VIEWPORT*/ 0x0BA2, Viewport );

Instead do:

Code:
long ViewH, ViewW;

void APIENTRY New_glViewport ( GLint x, GLint y, GLsizei width, GLsizei height )
{
        ViewW = width;
	ViewH = height;
        // ...
}
<br /><br />-- Tue Mar 22, 2011 4:25 am --<br /><br />Best to develop cheats using an onboard video card .
If it runs there no prob then you can avoid unnecessary GPU overload .
 

(+)

Member
Almost there !!! 35% made !

DO you have a design I could use ?

A better c4 skin or something that will make it uniquely CS .
 

cezarica

New Member
Yes, the app starts, I hear that placing the bomb (or whatever it was) sound when I start the game but then it freezes.
 

(+)

Member
Hmmmmmmmmmmmmmmmmmmmmmmmmmmm ,

either you lack requirements or you got an old non - steam and you just haven't realized it .

Try run as admin and turn of UAC . If you can't get v7 to run v8 may not run too .
 
Top Bottom