Page 22 of 22 FirstFirst ... 12202122
Results 316 to 330 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. #316
    fahmi2324's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Malaysia
    Posts
    17
    Reputation
    10
    Thanks
    1
    My Mood
    Amazed
    got it now?

  4. #317
    FiR3BAT's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    66
    Reputation
    10
    Thanks
    4
    Welcome back, dBased. Hope you're having a good holiday and Happy New Year celebration. And thanks for the hack, even I have removed the game from my pc...

  5. #318
    epan96's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    malaysia
    Posts
    49
    Reputation
    10
    Thanks
    7
    My Mood
    Sad
    Dbased i try hack using MHS it work..could u help me plizz
    i try with X,Y,Z and does flyhack im very noob at diz part
    m i rite?
    __________________________________________________
    MPGH teach me alot ..THANKS guys !


  6. #319
    axle2012's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    No Work

  7. #320
    stken25's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    Cavite City, Philippines, Philippines
    Posts
    1
    Reputation
    10
    Thanks
    0
    THIS HACK FOR MAT ONLINE SUBAS GAME?

  8. #321
    acap4651's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    1
    if have hack share me like please
    Ok please

  9. #322
    Lim Zhi En's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Cibmall Mat Now Not working this~
    better Dbased can come out new mat automaton =D

  10. #323
    lordgunner's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    its totally work.. until now its work for me

  11. #324
    bryne21's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    is this still working??? HA DB???

  12. #325
    Faiz199's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    UnKnowN
    Posts
    105
    Reputation
    10
    Thanks
    53
    My Mood
    Worried

    Exclamation MAT automotan

    I Thinks This Hach Already Detected

    [IMG]https://i1137.photobucke*****m/albums/n514/duz32145/12_4_20Member201.png[/IMG]
    Oppa Gangnam Style



  13. #326
    XkramProOfficial's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Its already been disable by db

  14. #327
    fahmi2324's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    Malaysia
    Posts
    17
    Reputation
    10
    Thanks
    1
    My Mood
    Amazed
    cant wait for new automaton with new radar made by dB

  15. #328
    adibmokhali's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    My Mood
    Happy
    wow !!is it work??i juz dun try it but i hv download..hope work

    ---------- Post added at 04:55 AM ---------- Previous post was at 04:30 AM ----------

    Ahhh it dtected la..i can't use it now la..can u solve my problems dBased

  16. #329
    halfer1's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic
    dBased can you upgrade the Wall hack? like in ghost.. can you show in wall hack that the ghost are holding their breath? so we know if we're suppose to shoot them or not.. bcuz if we killed them while holding their breath they can figured out that we are hackin..

  17. #330
    888blade's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Alabama
    Posts
    22
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    why does mine say pvp protected mine doesn't have gravity hardly anything that was on the pic =.=

Page 22 of 22 FirstFirst ... 12202122

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