Post: [Release] MW3 1.24 Auto Drop Shot, Low Friction and More Offsets + [C# Examples]
07-02-2013, 07:59 PM #1
nay1995
The Master
(adsbygoogle = window.adsbygoogle || []).push({}); Well after my tool release there's no need for me to keep these behind closed doors all the codes below were found by me, but the majority of them were found before on 1.23, so without these offsets i would probably not of found them, Low friction and auto drop shot were my findings (Just need to state that).

Anyway...

Auto drop shot:
Offset - 0x0110a28d - Change to 54

C# Example:

public uint Dshot(uint client)
{
return (0x0110a28d + (client * 0x3980));
}


How to use:
public static byte[] Autoon = new byte[] { 0x54 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, Dshot(0), Autoon);


Low Friction:
Offset - 0x0110a28e - Change to 01

C# Example:

public uint LowFric(uint client)
{
return (0x0110a28e + (client * 0x3980));
}


How to use:
public static byte[] bytes = new byte[] { 0x01 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, Dshot(0), bytes);


The rest i will just give you the offsets, i'm sure you can figure out how to implement them into your programs from the previous examples.

The below offsets, were found on 1.23, iv'e just found them for 1.24, without the release of the offsets for 1.23 i probably wouldn't of found them for 1.24! so credit to the original finders!

    
UAV Always On:
Offset - 0x18db8c4 - Change to 01

Draw Gun:
Offset - 0x18d5308 - Change to 01

Compass Size:
Offset - 0x18d8e00 - Change to 43FF for big compass, 45FF for small compass

Black and White Vision (i know you can just use send serve command, but still :ySmile
Offset - 0x18c66a0 - Change to 5000

Inverted Vision (i know again useless but still :ySmile
Offset - 0x018c81b8, 0x018c8240, 0x018c84a4 - Change all to 01

// My findings below

Disable Sprinting:
Offset - 0x0110a28e - Change to 0F

Now i was looking at some dex menus and i saw loads of people had spraying ac130's so i went on a mission to find out how and this is how:
Offset - 0x0110A6cd - Change to FFFFFF (change after reloading sign has gone)


This is all for now, i hope you enjoy

credits to original finders of 1.23 offsets, without them the majority of these codes would not have been discovered!

The following 12 users say thank you to nay1995 for this useful post:

-JM-, Ansity., ImAzazel, Mango_Knife, MrKiller261, O-H, SnaY, Sticky, worrorfight, xBeaTzMoDz
07-02-2013, 08:16 PM #2
I need help for c# Walking AC130 help
07-02-2013, 08:22 PM #3
nay1995
The Master
Originally posted by raek View Post
I need help for c# Walking AC130 help


its easy all the offsets you need are in the offsets post which is a sticky in this section.
07-02-2013, 08:42 PM #4
Yea but i freeze give me the c# for copy and paste Please Winky Winky
07-02-2013, 09:00 PM #5
Originally posted by nay1995 View Post
Well after my tool release there's no need for me to keep these behind closed doors all the codes below were found by me, but the majority of them were found before on 1.23, so without these offsets i would probably not of found them, Low friction and auto drop shot were my findings (Just need to state that).

Anyway...

Auto drop shot:
Offset - 0x0110a28d - Change to 54

C# Example:

public uint Dshot(uint client)
{
return (0x0110a28d + (client * 0x3980));
}


How to use:
public static byte[] Autoon = new byte[] { 0x54 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, Dshot(0), Autoon);


Low Friction:
Offset - 0x0110a28e - Change to 01

C# Example:

public uint LowFric(uint client)
{
return (0x0110a28e + (client * 0x3980));
}


How to use:
public static byte[] bytes = new byte[] { 0x01 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, Dshot(0), bytes);


The rest i will just give you the offsets, i'm sure you can figure out how to implement them into your programs from the previous examples.

The below offsets, were found on 1.23, iv'e just found them for 1.24, without the release of the offsets for 1.23 i probably wouldn't of found them for 1.24! so credit to the original finders!

    
UAV Always On:
Offset - 0x18db8c4 - Change to 01

Draw Gun:
Offset - 0x18d5308 - Change to 01

Compass Size:
Offset - 0x18d8e00 - Change to 43FF for big compass, 45FF for small compass

Black and White Vision (i know you can just use send serve command, but still :ySmile
Offset - 0x18c66a0 - Change to 5000

Inverted Vision (i know again useless but still :ySmile
Offset - 0x018c81b8, 0x018c8240, 0x018c84a4 - Change all to 01

// My findings below

Disable Sprinting:
Offset - 0x0110a28e - Change to 0F

Now i was looking at some dex menus and i saw loads of people had spraying ac130's so i went on a mission to find out how and this is how:
Offset - 0x0110A6cd - Change to FFFFFF (change after reloading sign has gone)


This is all for now, i hope you enjoy

credits to original finders of 1.23 offsets, without them the majority of these codes would not have been discovered!


if you change the 10 in this offset ( 0x0110a28d ) to 14 you'll be EMP'ed (tested in private match idk if it works online)
07-02-2013, 09:02 PM #6
nay1995
The Master
Originally posted by goon View Post
if you change the 10 in this offset ( 0x0110a28d ) to 14 you'll be EMP'ed (tested in private match idk if it works online)


yh theres many more things you can do with that offset as well, such as disable stances etc.
07-02-2013, 09:06 PM #7
Originally posted by nay1995 View Post
yh theres many more things you can do with that offset as well, such as disable stances etc.

how would i do that for all clients (like what would i put in the hex calculator)
07-02-2013, 09:09 PM #8
nay1995
The Master
Originally posted by goon View Post
how would i do that for all clients (like what would i put in the hex calculator)


not calculators needed just do this
    
public uint EMP(uint client)
{
return (0x0110a28d + (client * 0x3980));
}


then to enable put this somewhere:
    
public static byte[] bytess = new byte[] { 0x10 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, EMP(clientID_here), bytess);
07-02-2013, 09:14 PM #9
Originally posted by nay1995 View Post
not calculators needed just do this
    
public uint EMP(uint client)
{
return (0x0110a28d + (client * 0x3980));
}


then to enable put this somewhere:
    
public static byte[] bytess = new byte[] { 0x10 };
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, EMP(clientID_here), bytess);


i have a really shitty computer and i cannot install visual studio . whats another program i can use to code c# . and thanks love the menu im gonna try it now
07-02-2013, 10:46 PM #10
MoTmrD
Banned
Please Nay h love you god job man i want show claint black ops 2

The following user thanked MoTmrD for this useful post:

nay1995

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo