Page 1 of 4 123 ... LastLast
Results 1 to 15 of 53
  1. #1
    etwet3's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    54

    MW3 Hack (Aim Bot)

    I am the real owner of this and the person who posted this hack leeched it.. Read about it here https://www.mpgh.net/forum/404-call-d...ml#post5665725

    Hello,

    Well I've got a lot of other projects to complete so I am going to give my Java hack to the public also explaining about this hack.. This hack is 100% SCRIPTABLE for all the users.. Memory writers readers etc..

    What does the hack come with at the moment?

    AdvancedUAV - cardoow
    AimBot trigger (Will head shoot them when you press your F and if you get stuck press V)
    AutoKnife - Will knife anyone in knifing rage changing the view angels to the player boom knife.
    ThermalOverlay - cardoow
    ZeroRecoil..

    When the hack is running it will wait till the MW3 process has started.. Once the process has started you will get a UI displaying something like this.



    Once you've clicked what script you want press execute and the scripts WILL ONLY run when your in game.

    Skeleton of the script engine:
    Code:
    import com.sun.jna.Memory;
    
    import net.mw3.etewt3.handlers.MWPlayer;
    import net.mw3.etewt3.handlers.MemoryHack;
    import net.mw3.etewt3.script.ScriptEngine;
    import net.mw3.etewt3.utils.Constants;
    import net.mw3.etewt3.utils.Filter;
    import net.mw3.etewt3.utils.Vector;
    
    /**
     * @<a href="https://www.mpgh.net/forum/member.php?u=972379" target="_blank">Author</a> Mark
     * 
     */
    public class Test extends ScriptEngine {
    
    	@<a href="https://www.mpgh.net/forum/member.php?u=126421" target="_blank">override</a>
    	public int loop() {
    		return 5;
    	}
    
    	@<a href="https://www.mpgh.net/forum/member.php?u=126421" target="_blank">override</a>
    	public boolean onStart() {
    		return true;
    	}
    }

    Example of aim bot
    Code:
    import java.awt.AWTEvent;
    import java.awt.Dimension;
    import java.awt****bot;
    import java.awt.Toolkit;
    import java.awt.event.AWTEventListener;
    import java.awt.event.InputEvent;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    
    import net.mw3.etewt3.utils.Filter;
    import net.mw3.etewt3.utils.Vector;
    import com.sun.jna.Memory;
    
    import net.mw3.etewt3.WIN.User32;
    import net.mw3.etewt3.handlers.GameInput;
    import net.mw3.etewt3.handlers.MWPlayer;
    import net.mw3.etewt3.handlers.MemoryHack;
    import net.mw3.etewt3.handlers.WindowHandler;
    import net.mw3.etewt3.script.ScriptEngine;
    import net.mw3.etewt3.utils.Constants;
    
    public class Aimbot extends ScriptEngine {
    
    	public static Aimbot instance = null;
    	private double distance;
    
    	public Aimbot() {
    		instance = this;
    	}
    
    	@<a href="https://www.mpgh.net/forum/member.php?u=126421" target="_blank">override</a>
    	public int loop() throws Exception {
    		if (WindowHandler.user32.GetAsyncKeyState(User32.Keys  .V) << 16 != 0) {
    			MemoryHack.writeMemory(Constants.VIEWANGLEBUFFER, new float[] {
    					100, 100 }, 8);
    		}
    		if (WindowHandler.user32.GetAsyncKeyState(User32.Keys  .F) << 16 != 0) {
    
    			Robot robot = new Robot();
    			MWPlayer our = getLocalPlayer();
    			MWPlayer targetPlayer = getClosest();
    			if (targetPlayer != null) {
    				distance = (1 / targetPlayer.getDistance());
    				float dist = 4;
    				if (!our.isZoomed())
    					robot.mousePress(InputEvent.BUTTON3_MASK);
    				sleep(200);
    				for (int i = 0; i < 75; i++) {
    					if (targetPlayer != null)
    						if (targetPlayer.isValid()) {
    							dist = getDist(targetPlayer, our);
    							aimAt(targetPlayer, (distance * dist));
    							GameInput.setEvent(GameInput.InputType.Mouse,
    									InputEvent.BUTTON1_MASK);
    							sleep(20);
    							targetPlayer = getClosest();
    						}
    
    				}
    				robot.mouseRelease(InputEvent.BUTTON3_MASK);
    			}
    		}
    		return 50;
    	}
    
    	private MWPlayer getClosest() {
    		MWPlayer[] players = getAll(new Filter<MWPlayer>() {
    
    			@<a href="https://www.mpgh.net/forum/member.php?u=126421" target="_blank">override</a>
    			public boolean accept(MWPlayer player) {
    				if (!allForOne()
    						&& player.getTeam() != getLocalPlayer().getTeam()
    						&& player.isValid() || allForOne() && player.isValid()
    						&& player.index != localIndex()) {
    					return true;
    				}
    				return false;
    			}
    
    		});
    		MWPlayer targetPlayer = null;
    		for (MWPlayer player : players) {
    			if (player.index == getLocalPlayer().index || !player.isValid())
    				continue;
    			float[] angles = getAnglesTo(player);
    			double dist = Math.sqrt((angles[0] * angles[0])
    					+ (angles[1] * angles[1]));
    
    			if (dist < 20) {
    				if (targetPlayer == null) {
    					if (player.getDistance() < 100)
    						targetPlayer = player;
    				}
    				if (player.getDistance() < targetPlayer.getDistance())
    					targetPlayer = player;
    			}
    		}
    		return targetPlayer;
    	}
    
    	private int getDist(MWPlayer targetPlayer, MWPlayer our) {
    		if (targetPlayer.getViewAngles()[0] >= 62 && !targetPlayer.isProne()
    				&& !targetPlayer.isCrouched()) {
    			return (int) (targetPlayer.getViewAngles()[0]-our.getViewAngles()[0])-62;
    		} else if (targetPlayer.getViewAngles()[0] >= 28
    				&& targetPlayer.getViewAngles()[0] < 62
    				&& !targetPlayer.isProne() && !targetPlayer.isCrouched()) {
    			return (int) (targetPlayer.getViewAngles()[0]-our.getViewAngles()[0]) - 28;
    		} else {
    			if (our.isCrouched() && targetPlayer.isCrouched() || our.isProne()
    					&& targetPlayer.isProne())
    				return 6;
    			if (our.isStanding() && targetPlayer.isCrouched())
    				return 23;
    			if (our.isStanding() && targetPlayer.isProne())
    				return 65;
    			if (our.isCrouched() && targetPlayer.isStanding())
    				return -15;
    			if (our.isCrouched() && targetPlayer.isProne())
    				return 23;
    			if (our.isProne() && targetPlayer.isStanding())
    				return -56;
    			if (our.isProne() && targetPlayer.isCrouched())
    				return -29;
    			return 6;
    		}
    	}
    
    	@<a href="https://www.mpgh.net/forum/member.php?u=126421" target="_blank">override</a>
    	public boolean onStart() {
    		return true;
    	}
    
    	public float[] getAnglesTo(MWPlayer target) {
    		Memory viewAxisBuffer = MemoryHack.readMemory(Constants.REFDEF + 0x24,
    				36);
    		float[][] viewAxis = new float[3][3];
    		int index = 0;
    		for (int i = 0; i < 3; i++) {
    			viewAxis[i][0] = viewAxisBuffer.getFloat(index++ * 4);
    			viewAxis[i][1] = viewAxisBuffer.getFloat(index++ * 4);
    			viewAxis[i][2] = viewAxisBuffer.getFloat(index++ * 4);
    		}
    
    		float[] vector = Vector.vectorSubtract(target.getRawLocation(),
    				getLocalPlayer().getRawLocation());
    
    		vector = Vector.normalize(vector);
    
    		return new float[] {
    				(float) Vector.toDegree((float) Math.asin(Vector.dotProduct(
    						viewAxis[1], vector))),
    				(float) Vector.toDegree((float) -Math.asin(Vector.dotProduct(
    						viewAxis[2], vector))) };
    	}
    
    	public boolean aimAt(MWPlayer target, double verticalOffset) {
    		MWPlayer local = getLocalPlayer();
    		if (target == null || local == null)
    			return false;
    
    		Memory angleBuffer = MemoryHack
    				.readMemory(Constants.VIEWANGLEBUFFER, 8);
    
    		float[] angles = getAnglesTo(target);
    
    		angles[0] += angleBuffer.getFloat(4);
    		angles[1] += angleBuffer.getFloat(0) + verticalOffset;
    
    		MemoryHack.writeMemory(Constants.VIEWANGLEBUFFER, new float[] {
    				angles[1], angles[0] }, 8);
    		return true;
    	}
    }
    Javadocs: Generated Documentation (Untitled)
    In action:


    When I get more time I will make more features and functions into this hack..

    Love,
    Mark <3
    and run "Compile-scripts.bat"


    - Just a note, this DOES write to memory so you can get banned if you are not careful. Use at your own risk., master131.
    <b>Downloadable Files</b> Downloadable Files
    Last edited by master131; 01-15-2012 at 05:48 AM.

  2. The Following 53 Users Say Thank You to etwet3 For This Useful Post:

    1337posan (01-15-2012),Alps (11-26-2012),Anonymous159 (06-22-2012),appmich12321 (10-01-2012),blot3 (04-26-2012),Blu3_cam0 (01-25-2012),cooliocoolio (01-25-2012),DATSIX (05-06-2012),desmond_29 (06-11-2012),donovan S (11-21-2012),dum.mihai (10-13-2012),egmond (04-26-2012),fitzgeraldfitzy (09-24-2012),fofogogo23 (01-16-2012),Hello911 (11-21-2012),iku22 (10-01-2016),IM A PONY (04-25-2014),imedben (12-28-2012),ITAdanim (12-29-2015),iXtreme Luke (01-15-2012),jack_201090 (08-25-2012),jordy127 (07-06-2012),juliofer11 (04-28-2012),keremale (08-07-2012),killerusa27 (01-13-2013),locox30 (06-16-2012),lolosiolo (10-22-2012),Lordxv (01-15-2012),MacShow (11-22-2021),manuks (05-08-2012),manzero (08-11-2012),mattvaardt (10-10-2012),Myssan67 (02-02-2018),NikoBellic89 (10-03-2012),ninjas66 (10-08-2012),NrgStunter (09-29-2012),realowner (01-16-2012),rezonanz (07-24-2017),Samel11 (05-05-2012),samiasdfg (05-20-2012),skilledmancz (10-05-2012),soulenchanter (01-15-2014),Stormbringer45 (04-10-2013),Strekeos (01-15-2012),sturmhaube65 (01-15-2012),Swirly Twirl (11-17-2012),thankydieu (05-04-2012),unknown1fear (04-28-2012),viktorkettunen (08-27-2012),w1zd00m (01-15-2012),Warhead955 (05-08-2012),wildcat12 (12-08-2013),wwwlad (07-03-2012)

  3. #2
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,662
    My Mood
    Breezy
    /file approved

    Next time remember to add virus scans, I've done it this time for you.

    https://www.virustotal.com/file/cba3...is/1326615857/
    ProBotMW3.zip - Jotti's malware scan

    Please note, you require the Java SDK to compile your own scripts, the compiler is not included with the default installation (well I don't think it is).
    Last edited by master131; 01-15-2012 at 05:48 AM.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  4. The Following User Says Thank You to master131 For This Useful Post:

    rich40 (01-27-2012)

  5. #3
    Strekeos's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Istanbul
    Posts
    77
    Reputation
    13
    Thanks
    7
    My Mood
    Cool
    Admins please approve!

  6. #4
    HermitObserver's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    US
    Posts
    8
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by master131 View Post
    /file approved

    Next time remember to add virus scans, I've done it this time for you.

    https://www.virustotal.com/file/cba3...is/1326615857/
    ProBotMW3.zip - Jotti's malware scan

    Please note, you require the Java SDK to compile your own scripts, the compiler is not included with the default installation (well I don't think it is).
    EDIT: nevermind
    Last edited by HermitObserver; 01-15-2012 at 01:30 AM.

  7. #5
    Strekeos's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Istanbul
    Posts
    77
    Reputation
    13
    Thanks
    7
    My Mood
    Cool
    Thanks I hope it works.

  8. #6
    slipclick's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Helsinki,Finland
    Posts
    72
    Reputation
    10
    Thanks
    5
    My Mood
    Amused
    I quess sort of a COPY and PASTE style

  9. #7
    nomercy123456's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    0
    @etwet3
    could you maybe add a wh?... or just make a wh without aimbot... because aimbots gets detected really fast

  10. #8
    121314's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    4
    My Mood
    Bored
    how much time needs to get detected ?

  11. #9
    jsmog17's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    60
    Reputation
    10
    Thanks
    2
    My Mood
    Doh
    i saw this before.... still nice hack

  12. #10
    121314's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    4
    My Mood
    Bored
    aimbot don't work for me

  13. #11
    lolbie's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Netherlands
    Posts
    5,207
    Reputation
    288
    Thanks
    2,136
    My Mood
    Angelic
    Quote Originally Posted by jsmog17 View Post
    i saw this before.... still nice hack
    Yeah by a leecher

    this one thread is from the real maker of the hack
    I love it when people keep their agreements /sarcasm ftw

  14. #12
    etwet3's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    54
    I am working on all the bugs and etc on this hack today and making new features so stay tuned for a update


  15. #13
    iXtreme Luke's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    Earth
    Posts
    153
    Reputation
    10
    Thanks
    121
    Nice one


    VAC BANNED ? = Nope - 3 Years going strong!






  16. #14
    yeguzhu's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by etwet3 View Post
    I am working on all the bugs and etc on this hack today and making new features so stay tuned for a update

    looking forward for it! hope I can use it that time.

  17. #15
    slipclick's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Helsinki,Finland
    Posts
    72
    Reputation
    10
    Thanks
    5
    My Mood
    Amused
    ahh sorry i said copy and paste i didnt know that kinda own the hack or made it

Page 1 of 4 123 ... LastLast

Similar Threads

  1. how to fly hack, aim bot and knife hack ?
    By deviil0007 in forum Combat Arms Hack Requests
    Replies: 11
    Last Post: 06-29-2011, 08:26 AM
  2. [Solved] Can someone help me find a old working aim bot hack?
    By qqstory in forum CrossFire Help
    Replies: 5
    Last Post: 06-19-2011, 01:48 PM
  3. Aim Bot/Speed hack/FPS
    By kibanaruto2 in forum CrossFire Hacks & Cheats
    Replies: 4
    Last Post: 07-27-2009, 08:03 PM
  4. Auto or aim bot
    By aaronm in forum WarRock - International Hacks
    Replies: 4
    Last Post: 01-13-2006, 04:10 PM
  5. aim bots
    By nutter in forum General Game Hacking
    Replies: 6
    Last Post: 12-27-2005, 11:56 AM