who want hack come in !!!!

Hacking Mission Against Terror

Moderators: g3nuin3, SpeedWing, WhiteHat, mezzo

who want hack come in !!!!

Postby smiledexter » Sun Dec 26, 2010 7:50 pm

i want speed hack n aimbot hack :!: who can give me :?: if u give me i give u wall hack , fly hack , gold hack(i dono use ) n silver hack :!: :!: :!: :!: :!: who can give me ???????
smiledexter
Sir Hacks-A-Lot
 
Posts: 34
Joined: Wed Dec 01, 2010 12:53 pm

Re: who want hack come in !!!!

Postby e-specialy » Thu Jan 27, 2011 12:20 pm

Aimbot smooth aim function for mat


/*
vViewA is the pitch and yaw I want to be at.
vViewB is my current pitch and yaw.
vViewC is the result of the calculations.

fSpeed is how many degrees I want to turn at a time .
*This is currently framerate based not time.

it subtracts my current yaw with the yaw desired.

Then compensates it back to be between -180 degrees to +180 degrees.

Once it does that I checks if its on the target and if it is,
it just sets the desired pitch and yaw and returns.

It checks if the speed is more than the needed distance. if it is; it sets the
speed to that difference.

Once it does that It checks if the target is left or right and then adds/subs the yaw
based on that. Then compensates it back into 0 degrees through 360.T

Then sets the pitch since I havent added predict for pitch.
*/

#define D3DLoop(a,b) while( a < 0.000000f ) a += b; while( a > b ) a -= b


FView C_Aimbot::SmoothAim( FView vViewA, float fSpeed )
{
FView vViewB = CEManager.RotToFView( &CLEntity->m_dwPitch ),
vViewC = vViewB;

vViewB.yaw -= vViewA.yaw;
fSpeed = D3DXToRadian(fSpeed);

if( vViewB.yaw < -PI )
vViewB.yaw += PI*2;
else if(vViewB.yaw > PI )
vViewB.yaw -= PI*2;

if( fabsf( D3DXToDegree( vViewB.yaw ) ) < 1 )
return vViewA;

if( fabsf( vViewB.yaw ) < fSpeed )
fSpeed = vViewB.yaw;

if( vViewB.yaw > 0.000000f )
vViewC.yaw -= fSpeed;
else if( vViewB.yaw < 0.000000f )
vViewC.yaw += fSpeed;

D3DLoop(vViewC.yaw,PI*2);

vViewC.pitch = vViewA.pitch;

return vViewC;
}
User avatar
e-specialy
Hackleberry Fin
 
Posts: 26
Joined: Wed Jan 26, 2011 11:12 pm

Re: who want hack come in !!!!

Postby pocong » Thu Jan 27, 2011 1:06 pm

Hey.. how to use that code?? teach me pleasee
pocong
I Have A Few Questions
 
Posts: 7
Joined: Tue Dec 28, 2010 9:49 am

Re: who want hack come in !!!!

Postby Viktor » Thu Jan 27, 2011 3:04 pm

it along way to explain if you a coder like me you know how! hehe too bad for you man!
Person below me is a fag.

CPU: AMD Phenom II X4 920 Quad 2.8ghz
VGA: NVIDIA GeForce GTS 450 1GB GDDR5
RAM: 8GB
HD: 1TB
Motherboard: MS-7501

Global Gamers http://www.facebook.com/#!/groups/GlobalGamers/

Laptop: Alienware m15x-216CSB
User avatar
Viktor
NULL
 
Posts: 171
Joined: Thu Dec 30, 2010 5:53 pm
Location: Classified

Re: who want hack come in !!!!

Postby L. Spiro » Thu Jan 27, 2011 3:05 pm

e-specialy, you can use [code][/code] tags to format code.
Also, while I want to thank you for raising the overall quality of my forum (hopefully sensible non-beggers will follow), please post all of the code needed to build; this code is missing class/type definitions etc.

You can replace your D3DLoop() with fmod() (and a check for the result being negative followed by a single += if it is).

pocong, use it with DLL injection.


