Results 1 to 12 of 12
  1. #1
    quinnc12's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1
    My Mood
    Stressed

    Scorestreaks (B4 deleting this post mods read bottom)

    I need help some addresses for players 2-18's scorestreaks. Im not begging for hacks im simply asking if anyone has a copy of them also if you don't would anyone be open to help me find them by joining my game on steam.

    Now i did set this to [Disicussion] rather then [Help] so if that a makes a difference. The reason why i need this is to not beg someone else for hacks but im making something that i will release to the public when its done if you want a preview here it is i have everything but player 2-18 scorestreaks


    This was also inspired by Enstone's 1.07 memory editor for ps3 it is not longer in development so i want to continue something similar on PC
    Attached Thumbnails Attached Thumbnails
    1.png  

    Last edited by quinnc12; 08-20-2013 at 10:36 AM.

  2. #2
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,990
    My Mood
    Cheerful
    You don't need other people.
    Just do this:
    Code:
    yourSSAddress + (playerIndex - 1) * 57F8
    Thanks, Jorn.

  3. The Following 2 Users Say Thank You to Lovroman For This Useful Post:

    quinnc12 (08-21-2013),thijsduijker (08-20-2013)

  4. #3
    quinnc12's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1
    My Mood
    Stressed
    im kinda confused if i have my address of 1D7D8E8 how would i find player 2? Thanks for responding by the way

  5. #4
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,990
    My Mood
    Cheerful
    Quote Originally Posted by quinnc12 View Post
    im kinda confused if i have my address of 1D7D8E8 how would i find player 2? Thanks for responding by the way
    Your code:
    Code:
     1D7D8E8 + (2 - 1) * 57F8
    What actually happens:
    Code:
     1D7D8E8 + 1 * 57F8
     1D7D8E8 + 57F8
     1D830E0

  6. The Following User Says Thank You to Lovroman For This Useful Post:

    quinnc12 (08-21-2013)

  7. #5
    quinnc12's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1
    My Mood
    Stressed
    Thanks i will include you in the credits o btw that was the health value i was just testing it since i have all of the health values
    Last edited by quinnc12; 08-20-2013 at 01:40 PM.

  8. The Following User Says Thank You to quinnc12 For This Useful Post:

    Lovroman (08-20-2013)

  9. #6
    quinnc12's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1
    My Mood
    Stressed
    ok i havn't been on my computer so i asumbed this worked i tried it and it did not work or i did it wrong
    Health: 1D7EF68
    Ammo: 1F00ED0
    Scorestreak 1: 1F00ECC
    i found someone nice enough to keep getting scorestreaks shooting bullets etc.
    i came up with these adresses
    Health: 1D7F284
    Ammo: 1F066C8
    Scorestreak 1: 1F066C4
    please tell be another code to get dis

  10. #7
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,990
    My Mood
    Cheerful
    Quote Originally Posted by quinnc12 View Post
    ok i havn't been on my computer so i asumbed this worked i tried it and it did not work or i did it wrong
    Health: 1D7EF68
    Ammo: 1F00ED0
    Scorestreak 1: 1F00ECC
    i found someone nice enough to keep getting scorestreaks shooting bullets etc.
    i came up with these adresses
    Health: 1D7F284
    Ammo: 1F066C8
    Scorestreak 1: 1F066C4
    please tell be another code to get dis
    This works .
    1F00ED0 + 1 * 57F8 = 1F066C8

    57F8 works for every address except health address.

  11. #8
    MisterY's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    299
    Reputation
    138
    Thanks
    15,782
    I have tried in multiplayer and for the health address you have to add 31C.
    Example:
    The player 1 health address is 217EF68,
    Player 2 health= 217EF68+31C = 217F284

  12. #9
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,990
    My Mood
    Cheerful
    Quote Originally Posted by MisterY View Post
    I have tried in multiplayer and for the health address you have to add 31C.
    Example:
    The player 1 health address is 217EF68,
    Player 2 health= 217EF68+31C = 217F284
    Thanks, Mistery!
    I couldn't recall correct offset..

  13. #10
    quinnc12's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1
    My Mood
    Stressed
    Thanks but if I wanted to find player 3 would I do p2 plus 31c?

  14. #11
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,990
    My Mood
    Cheerful
    Quote Originally Posted by quinnc12 View Post
    Thanks but if I wanted to find player 3 would I do p2 plus 31c?
    Player 3
    Code:
    Ammo => 1F00ED0 + 2 * 57F8
    Health => 1D7EF68 + 2 * 31C
    Player 4
    Code:
    Ammo => 1F00ED0 + 3 * 57F8
    Health => 1D7EF68 + 3 * 31C
    Player 5
    Code:
    Ammo => 1F00ED0 + 4 * 57F8
    Health => 1D7EF68 + 4 * 31C
    Player 6
    Code:
    Ammo => 1F00ED0 + 5 * 57F8
    Health => 1D7EF68 + 5 * 31C
    etc.
    Last edited by Lovroman; 09-06-2013 at 11:33 PM.

  15. #12
    quinnc12's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1
    My Mood
    Stressed
    Thanks alot + rep to both of you

Similar Threads

  1. [WTS] delete this post
    By Elitefuzion in forum Buying Accounts/Keys/Items
    Replies: 0
    Last Post: 12-15-2012, 09:50 AM
  2. Before You Post a Mod! *Read This! (Noobs Only)
    By David in forum Combat Arms Mod Discussion
    Replies: 9
    Last Post: 09-07-2010, 08:42 PM
  3. This Thread Read only NO POSTING-Mods only!
    By Xm8Ghost in forum CrossFire Hacks & Cheats
    Replies: 15
    Last Post: 02-26-2010, 11:11 PM
  4. To all the noobs posting hacks: READ THIS
    By Pixie in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 07-30-2009, 02:27 AM