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..
VAC status:may be detected using at your own risk
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.
EDIT:
Replace ZeroRecoil.java in 'scripts' with
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.Filter;
/**
* @author Mark
*
*/
public class ZeroRecoil extends ScriptEngine {
@Override
public int loop() {
MemoryHack.writeMemory(0x01063718+0x0044, new int[]{0,0,0}, 12);
return 5;
}
@Override
public boolean onStart() {
return true;
}
}
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;
/**
* @author Mark
*
*/
public class AdvancedUAV extends ScriptEngine {
private int value = -1;
@Override
public int loop() {
if(MemoryHack.readMemory(value + 0xC, 4).getInt(0) != 1)
MemoryHack.writeMemory(value + 0xC, 1, 4);
MemoryHack.writeMemory(0x8FF080 + 0x204, 1, 4);
return 5;
}
@Override
public boolean onStart() {
value = MemoryHack.readMemory(0x1C2C39C, 4).getInt(0);
MemoryHack.writeMemory(value + 0xC, 1, 4);
return true;
}
}






