Results 1 to 7 of 7
  1. #1
    Ravay's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0

    Exclamation Need Help For Black Ops 3 Memory Editing

    Hi I need help with with these offsets. I need a C++ code to change the value of these offsets in black ops 3. so can someone make a code and paste it here for me to use? I need to change the value of these offsets...here are the offsets.



    Prestige:
    0x38907E38 [Size= dword(32b) | Input= 0-9]
    (There Are 12 Prestiges total, 12th Being Master!)
    -----------------------------------------------------------------
    Rank:
    0x38907E58 [Size= dword(32b) | Input= 0-55]
    (Input Is At Times Correct, But Will Sometimes Not Be. Just Input "55" And You Will Be Fine!)

  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
    FYI Black Ops 3 is a 64 bit process and you posted 32 bit addresses...

  3. #3
    SilentWarp's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    161
    Reputation
    10
    Thanks
    909
    These can't be BO3 addresses, BO3 is 64x

  4. #4
    RoPMadM's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    __asm
    Posts
    226
    Reputation
    12
    Thanks
    251
    My Mood
    Cynical
    Quote Originally Posted by SilentWarp View Post
    These can't be BO3 addresses, BO3 is 64x
    @Hitokiri mentioned that 4 days ago

    Quote Originally Posted by Hitokiri~ View Post
    FYI Black Ops 3 is a 64 bit process and you posted 32 bit addresses...




    @Ravay Do you want a internal hack (just manipulate the value of the or external (just use WriteProcessMemory)
    Code:
    //internal
    
    DWORD dwAddress = 0x38907E38;
    DOWRD *pPrestige;
    pPrestige = (DWORD*)dwAddress;
    *pPrestige = 0; //Input = 0-9
    
    
    //external - you will need a windwos handle of BO3, just google how you get it.
    
    int iRank = 0; //Input 0-55
    DWORD dwRankSize = sizeof(iRank);
    WriteProcessMemory(hProcess, (LPVOID)0x38907E58, &iRank, dwRankSize, NULL)
    Last edited by RoPMadM; 10-09-2016 at 02:41 PM.

  5. #5
    Destiny's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Location
    -_-
    Posts
    669
    Reputation
    86
    Thanks
    887
    My Mood
    Devilish
    Quote Originally Posted by RoPMadM View Post


    @Hitokiri mentioned that 4 days ago



    @Ravay Do you want a internal hack (just manipulate the value of the or external (just use WriteProcessMemory)
    Code:
    //internal
    
    DWORD dwAddress = 0x38907E38;
    DOWRD *pPrestige;
    pPrestige = (DWORD*)dwAddress;
    *pPrestige = 0; //Input = 0-9
    
    
    //external - you will need a windwos handle of BO3, just google how you get it.
    
    int iRank = 0; //Input 0-55
    DWORD dwRankSize = sizeof(iRank);
    WriteProcessMemory(hProcess, (LPVOID)0x38907E58, &iRank, dwRankSize, NULL)
    Can you add me on Skype pls and help me I am a noob
    Skype: roei. Fetaya

  6. #6
    RoPMadM's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    __asm
    Posts
    226
    Reputation
    12
    Thanks
    251
    My Mood
    Cynical
    Quote Originally Posted by ironwsmroei View Post
    Can you add me on Skype pls and help me I am a noob
    Skype: roei. Fetaya
    No.
    Open a thread so even more people can help you.

  7. #7
    R3Dx666†'s Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Steam: MrTricklez
    Posts
    1,723
    Reputation
    141
    Thanks
    2,913
    My Mood
    Devilish
    Quote Originally Posted by Ravay View Post
    Black ops 3. so can someone make a code and paste it here for me to use?
    you should learn some hello world tuts before begging for sources

Similar Threads

  1. [WTB] Looking for Black Ops Mac Edition
    By GertrudeSilver in forum Buying Accounts/Keys/Items
    Replies: 2
    Last Post: 12-06-2013, 11:36 AM
  2. If you need help with Black Ops 2 i will help you!
    By TGTT in forum Call of Duty Black Ops 2 Help
    Replies: 0
    Last Post: 01-07-2013, 02:36 PM
  3. [Solved] NEED HELP FOR BALANCING THE MEMORY GUN MODZ
    By DEVILHUNTERXXXX in forum CrossFire Help
    Replies: 2
    Last Post: 04-21-2012, 11:37 PM
  4. Need help for black moon
    By account seller in forum Suggestions, Requests & General Help
    Replies: 0
    Last Post: 09-25-2011, 09:18 AM
  5. I need help with black ops on steam PC
    By AlternativeMW2 in forum Call of Duty Black Ops Help
    Replies: 7
    Last Post: 11-13-2010, 06:12 PM