Page 34 of 34 FirstFirst ... 24323334
Results 496 to 504 of 504
  1. #1
    dBased's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    172
    Reputation
    59
    Thanks
    3,336

    MAT Automaton (1.0.1.3) [Date: 07/07/2011]

    MAT Automaton
    Version: 1.0.1.3
    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
    • Upgraded support for: CIBMALL, SABAY, SUBA, XOYO


    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 )
    VirusTotal Results
    Last edited by dBased; 07-07-2011 at 02:55 AM.

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

    -nervergiveup- (05-01-2013),1234567890-= (07-07-2011),2005010 (07-16-2011),454046633 (07-08-2011),734285840 (07-06-2011),913599299 (08-11-2011),A.V.A.N (08-22-2011),a1202340106 (07-12-2011),acexero (07-07-2011),aditya77 (08-26-2013),AhZaiWaGeng (11-01-2011),aideshiyan (07-07-2011),airveta46 (05-11-2012),akelhaha (07-07-2011),akilpower (07-07-2011),akulah009 (07-12-2011),alimhmd103 (09-28-2012),allyrempit (07-08-2011),alvinlee96 (08-05-2011),amin71 (07-07-2011),amir12345 (08-21-2011),andi2176 (07-07-2011),andremarques (07-10-2011),angahirfan (07-07-2011),anglefuture8 (07-07-2011),arashmarshall (07-10-2011),AriesY (07-08-2011),arifakmal (07-07-2011),arifher05 (06-01-2012),Ariozz (07-17-2011),asd666 (05-23-2012),Ashutosh (07-07-2011),atam7 (07-06-2011),azwan (12-26-2011),babasheep (07-07-2011),badjojo12 (07-19-2011),bamboo12345 (08-02-2011),beiju (07-12-2011),black010 (12-13-2013),blue_dragon_emperor (07-07-2011),boboylove9 (04-02-2014),Broly-The-VVF (08-24-2011),budakcolot (07-08-2011),Bukhari Mazlan (12-05-2012),bullet32 (07-07-2011),bunkface (07-07-2011),calvingani (07-06-2011),cannonpas (07-07-2011),cata233 (08-07-2011),cesarmx (07-15-2011),CHARLYJASSON (07-19-2011),Child (07-10-2011),ciao1234ciao (08-03-2011),cluvsky (07-21-2011),cole_son016 (07-07-2011),conan2145 (07-07-2011),Corey1818 (07-07-2011),cwk123 (07-09-2011),cybermessi (07-07-2011),Cynic (07-10-2011),Damanger (07-09-2011),damonlow (08-24-2012),daniel2277 (07-16-2011),dannyo07 (07-07-2011),daravong168 (07-07-2011),Darkluc (08-15-2011),darksiam (11-16-2011),DathCross (07-07-2011),death0527 (07-07-2011),dexter381 (07-07-2011),dhede abolo (08-16-2013),dimaz putra (04-14-2013),Djundika (07-24-2015),dodi07 (07-10-2011),dongjie3d (07-11-2011),DoOdlEB0B HakPaNts (07-07-2011),dookee (07-08-2011),dusun (07-07-2011),d_nyrachel (07-08-2011),Edpgirl (07-07-2011),ehfkwl (08-30-2012),enjie (05-06-2012),even1014 (07-19-2011),eyefinity (07-22-2011),fairuzazrim (01-03-2014),Faiz199 (04-03-2012),faiz1991 (07-07-2011),faizkhalifah (10-06-2014),farahan76 (05-13-2012),fckyou1997 (08-13-2011),fengzi008 (07-07-2011),foivord89 (08-04-2011),frankyhuang (07-09-2011),FrozenSnake (07-22-2011),GabrielLim (07-07-2011),galex44 (08-04-2011),GamerHacker4Ever (07-07-2011),getsmebaby (07-19-2011),ginfit123 (08-12-2011),gjet012 (07-08-2011),goddez (07-13-2011),gtixx (07-07-2011),gufilmzaza (10-09-2011),guruyaya (07-07-2011),Hacking A.K (07-07-2011),hafizul (07-07-2011),haider (07-16-2011),haider97 (08-01-2011),Haje (08-12-2011),hasan12 (08-10-2011),heatshot (07-08-2011),hecan520 (08-29-2011),hengpagna (08-07-2011),henrykyumul (05-14-2012),hidayat (07-07-2011),highh1234 (07-07-2011),HirasawaGirl (07-07-2011),hock (07-07-2011),honges13 (08-09-2011),horuichong (09-24-2011),HsPrinceCrew (07-07-2011),huzairey (07-07-2011),HyunTop (07-07-2011),hz5513 (07-07-2011),hzjeff (07-07-2011),iepan (07-08-2011),iker46 (08-23-2011),ilhamz (08-07-2013),iNinjaPwn (08-02-2011),Invader-Zim (01-29-2013),iphank99 (05-18-2012),irwin (07-08-2011),itachi_unknown (07-11-2011),J3R (07-07-2011),jackflap (12-05-2011),jackson1234 (07-07-2011),jardebolado (08-25-2011),jasper151 (07-07-2011),jcruz1 (07-12-2011),jeff1100 (08-16-2011),Jerry755 (07-14-2011),jinhitam (08-21-2011),jonathanrese (07-15-2011),jonzhang2 (07-14-2011),josonlim2012 (11-14-2012),jun1876 (08-02-2011),jurui12345 (07-07-2011),kachun1998 (08-03-2011),kaibaboy (07-07-2011),kakran15 (07-07-2011),kaphminga (07-18-2013),kau123 (07-08-2011),kekko90 (07-07-2011),kelvin0223 (07-08-2011),kelvinavin1 (08-15-2013),kenjiyeo (07-07-2011),kevinyusei13 (08-23-2011),khmerhack (08-12-2011),khmerhack001 (05-17-2012),kiebay (07-07-2011),kika123 (07-07-2011),KillOurDie (05-02-2012),kimhyuns1 (07-07-2011),kimkhunea (07-07-2011),kimmanothal (07-15-2011),kim_hok (09-17-2011),kingkevin (07-08-2011),kinman (07-08-2011),kkpzack (08-20-2011),kks168 (07-06-2011),kn000 (08-22-2011),Kohanamaru (08-28-2011),kongsopheak (07-07-2011),kowwei (07-09-2011),kratozzz (07-07-2011),krusty1 (08-25-2011),last_moment (08-16-2011),latuya (07-14-2011),latvad (08-14-2011),lausaide (07-07-2011),lazbullet (07-07-2011),lbch2008 (07-09-2011),leonboy855 (07-06-2011),lesscontrol (07-07-2011),lianqi (07-07-2011),limang (07-18-2011),limbianbui (07-07-2011),linkinpark89 (01-11-2014),LINSOVATHARA (07-10-2011),lisilong (07-07-2011),liuleia (08-30-2011),LOLhaha6 (12-17-2013),lolkim6 (07-10-2011),lolmlk1 (08-10-2011),lonemin (07-08-2011),lordaiman (07-07-2011),loveggmaster (08-07-2011),lqmfxl (07-19-2011),luffyxiao (06-02-2012),lwhxc123 (08-17-2011),lyechunkit (07-07-2011),lyyangfong (08-08-2011),macross (07-07-2011),magickarp (08-22-2011),maldito123 (08-14-2011),mamanoty101 (05-03-2012),mamat123 (05-20-2012),mamelone (07-08-2011),Marado9 (07-13-2011),masterwupps (07-10-2011),MaTCrazYFaNs (07-07-2011),matzak (07-23-2011),maxdavid (07-14-2011),maxkanick (07-07-2011),mayhem200 (07-07-2011),mazhiyuan66 (07-11-2011),mfyb007 (07-06-2011),miD06welly (07-08-2011),mishel0978090074 (08-08-2011),missli5673861 (08-22-2011),momohiki (07-08-2011),MrBluR (07-08-2011),mrgigi (07-07-2011),mrhaphap402 (04-17-2016),MrMakers (07-07-2011),mrpeace95 (07-07-2011),Muhd Fadhil (05-04-2013),mussic (07-14-2011),mwtc01 (01-07-2014),myi7iscss (07-18-2011),mynameisyo (07-07-2011),nameaku (09-27-2011),narutodude (07-07-2011),nashamale08 (11-18-2013),NaZi~C0DerZ~ (07-07-2011),nerozero12 (07-07-2011),NINO007 (07-07-2011),nisijian (07-07-2011),niudawa (08-24-2011),nkc25130 (07-09-2011),noobgay (07-08-2011),noobishere (07-09-2011),noob_4896 (07-08-2011),npkuuga060 (07-07-2011),nsothea (08-14-2011),ocalito (08-10-2011),ogkush317 (07-17-2011),Oscar _Lam (05-02-2012),p0997930993 (07-09-2011),paan95 (08-11-2011),PanhaYubitoHacker (05-27-2013),pc117 (05-03-2012),pedropower (07-06-2011),peterandtom (07-07-2011),petercheck (08-19-2011),pethunfai (08-15-2011),phanna555 (07-06-2011),picombo10 (07-07-2011),pikazzu (07-11-2011),poenkejang (05-08-2012),pointman12 (07-22-2011),progila00 (12-24-2013),projackie (07-07-2011),pzmpzm (07-14-2011),q379075696 (07-09-2011),q704057522 (07-11-2011),qq419864049 (07-07-2011),qweasdgolf (10-21-2014),r3nanjpa (07-08-2011),ramaAJE (05-16-2012),Raull (09-10-2011),redcode00 (04-09-2013),repolucion (07-06-2011),ReunitedFoe (07-09-2011),rizal30 (07-07-2011),romulus17 (07-07-2011),ronsonng123 (07-26-2011),rori25 (08-21-2013),rosul27 (08-22-2011),rothabossy (07-07-2011),ryan5013 (08-10-2011),sajhu360 (07-17-2011),sanchr (10-05-2014),saosovan (07-10-2011),saqioul (07-08-2011),scheehooi (03-13-2014),sektor-br (07-07-2011),SelaAmtak (08-10-2011),septi33 (03-13-2013),sgssyed (07-08-2011),shabihaizi (07-08-2011),shahxxx15 (07-07-2011),shitahe (07-07-2011),shortname (07-11-2011),sikamator (03-08-2013),singwen0405 (07-09-2011),siuknxd (08-12-2011),sk952 (07-16-2011),skyline097 (07-06-2011),SkynetVirus (07-07-2011),slashswifter (07-07-2011),smalljie (07-07-2011),smartnawapat (07-17-2011),snoowy09 (07-08-2011),sohai33 (04-27-2013),soksotheanith (07-27-2011),suancong1992 (08-20-2011),superpondza (10-08-2011),suzumiya1997 (08-13-2011),systemhack (08-22-2011),taeyeonSNSD (07-25-2011),tata2 (08-16-2011),tcpclan (07-07-2011),tcw1996 (07-09-2011),teentop2010 (07-14-2011),tengvichetra (07-07-2011),test151350 (07-12-2011),tgrover (07-08-2011),tHeDoCtOr46 (07-06-2011),thomas kong (07-17-2011),thongjeng (09-15-2012),timothy87 (07-07-2011),tittykitty (08-09-2011),TODEANGELO (07-07-2011),tommy3536tw (09-22-2012),TonyStar (07-07-2011),totan9 (07-07-2011),TressKoolz (07-10-2011),tygaspower11 (08-13-2011),user- (07-07-2011),vampirekiller (07-07-2011),vaske007 (07-07-2011),VegetaOwns (08-09-2011),vetty (08-03-2011),vinson19998 (07-07-2011),vladone111 (08-20-2011),vodkapremo (07-06-2011),walaoaaa1234 (07-23-2011),walaowey (07-07-2011),wansoulboy (07-08-2011),watermalin (07-07-2011),waypointtv (08-28-2011),wcliming (07-08-2011),weixiong (07-07-2011),weiyuanwei (07-07-2011),wero11 (07-16-2011),wertoskiller (07-07-2011),wild_ShAdOw (08-06-2011),winnery (08-17-2013),WINSONLOH (07-07-2011),xalix (07-07-2011),xdajay (07-07-2011),xeljmj (08-19-2011),xiaocunfen (07-07-2011),Xiko (07-07-2011),xlaoxi (07-12-2011),xshoter3 (07-30-2013),xtimothex (08-17-2011),xu119005886 (08-24-2011),xxwtfxx (07-07-2011),yang0804 (07-08-2011),yanz1984 (07-07-2011),yesongming (07-16-2011),yodhy (07-07-2011),yoglesoul (08-02-2011),yokee_1 (08-08-2011),zai (08-22-2011),zek1017 (07-09-2011),zepherrap (07-29-2011),zeropower12 (07-10-2011),zikri64 (07-10-2011),ziolinz (08-14-2011),zoka123 (07-28-2011),zokz (07-07-2011),zul (07-30-2011),zulfto (07-09-2011),zyp224 (07-07-2011),zyyazx (07-07-2011),zzkupalxx (07-11-2011),zzznoob (08-10-2011),[HP]Unique (08-19-2011),\/onte908 (08-08-2011),^HacKeR^HeXoR^ (07-07-2011),{cRrOs_X} (07-07-2011),{G}enesist (07-07-2011)

  3. #496
    [HP]Unique's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    138
    Reputation
    10
    Thanks
    13
    its patched guys =\ give up.

  4. #497
    saddam_Hussien's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    my mama house
    Posts
    164
    Reputation
    10
    Thanks
    14
    My Mood
    Stressed

    Talking

    Quote Originally Posted by kkpzack View Post
    now still working?
    now its alredy patch dude......wait for new update and be patient,i know dBased will never quit doing his work,maybe now he busy with his life so just wait.....when he have free time he will release it just dont begging or spam herethanks

  5. #498
    Shafwan147's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    at MPGH's Forum
    Posts
    145
    Reputation
    26
    Thanks
    14
    My Mood
    Devilish
    i want see dBased face

  6. #499
    tattahwolf2's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    I Live In CAiro :D
    Posts
    86
    Reputation
    10
    Thanks
    46
    My Mood
    Blah
    wow u sure have been thanked alot :P
    Dumb TOld you MPGH is #1







    [img]https://www.danasof*****m/sig/Lolsjfgnnnfd.jpg[/img]


  7. #500
    ikhwan shah's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    3
    My Mood
    Cool
    thanks a lot dbased..its a beautiful hacks..i hope u can do this for new features..

    LOVE U DBASED

  8. #501
    missli5673861's Avatar
    Join Date
    Aug 2011
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0

    Smile WHY

    Why can not I download ah

    Why can not I download ah

  9. #502
    Zeused's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    1,599
    Reputation
    2
    Thanks
    68
    My Mood
    Relaxed
    Is dBased like THE ONLY ONE to release hacks in this section??

  10. #503
    bin2011's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    How not update!~

  11. #504
    xu119005886's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    太感谢你的 贡献咯

Page 34 of 34 FirstFirst ... 24323334