Register for your free account! | Forgot your password?

Go Back   elitepvpers > General Gaming > General Gaming Discussion > General Gaming Releases
You last visited: Today at 16:53

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Update] MAT Automaton (Mission Against Terror [SUBA & CIB] : Aimbot, Wallhack, etc.)

Discussion on [Update] MAT Automaton (Mission Against Terror [SUBA & CIB] : Aimbot, Wallhack, etc.) within the General Gaming Releases forum part of the General Gaming Discussion category.

Reply
 
Old   #1
 
nForce's Avatar
 
elite*gold: 0
Join Date: Nov 2006
Posts: 12
Received Thanks: 52
[Update] MAT Automaton (Mission Against Terror [SUBA & CIB] : Aimbot, Wallhack, etc.)

New version:
nForce is offline  
Thanks
8 Users
Old 01/10/2011, 20:50   #2
 
elite*gold: 0
Join Date: Jan 2011
Posts: 2
Received Thanks: 0
i need help

I made some changes but no works

when i press the button and active the aimbot I need to the aimbot aim at the subject more near of the game aim and does not change.
when the target dies the aimbot go off

is posible this?
cannonpas is offline  
Old 01/11/2011, 05:58   #3
 
elite*gold: 0
Join Date: Jun 2008
Posts: 3
Received Thanks: 0
how to use this stuf ?
im using laptop vista =D
please teach the step^^
i go in mat normally,nothing happen
xia0f3ng is offline  
Old 01/11/2011, 12:24   #4
 
elite*gold: 0
Join Date: Jan 2011
Posts: 1
Received Thanks: 1
thanks very much.this is the easy way to hack
kentanik is offline  
Thanks
1 User
Old 01/12/2011, 15:10   #5
 
elite*gold: 0
Join Date: Dec 2010
Posts: 2
Received Thanks: 0
nice 1.
even cant stop autofire, but got top 1.
thanks
M45T3RD4MN is offline  
Old 01/15/2011, 02:17   #6
 
elite*gold: 0
Join Date: Jan 2011
Posts: 2
Received Thanks: 5
Quote:
Originally Posted by nForce View Post
MAT Automaton
By dB



Introduction

MAT Automaton is a framework that employs the Python 3 interpreter to allow MAT players to script the behaviour of their player. With Pyreal, MAT Automaton provides tight bindings with the Unreal Engine. As a result, it is possible to write code similar to Unreal Script with full access to Unreal Engine internals. MAT Automaton includes an in game command line console and a graphical menu. A sample aimbot/wallhack script is included, but users are encouraged to modify it or write their own.

Changes in this version
  • launcher now reads server information from autoupdate.ini
  • added CIB support to core module
  • upgraded Python to 3.1.3
  • added builtin Python modules (ctypes, ssl, etc)
  • minor Pyreal improvements

Instructions

1. Start the launcher via the shortcut in the start menu.
2. If you are running Windows XP or Vista/W7 with UAC disabled, start the game and the injection will be performed automatically. Otherwise, MAT Automaton will ask you for the location of of your MAT executable (MAT.exe) (e.g. \Program Files\MAT\System\MAT.exe)

Press END to access the menu.
Press INSERT to access the console.
Press NUMPAD 0 to toggle auto aim.
Press NUMPAD 1 to toggle indicator wallhack.
Press NUMPAD 2 to toggle wireframe wallhack.
Press NUMPAD 3 to toggle auto firing.

The scripts are located in the directory "Scripts" accessible from the installation path.

For an introduction to Python refer to

More importantly for a reference on the Unreal Engine refer to

I would love to see others contribute scripts, as the goal of this project is to see what types of creative things people come up with.

