Results 1 to 4 of 4
  1. #1
    aresdGHERhgerdherhrh's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    107
    Reputation
    30
    Thanks
    521

    MW3 Unable To Write To Jump Height Address?

    On MW3 I decided to make a jump height, speed and gravity changer to host infected lobbies, this seemed simple enough and I got gravity and speed working but when I use my tool to change the jump height value it just won't change. I can change the value with cheat engine and server controls and the method I'm using to write the float value works for other addresses but not for jump height or addresses around that area in the memory. Anybody else know how to fix this?

    I am using Jorndels memory class and here is the relevant code:

    Code:
    private void WriteF(int Address, float Value)
            {
                byte[] Buffer = BitConverter.GetBytes(Value);
                IntPtr Zero = IntPtr.Zero;
                WriteProcessMemory(pHandel, (IntPtr)Address, Buffer, (UInt32)Buffer.Length, out Zero);
            }
    
    
    
    public void WriteFloat(int Address, float Value)
            {
                WriteF(Address, Value);
            }
    
    
    
    private void button1_Click(object sender, EventArgs e)
            {
                if (Process_Handle("iw5mp"))
                {
                    WriteFloat(0x00871508, Convert.ToSingle(numericUpDown1.Value));
                }
            }
    Thanks in advance c:

  2. #2
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    Code:
    [DllImport("kernel32.dll", SetLastError = true)]
    static extern bool VirtualProtect(IntPtr lpAddress, uint dwSize, uint flNewProtect, out uint lpflOldProtect);
    
    // ...
    VirtualProtect(IntPtr(0x00871508), 4, 0x40, outPtr );
    WriteFloat(0x00871508, Convert.ToSingle(numericUpDown1.Value))

  3. #3
    aresdGHERhgerdherhrh's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    107
    Reputation
    30
    Thanks
    521
    Cheers I'll give that a go c:

  4. #4
    aresdGHERhgerdherhrh's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    107
    Reputation
    30
    Thanks
    521
    Getting errors for IntPtr and OutPtr.

Similar Threads

  1. Jump Height Address V1.0
    By rkaf in forum Call of Duty Modern Warfare 3 Help
    Replies: 9
    Last Post: 11-16-2011, 05:04 AM
  2. [Solved]How to change jump height of a single team?
    By Lemon30 in forum Call of Duty Modern Warfare 2 Help
    Replies: 10
    Last Post: 08-31-2010, 09:16 PM
  3. Jump Height / XP Gain
    By kbhawkman in forum Call of Duty Modern Warfare 2 Help
    Replies: 4
    Last Post: 08-22-2010, 06:48 PM
  4. [Question] Only allow jump height for self?
    By Neekokeen in forum Call of Duty Modern Warfare 2 Help
    Replies: 8
    Last Post: 06-24-2010, 10:10 PM
  5. Cannot find height address
    By SoulRemover in forum WarRock - International Hacks
    Replies: 2
    Last Post: 04-26-2007, 12:43 AM

Tags for this Thread