Page 3 of 22 FirstFirst 1234513 ... LastLast
Results 31 to 45 of 330
  1. #1
    dBased's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    172
    Reputation
    59
    Thanks
    3,336

    MAT Automaton (Holiday edition) [Date: 24/12/2011]

    MAT Automaton
    Version: 1.0.1.5 (Holiday edition)
    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.

    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.


    Notes
    • The scripts are located in the directory "Scripts" accessible from the installation path and in the profile application data path "%AppData%\MAT Automaton\Scripts".
    • For an introduction to Python refer to The Python Tutorial
    • For a reference on the Unreal Engine refer to Unreal Wiki


    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
    BestPawn     = None
    BestLocation = None
    for Pawn in PC.DynamicActors ( PawnClass, PC ):
        # Check if the pawn is valid
        if ( 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
    
        # Setup bones list
        BoneList = ( self.BonePrecedence == BONE_Root ) \
            and [Pawn****otBone, Pawn.HeadBone] \
            or  [Pawn.HeadBone, Pawn****otBone]
    
        # Find a visible bone
        for bone in BoneList:
            # 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 )
    
            # Calculate angle
            Angle = ( CameraRotation.Vector () | ( BoneLocation - CameraLocation ).Normal () ) + 1.0
            Angle = ( 1.0 - ( Angle / 2.0 ) ) * 180.0
    
            # Do the check
            if ( Angle <= self.AimAngle and Pawn.FastTrace ( BoneLocation, CameraLocation ) ):
                # Is this the best one?
                if ( not BestPawn or self.Compare ( BestPawn, Pawn ) ):
                    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 )****tation () )
        if ( self.AutoFire and PC.Pawn.Weapon ): PC.Pawn.Weapon.ClientStartFire ( FireMode )
    VirSCAN Results
    Last edited by dBased; 12-25-2011 at 03:18 AM.

  2. The Following 109 Users Say Thank You to dBased For This Useful Post:

    3vil4lex (12-25-2011),abaray (12-25-2011),abcdragon (08-09-2012),acolyte (06-21-2012),afrojack1 (03-06-2013),Alif Anwar Beyondthescore (12-29-2011),alimhmd103 (07-13-2012),anonymous007 (01-06-2012),arashiksan (12-31-2011),areripx (12-24-2011),Blitz (12-28-2011),boyironheart (10-27-2012),brownnns (12-25-2011),budakkedah96 (12-25-2011),catlet3 (02-14-2014),chicken4you (12-27-2011),Cpcoolboy1 (12-27-2011),dannyo07 (12-25-2011),dest230 (11-13-2012),DJ.hunter (08-31-2012),DontKillmeBabyz (10-18-2015),Edpgirl (12-24-2011),edward1224 (12-25-2011),erdham (12-28-2011),Estk (12-25-2011),eugen1111 (12-29-2011),extraleft (12-29-2011),faiz466 (02-24-2018),Faris Massa (05-01-2012),farissowtz (12-28-2011),foivord89 (12-25-2011),fongnam007 (07-27-2012),frebas (01-03-2012),GameCry (02-21-2013),gang168 (05-28-2012),GanGuan (12-24-2011),Goalz101 (12-24-2011),hafiz9555 (10-27-2012),hafizxero (10-27-2012),halfer1 (12-26-2011),Harmizi Syah Hermi (06-19-2013),HomeMade (06-01-2012),huzairey (12-24-2011),idlan (12-28-2011),iepan (12-24-2011),iMwEaK (01-20-2012),JeffreyLeng (08-30-2016),JohnyLengPro97 (12-27-2013),josonlim2012 (11-14-2012),kakran15 (12-27-2011),kamal333 (12-25-2011),karloz123 (01-20-2015),khattab300 (01-02-2012),kimhyuns1 (12-31-2011),kimi1310 (12-17-2014),kjsheng99 (12-24-2011),kk35 (12-26-2011),lajiniao (12-25-2011),Lee Jun Ying (12-27-2011),lelakisejati (12-25-2011),lovestory (12-24-2011),mant77 (08-21-2014),maxkanick (05-06-2012),mkimiz (12-25-2011),mkleong (01-05-2014),mohdamirul (12-25-2011),muyyaqisback (03-07-2014),nazmimafia (12-11-2012),neeraj234 (12-24-2011),ong siow wei (10-18-2013),Oscar _Lam (05-02-2012),PanhaYubitoHacker (05-26-2013),phanna555 (04-30-2012),picombo10 (12-24-2011),prof014 (12-25-2011),ReverseAmy (12-25-2011),richard101 (12-24-2011),rotiban (12-25-2011),saddam_Hussien (12-24-2011),Sadnarok (09-12-2021),sahias (12-24-2011),siang4741 (12-24-2011),soco (11-20-2012),SOHAIKIA (12-25-2011),sosxradar (05-12-2012),superprohacker (12-25-2011),Tackio (12-26-2011),taikaixin (11-30-2014),tHeDoCtOr46 (12-25-2011),thexviet (12-25-2011),thongjeng (09-15-2012),Uzumakiazhari (12-25-2011),VavanVampir (12-27-2011),Vehrdyn (12-25-2011),vipcs04 (08-10-2020),vistakhmer (12-29-2011),vistaxy (12-24-2011),wakaka3311 (12-25-2011),walaowey (12-27-2011),wanalif721 (07-30-2014),wil456wil (10-03-2018),xdajay (12-24-2011),xredhalox (12-25-2011),xujinping (04-08-2013),XxLoVeTaxX (12-29-2011),yeahx3 (12-26-2011),ziolinz (12-25-2011),zoliemorliea (05-24-2012),{cRrOs_X} (12-27-2011)

  3. #31
    saddam_Hussien's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    my mama house
    Posts
    164
    Reputation
    10
    Thanks
    14
    My Mood
    Stressed
    for those who already enter mat game better no quit mat now cos maybe GM already block ppl from enter mat game,or here have spy that tell gm about this new mat automaton

  4. #32
    ehfkwl's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Canada
    Posts
    26
    Reputation
    10
    Thanks
    4
    Please approve.Thank you!

  5. #33
    richard101's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Happy
    me cnt download T^T
    some one upload to ********e pls..

    ---------- Post added at 11:41 PM ---------- Previous post was at 11:37 PM ----------

    why Mat cnt log in?

  6. #34
    hackersyafiq's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    1
    dbased me wan use that hack /.\ ~ WElcome back dBased ^________________^

  7. #35
    siang4741's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    6
    My Mood
    Happy
    Quote Originally Posted by saddam_Hussien View Post
    for those who already enter mat game better no quit mat now cos maybe GM already block ppl from enter mat game,or here have spy that tell gm about this new mat automaton
    cannot log in now?

    ---------- Post added at 11:50 PM ---------- Previous post was at 11:49 PM ----------

    aaaaaa omg i log out then cannot log in back

  8. #36
    xdajay's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    India
    Posts
    138
    Reputation
    10
    Thanks
    18
    My Mood
    Lonely
    Dbase just rock yeah yeah yeah

    ---------- Post added at 12:22 AM ---------- Previous post was at 12:15 AM ----------

    Aprove please moders
    WTF?I am totaly Flushed


    T u He Ha Sab Kuch
    Taray Bina Reha Na Sakno
    Wrong way to death

  9. #37
    Vehrdyn's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    House of house
    Posts
    8,543
    Reputation
    206
    Thanks
    5,531
    wait approved

  10. #38
    xdajay's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    India
    Posts
    138
    Reputation
    10
    Thanks
    18
    My Mood
    Lonely
    I think mods want huge trafic :P may this time it hits to around 50k views and dwonlods just gussing ;/
    WTF?I am totaly Flushed


    T u He Ha Sab Kuch
    Taray Bina Reha Na Sakno
    Wrong way to death

  11. #39
    mathacker123's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    1
    why not put at m e d i a f i r e?? we need now b4 gm was detected

  12. #40
    wakaka3311's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    how to approved?? i already click the link,,, love u DBAsed...

  13. #41
    xdajay's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    India
    Posts
    138
    Reputation
    10
    Thanks
    18
    My Mood
    Lonely
    moderators ;/// dbase they not approving becouse u havent virus scan ?
    WTF?I am totaly Flushed


    T u He Ha Sab Kuch
    Taray Bina Reha Na Sakno
    Wrong way to death

  14. #42
    crazydafe's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    DBased Me Wan

  15. #43
    rotiban's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Approve fast pls ILOVEYOU dBased ..Marry ChristMas To You And Family xD

  16. #44
    Edpgirl's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    1
    dbased..just upload to M E D I A F I RE and post link

  17. The Following User Says Thank You to Edpgirl For This Useful Post:

    rotiban (12-25-2011)

  18. #45
    rotiban's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    dBased pls upload to ********e pls >_<

Page 3 of 22 FirstFirst 1234513 ... LastLast

Similar Threads

  1. [Detected] MAT Automaton (1.0.2.0) [Date: 04/01/2011]
    By dBased in forum Mission Against Terror Hacks & Cheats
    Replies: 177
    Last Post: 01-06-2012, 11:17 AM
  2. I can use mat automaton.. just edit a little script..
    By mathacker123 in forum Mission Against Terror Help
    Replies: 5
    Last Post: 12-29-2011, 01:00 AM
  3. [Patched] MAT Automaton (1.0.1.3) [Date: 07/07/2011]
    By dBased in forum Mission Against Terror Hacks & Cheats
    Replies: 503
    Last Post: 08-24-2011, 10:57 AM
  4. [Patched] MAT Automaton (1.0.0.9) [Date: 29/04/2011]
    By dBased in forum Mission Against Terror Hacks & Cheats
    Replies: 336
    Last Post: 06-13-2011, 02:42 AM
  5. [Patched] MAT Automaton (1.0.1.1) [Date: 06/06/2011]
    By dBased in forum Mission Against Terror Hacks & Cheats
    Replies: 298
    Last Post: 06-11-2011, 04:05 PM