Here is a snippet of the included script, just to whet your appetite:
Code:
# Look for the best target (by health)
BestPawn     = None
BestLocation = None
for Pawn in PC.DynamicActors ( PawnClass, PC ):
    # Check if the pawn is valid
    if ( not self.Valid ( Pawn ) or Pawn == PC.Pawn or not self.Damagable ( Pawn ) ): continue
    
    # If it is a team game make sure we are on a different team
    if ( not self.FriendlyFire and self.SameTeam ( Pawn ) ): continue
    
    # Find a visible bone
    for bone in [ Pawn.HeadBone, Pawn.RootBone ]:
        # Fetch the bone coords
        BoneCoords = Pawn.GetBoneCoords ( bone )
        
        # Calculate the location
        BoneLocation = BoneCoords.Origin + BoneCoords.XAxis + BoneCoords.YAxis + BoneCoords.ZAxis
        
        # Conditionally apply latency correction
        if ( self.LatencyCorrection ):
            BoneLocation += self.Correction ( PC, Pawn, deltatime )
            
        # Adjust according to projectile physics
        if ( PC.Pawn.Weapon and PC.Pawn.Weapon.FireMode [ FireMode ] and PC.Pawn.Weapon.FireMode [ FireMode ].ProjectileClass ):
            Projectile = PC.Pawn.Weapon.FireMode [ FireMode ].ProjectileClass.Default
            if ( Projectile and Projectile.Speed != 0 and Projectile.Physics != PHYS_Falling ):
                BoneLocation += Pawn.Velocity * ( abs ( BoneLocation - CameraLocation ) / Projectile.Speed )
        
        # Do the check
        if ( Pawn.FastTrace ( BoneLocation, CameraLocation ) ):
            # Is this the best one?
            if ( not BestPawn or Pawn.Health < BestPawn.Health ):
                BestPawn     = Pawn
                BestLocation = BoneLocation
            break
if ( BestPawn ):
    # We've found a valid target, so lets set the rotation and fire as required
    PC.ClientSetRotation ( ( BestLocation - CameraLocation ).Normal ().Rotation () )
    if ( self.AutoFire and PC.Pawn.Weapon ): PC.Pawn.Weapon.ClientStartFire ( FireMode )
can you help me about the script finding visible bone and camera location.

please make a script which the camera will only auto adjust on visible target when you are hitting the FIRING button..

im having a problem when there's too many enemy. The camera is moving every where and i can't fire on a single visible target..

Please help
sorry if my
matlaverde is offline  
Thanks
5 Users
Old 01/15/2011, 22:05   #7
 
elite*gold: 0
Join Date: Jan 2011
Posts: 2
Received Thanks: 0
exact matlaverde i said to he in the first post for the iden problem

and

in the mummy, terminantor and deathmach no run because all are in same team


i had this idea

in

if ( not BestPawn or ****.Health < BestPawn.Health ):
BestPawn = ****
BestLocation = BoneLocation


to

if ( not BestPawn or ****.Health < BestPawn.Health and (( BoneCoords / CameraLocation) == 1) ):
BestPawn = ****
BestLocation = BoneLocation


i think that python trunc the division but im no sure
but
vectors cant divide :S . i dont know continue
cannonpas is offline  
Old 01/16/2011, 23:50   #8
 
elite*gold: 0
Join Date: Jan 2011
Posts: 1
Received Thanks: 0
I NEED SOME HELP i mis core.dll cane some 1 give me that ore link for dlowd
albertus123456789 is offline  
Old 01/17/2011, 03:29   #9
 
elite*gold: 0
Join Date: Dec 2007
Posts: 299
Received Thanks: 103
Quote:
Originally Posted by albertus123456789 View Post
I NEED SOME HELP i mis core.dll cane some 1 give me that ore link for dlowd


You're welcome.
Nacirema is offline  
Old 01/18/2011, 16:57   #10
 
elite*gold: 0
Join Date: Nov 2010
Posts: 10
Received Thanks: 0
this hack cant use after cib update....pls make new aimbot...plss
slyer93 is offline  
Old 01/21/2011, 15:45   #11
 
elite*gold: 0
Join Date: Dec 2010
Posts: 5
Received Thanks: 2
plzzzz master..now mat online have update..plzzz do hack new version...
matbiak77 is offline  
Thanks
1 User
Old 01/22/2011, 13:44   #12
 
elite*gold: 0
Join Date: Jul 2010
Posts: 2
Received Thanks: 0
Wow,This is very work in MAT indonesia(xshot)
Thanks to Author!
zadasa is offline  
Old 01/22/2011, 15:21   #13
 
elite*gold: 0
Join Date: Dec 2010
Posts: 1
Received Thanks: 0
Why i cant extract it? pls reply fast
charles barrion is offline  
Old 01/23/2011, 19:37   #14
 
|Ghost~~Life|™'s Avatar
 
elite*gold: 0
Join Date: Nov 2010
Posts: 158
Received Thanks: 20
nice aimbot real nice and nice work
|Ghost~~Life|™ is offline  
Old 01/26/2011, 11:47   #15
 
elite*gold: 0
Join Date: Dec 2010
Posts: 54
Received Thanks: 2
guys why when i start want to using the hack..its error or dc..why??someone help me
princeryukenzai is offline  
Reply




All times are GMT +2. The time now is 16:53.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.