Page 12 of 12 FirstFirst ... 2101112
Results 166 to 178 of 178
  1. #1
    dBased's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    172
    Reputation
    59
    Thanks
    3,336

    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 211 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),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),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. #166
    gendjun8's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    that hack has be thread by GM.......

  4. #167
    lopez2zero's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    0
    My Mood
    Tired

    MAT AUTOMATON ALREADY DETECT!!!!

    Quote Originally Posted by dBased View Post
    Well as I said they are down for maintenance. MAT Automaton will likely be blocked when the maintenance is complete.
    Dbased.....the new version has been detect when u will make a new???now??im only use it 3hours then boom..... Cornection lost...then when im want press END it out Cherich you akaun....@@!@!$!@#!R%$@!

  5. #168
    Pidotgdot's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    57
    dBased the hack not working la....

  6. #169
    paha's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Hot

    Unhappy Need update mat!

    Now Ak Online is blocked mat v 1.0.2.0. Can you improve it for us? Thank you!

  7. #170
    oudebok's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    zfeazfy
    Posts
    9
    Reputation
    10
    Thanks
    1
    My Mood
    Dead
    New Hack Coming?

  8. #171
    xginx's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    6
    My Mood
    Asleep
    better than update just tutorial how to edit script or how to bypass the anti-cheat system
    because when Gm of one country find the way to block automation they send to other so all is block becoz all use same script
    also you said it free but other resell it instead of share
    and other abuse to use it so that why it no more work
    so dear dbase plese teach us how to do....
    Thanks for reading

    ---------- Post added at 10:27 PM ---------- Previous post was at 10:25 PM ----------

    I love autoaim n autofire + shield in G-mission it play itself good to upgrade level

  9. #172
    shakir007's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    This cibmall M.A.T or what ??
    Please reply ??

  10. #173
    qiananan's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    1
    dbased next hack pls make shield and gravity at team death match thx! coz auto aim +auto firing hard to aim head and shoot lo ....!!

  11. #174
    dBased's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    172
    Reputation
    59
    Thanks
    3,336
    Quote Originally Posted by xginx View Post
    better than update just tutorial how to edit script or how to bypass the anti-cheat system
    because when Gm of one country find the way to block automation they send to other so all is block becoz all use same script
    also you said it free but other resell it instead of share
    and other abuse to use it so that why it no more work
    so dear dbase plese teach us how to do....
    Thanks for reading

    ---------- Post added at 10:27 PM ---------- Previous post was at 10:25 PM ----------

    I love autoaim n autofire + shield in G-mission it play itself good to upgrade level
    The people that claim that they can bypass the anti-cheat systems by modifying the scripts are not telling you the truth. It is not the content of the scripts which is being detected, the core of MAT Automaton is. You can prove this for yourself if you like. Simply run MAT Automaton without any scripts (this can be done by deleting the "Scripts" directory in the installation path). You will see that it is still blocked by the anti-cheat systems in both regions.

  12. The Following 4 Users Say Thank You to dBased For This Useful Post:

    breakerng88 (01-07-2012),noobiezai (01-06-2012),samroise (01-08-2012),unplantedhacker (01-11-2012)

  13. #175
    Wahan10's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed
    So... When will the new hack come dBased?
    Cant u just edit the script? And give the link again?

  14. #176
    guanren16's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    dbased pls update the MAT automaton pls

  15. #177
    chiwei99's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    erm hey i got detect in 1/7/2012 ((((

  16. #178
    Vehrdyn's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    House of house
    Posts
    8,543
    Reputation
    206
    Thanks
    5,531
    @dBased; detected to CiB T,T

Page 12 of 12 FirstFirst ... 2101112

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