Page 4 of 12 FirstFirst ... 23456 ... LastLast
Results 46 to 60 of 178
  1. #1
    dBased's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    172
    Reputation
    59
    Thanks
    3,350

    MAT Automaton (1.0.2.0) [Date: 04/01/2011]

    MAT Automaton
    Version: 1.0.2.0
    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.

    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:
    # Get required game objects
    Canvas       = canvas
    PC           = self.Viewport.Actor
    AlphaBlended = self.AlphaBlended
    Texture      = self.Texture
    
    # Reset the canvas
    Canvas.Reset ()
    
    # Draw the background
    self.RenderPanel ( canvas )
    
    # Calculate player location
    PlayerLocation = PC.Pawn.Location
    CenterLocation = Vector ( PlayerLocation[0], PlayerLocation[1], 0 )
    
    # Gather some geometry about panel
    Border      = Vector ( self.Border, self.Border, 0 )
    PanelSize   = self.Size - Border * 2
    PanelCenter = self.Position + Border + PanelSize/2
    
    # Setup the colors
    colors = {-1        : self.Colors [ 'self'      ],
              TEAM_Blue : self.Colors [ 'team_blue' ],
              TEAM_Red  : self.Colors [ 'team_red'  ]}
    
    # Find angle for transformation
    CameraRotation = PC.CalcViewRotation
    RotationRadians = -CameraRotation.Yaw * (math.pi/32768) + math.pi/2
    
    # Render the pawn nodes
    for Pawn in Master.Pawns ():
        # Skip dead pawns
        if ( Pawn.Health <= 0 ): continue
    
        # Get team information
        Team = -1 if Pawn == PC.Pawn else self.GetTeam ( Pawn )
    
        # Calculate normalized marker location for pawn
        PawnLocation = Vector ( Pawn.Location[0], Pawn.Location[1], 0 )
        Marker = (CenterLocation - PawnLocation) / self.Radius
        Marker = self****tate ( Marker, RotationRadians )
        for i in [0, 1]: Marker[i] = max ( min ( Marker[i], 1 ), -1 )
    
        # Calculate marker position on panel
        Marker = PanelCenter + (Marker/2) * PanelSize
    
        # Draw the marker on the panel
        Canvas.DrawColor = self.Colors['shadow']
        Canvas.SetPos ( Marker[0] - 3, Marker[1] - 3 )
        Canvas.DrawTile ( AlphaBlended, 7, 7, 0, 0, Texture.USize, Texture.VSize )
        Canvas.DrawColor = colors[Team]
        Canvas.SetPos ( Marker[0] - 2, Marker[1] - 2 )
        Canvas.DrawTile ( AlphaBlended, 5, 5, 0, 0, Texture.USize, Texture.VSize )
    VirSCAN Results

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

    3diegoz (04-28-2012),4301999 (07-12-2013),532373677 (04-27-2012),734285840 (01-05-2012),abc320826 (05-15-2012),adelin9999 (05-06-2012),afiq hazwan (09-01-2012),ahxiang123 (05-01-2012),airveta46 (05-11-2012),akmal123 (01-04-2012),alang3 (04-29-2012),aldyakim (04-24-2012),alecyong (03-15-2015),alimhmd103 (07-02-2012),Aminudinyunus (11-01-2012),apisayeen (06-27-2012),apisopp4 (04-16-2013),Arksi Boodark (05-08-2012),ashrafcool (01-05-2012),astron51 (08-29-2012),asunapro (04-12-2014),azun1357 (05-08-2012),bibib (06-01-2012),bighacker22 (04-23-2012),Blitz (01-04-2012),bosskham (08-10-2012),budaklama (11-06-2013),Bugmenot420 (05-05-2012),Chinaliar (04-26-2012),chococrispis26 (04-02-2013),Chong Qiu Nv Chong (01-05-2012),Christian07 (04-30-2012),cmc5414 (05-05-2012),cokolat77 (05-28-2012),CoolBird7 (06-29-2012),cric992010 (04-24-2012),cuib123 (04-28-2012),cuvox1 (07-01-2016),damonlow (08-17-2012),danieldan15 (04-23-2013),DathCross (01-04-2012),demons.1101 (02-14-2013),deskiet (05-05-2012),devil5055 (09-18-2012),DJchar (08-14-2012),DJrools (04-29-2012),DoOdlEB0B HakPaNts (01-04-2012),dzeivi1 (05-11-2012),edmund1997 (01-06-2012),edward1224 (05-06-2012),ehfkwl (08-06-2012),EmoAce (10-03-2012),erheepye (05-08-2012),faiz466 (02-24-2018),FasterX (10-03-2012),First Time (04-29-2012),foreverfacebook (05-05-2012),ghost562 (01-10-2012),golf1987 (01-04-2012),gorden1996 (03-13-2012),Gustavo' Languren (05-08-2012),hafezpower (05-01-2012),hankiller (05-09-2012),HAYDENWOOTIS (05-01-2012),hazani (05-08-2012),hey18 (11-25-2015),Hj SempOi (03-13-2012),hmc.rifai (08-25-2012),IkutoEx (04-23-2012),Iqie (05-18-2014),itemall1a (05-01-2012),jack001123 (08-18-2012),jack_jack (04-29-2012),jamesswatt99 (05-20-2012),Jason Goh Qi (02-12-2013),jason881 (04-27-2012),javierin (04-27-2012),Jayjayee (06-29-2012),Jeff Hong (01-05-2012),JeffreyLeng (07-20-2016),jiannlove (01-04-2012),johnpkpk2008 (01-04-2012),jonathanrese (08-09-2012),junleray123 (07-12-2012),kadepoho (04-30-2012),kakata (06-29-2012),kakran15 (01-04-2012),kaphminga (07-18-2013),kharakenzu (05-03-2012),kimhyuns1 (01-05-2012),kimkorn (05-11-2012),kindabella1 (12-11-2012),kkkm78 (12-16-2012),Koishikawa0111 (08-20-2012),konangel (01-04-2012),koruno99 (02-13-2018),kroolzero (05-30-2012),KvenMaster007 (11-15-2012),laukelvin (04-26-2012),leongryan (12-31-2013),LeslieChong (04-28-2012),limsruntekabc (04-28-2012),Lsr Exerion (04-21-2012),luffyxiao (05-31-2012),lynnn919 (04-28-2012),mahfuz900 (04-29-2012),mamat123 (05-05-2012),maucheat (05-22-2012),maxdavid (04-23-2012),maxkanick (01-05-2012),MiloVsNescafe (01-05-2012),morn (01-05-2012),morningbreaker (05-13-2012),Mrs Leka (05-07-2012),Mrwella (01-14-2017),MÜhammad Syafiq (05-12-2012),MyNameIsUmar (04-28-2012),namasia (05-08-2012),nanai2 (05-12-2012),nazhavoc (04-12-2014),nazmi1997 (05-03-2012),newjackkk1 (08-03-2019),ngjinan1998 (04-28-2012),ninnlinn (06-01-2012),ong siow wei (10-20-2013),Oscar _Lam (04-26-2012),pacman715 (05-07-2012),pcolyn29 (09-01-2012),peaceyor1 (06-05-2016),pearl100 (04-26-2012),penanti46 (04-28-2012),phanna555 (03-18-2012),phuachukang11 (05-06-2012),pinkgirll (05-04-2012),playvirus (05-27-2012),poenkejang (04-23-2012),PovPich Ponleu (07-07-2012),pumpopz999 (04-12-2016),qwqz123 (01-04-2012),raispaan (11-26-2013),Reallity-X4 (04-26-2012),Remaja Siber (12-04-2012),richard101 (01-10-2012),ricky606 (01-19-2012),rinter99 (05-28-2012),romulus17 (05-06-2012),S0H3I (01-04-2012),s3tan321 (01-01-2014),s755301090 (06-08-2013),sabaw456 (03-10-2013),Sad1999520 (08-16-2025),saddam_Hussien (01-04-2012),Samuruthegod (08-21-2012),se7enhunter (05-12-2012),Sengvannak (09-25-2012),ShadowBlack002 (09-02-2012),shahirmanyb (05-07-2012),shakir007 (04-26-2012),shamim95 (05-03-2012),shengdan (11-25-2012),shukzxc (11-12-2012),single35 (06-07-2012),smalljie (01-04-2012),Snuggle (05-22-2016),socooltheygowo (01-05-2012),solo001 (04-24-2012),SOON. (05-15-2012),SOSx6Cc (12-11-2012),sreythyka (05-01-2012),stev12 (12-22-2012),superpondza (05-22-2012),suruhanjaya (05-01-2012),suzumiya1997 (09-27-2012),Switchblade1337 (08-17-2012),tayxiloon01 (04-28-2012),tHeDoCtOr46 (01-05-2012),thibhan (05-08-2012),ThogSaTa (07-28-2012),thongjeng (10-08-2012),timothy78 (05-04-2012),timothy87 (05-06-2012),turton (07-01-2012),unggasayam1 (03-28-2012),unplantedhacker (01-06-2012),us.hack (01-06-2012),u_kissman (05-08-2012),vic1996680 (01-08-2012),vistakhmer (01-06-2012),w8220308 (01-05-2012),Wahan10 (01-06-2012),weedhaze100 (03-06-2014),weiyuanwei (06-29-2012),wfyhxa (07-11-2012),wil456wil (10-03-2018),wongjeffry (08-08-2012),xdajay (01-04-2012),xHoTx (09-01-2012),xiaochuan (12-23-2013),xiaofei120430 (05-04-2012),xiiaoloong123 (01-04-2012),Xing Noheart (05-08-2012),xiongkaizxc (05-14-2025),Xshoters (04-24-2012),yapchinwei (07-21-2012),yeahx3 (05-04-2012),youfaggot (05-01-2012),YouGotOwned99 (06-15-2012),zahran nasir (04-30-2012),zoux (04-28-2012),zX TRiiGeRz (05-26-2012),zyq123427342 (04-30-2012),[Hacker]™ (08-25-2012),{cRrOs_X} (01-05-2012)

  3. #46
    dBased's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    172
    Reputation
    59
    Thanks
    3,350
    Quote Originally Posted by xerzax View Post
    thanks db!! but no god mode?? it's okay! the new radar is great! me gusta!
    Shield mode? Yes, but only for PvE (player vs enemies).

  4. #47
    Alfie Dussel's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by jiannlove View Post
    dBased .... why me no gt shield and gravity?no gt this two or me no gt only?
    no I have the same

  5. #48
    jiannlove's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    1
    mummy no gt--

  6. #49
    guoxiaoxiao's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0

    1.0.2.0Can not use?

    Ask for help?

    ---------- Post added at 09:08 AM ---------- Previous post was at 09:01 AM ----------

    Cannot use to ask for help?

  7. #50
    shangban's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    good
    Posts
    12
    Reputation
    10
    Thanks
    0
    My Mood
    Cold
    someone can invincible,but another cant !way?

  8. #51
    underhungboat36's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Unhappy

    How to run MAT Automaton without opening MAT Shield ??

  9. #52
    shangban's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    good
    Posts
    12
    Reputation
    10
    Thanks
    0
    My Mood
    Cold
    some one in ghost is invincible

  10. #53
    Piinar's Avatar
    Join Date
    Jan 2012
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0

    Hey..

    im Trying the whole time with the MAT Automaton .. but in every Try i Got kicked to this Website... Can you help me plz ?

    ---------- Post added at 06:13 PM ---------- Previous post was at 06:11 PM ----------

    Can You Reply Me faster plzz

  11. #54
    dBased's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    172
    Reputation
    59
    Thanks
    3,350
    Quote Originally Posted by Piinar View Post
    im Trying the whole time with the MAT Automaton .. but in every Try i Got kicked to this Website... Can you help me plz ?

    ---------- Post added at 06:13 PM ---------- Previous post was at 06:11 PM ----------

    Can You Reply Me faster plzz
    You have an old version of MAT Automaton. You were sent here to download the newest version.

  12. #55
    oudebok's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    zfeazfy
    Posts
    9
    Reputation
    10
    Thanks
    1
    My Mood
    Dead
    dBased please reply!

    I have a problem with Automaton.
    I installed the file correctly and i wanna start up automaton.
    Butt nothing pop ups and i start Mat.
    Then i press ''Insert'' nothing happens?
    Please tell me what i did wrong ;D

  13. #56
    ianv3v3's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Not work...detect gameguard for Mat Indo

  14. #57
    asrulazizi79's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    how to use ???

  15. #58
    saddam_Hussien's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    my mama house
    Posts
    164
    Reputation
    10
    Thanks
    14
    My Mood
    Stressed
    Quote Originally Posted by bugssy View Post
    Im unable to open it....
    i kepp getting the error on winrar:
    Unexpected end of archive
    and,
    CRC fail in Mat Automaton; the file is corrupt

    what do i do now?? o.O
    lol stop asking dBased that questian...u just a kid who like shield n make ppl snap pic of u....lol

    ---------- Post added at 11:17 AM ---------- Previous post was at 11:16 AM ----------

    Quote Originally Posted by shangban View Post
    some one in ghost is invincible
    u have brain or not ghost is invincible la

    ---------- Post added at 11:19 AM ---------- Previous post was at 11:17 AM ----------

    Quote Originally Posted by oudebok View Post
    dBased please reply!

    I have a problem with Automaton.
    I installed the file correctly and i wanna start up automaton.
    Butt nothing pop ups and i start Mat.
    Then i press ''Insert'' nothing happens?
    Please tell me what i did wrong ;D
    i did no wrong just u s*****

  16. #59
    tinierme's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    0
    One time I saw someone have invincible while playing Death Match. Also what is the commands are there for console? I don't know how to use it

  17. #60
    888blade's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Alabama
    Posts
    22
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    mine doesn't have shield or gravity and i have UAC help? o.O

Page 4 of 12 FirstFirst ... 23456 ... LastLast

Similar Threads

  1. [Discussion] FeedBack MAT Automaton (1.0.2.0) [Date: 04/01/2011]
    By xdajay in forum Mission Against Terror Discussions
    Replies: 7
    Last Post: 01-11-2012, 03:35 AM
  2. [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
  3. [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
  4. [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
  5. [Help] Mat automaton Can't Use ,have detected 28/2/2011
    By amircool in forum Mission Against Terror Discussions
    Replies: 1
    Last Post: 02-28-2011, 07:41 AM