L. Spiro
Our songs remind you of songs you’ve never heard.
User avatar
L. Spiro
L. Spiro
 
Posts: 3129
Joined: Mon Jul 17, 2006 10:14 pm
Location: Tokyo, Japan

Re: who want hack come in !!!!

Postby e-specialy » Fri Jan 28, 2011 1:48 pm

lolz
User avatar
e-specialy
Hackleberry Fin
 
Posts: 26
Joined: Wed Jan 26, 2011 11:12 pm

Re: who want hack come in !!!!

Postby pocong » Fri Jan 28, 2011 2:08 pm

owww.. copy the code then save at notepad.. after that safe as .dll file type all.. like that?? :?:
pocong
I Have A Few Questions
 
Posts: 7
Joined: Tue Dec 28, 2010 9:49 am

Re: who want hack come in !!!!

Postby Viktor » Fri Jan 28, 2011 2:57 pm

M.A.T. Movement Struct [Used for Speed/Fly/Etc]
Code:
class C_PlayerMovement;

class C_PlayerMovement
{
public:
char unknown0[328]; //0x0000
vector Location; //0x0148
char unknown340[12]; //0x0154
vector Velocity; //0x0160
vector2 Direction; //0x016C
char unknown372[324]; //0x0174
float CollisionRadius; //0x02B8
float CollisionHeight; //0x02BC
BYTE bClientTrigger; //0x02C0 //ClientTrigger, CollideActors, CollideWall
char unknown705[279]; //0x02C1
float GroundSpeed; //0x03D8
float WaterSpeed; //0x03DC
float AirSpeed; //0x03E0
char unknown996[4]; //0x03E4
float AccelRate; //0x03E8
float JumpZ; //0x03EC
char unknown1008[352]; //0x03F0
};//Size=0x0550(1360)


Original Post From Dxt-Code[V]
Person below me is a fag.

CPU: AMD Phenom II X4 920 Quad 2.8ghz
VGA: NVIDIA GeForce GTS 450 1GB GDDR5
RAM: 8GB
HD: 1TB
Motherboard: MS-7501

Global Gamers http://www.facebook.com/#!/groups/GlobalGamers/

Laptop: Alienware m15x-216CSB
User avatar
Viktor
NULL
 
Posts: 171
Joined: Thu Dec 30, 2010 5:53 pm
Location: Classified

Re: who want hack come in !!!!

Postby Viktor » Fri Jan 28, 2011 3:00 pm

MAT Weapon
Code:
#define Grenade ( 11 || 12 || 17 || 35 )
#define Melee ( 6 || 10 || 30 || 113)
#define Pistol ( 4 || 9 || 37 )
#define Shotgun ( 2 || 15 || 72 )
#define SMG ( 8 || 18 || 28 || 51 || 58 )
#define LMG ( 44 || 45 || 71 )
#define Special ( 14 || 20 || 25 || 29 || 52 || 61 )
#define Sniper ( 3 || 19 || 25 || 36 || 49 )
#define Rifle ( 1 || 7 || 24 || 32 || 33 || 48 || 64 || 65 || 83 || 101 )


Original Post From Dxt-Code[V] (Never Steal Post From Someone Without give the credit to them)
Person below me is a fag.

CPU: AMD Phenom II X4 920 Quad 2.8ghz
VGA: NVIDIA GeForce GTS 450 1GB GDDR5
RAM: 8GB
HD: 1TB
Motherboard: MS-7501

Global Gamers http://www.facebook.com/#!/groups/GlobalGamers/

Laptop: Alienware m15x-216CSB
User avatar
Viktor
NULL
 
Posts: 171
Joined: Thu Dec 30, 2010 5:53 pm
Location: Classified

Re: who want hack come in !!!!

Postby L. Spiro » Fri Jan 28, 2011 6:17 pm

Those #define’s make no sense.


L. Spiro
Our songs remind you of songs you’ve never heard.
User avatar
L. Spiro
L. Spiro
 
Posts: 3129
Joined: Mon Jul 17, 2006 10:14 pm
Location: Tokyo, Japan


Return to Mission Against Terror

Who is online

Users browsing this forum: No registered users and 0 guests