Page 1 of 10 123 ... LastLast
Results 1 to 15 of 141
  1. #1
    xoreaxeax's Avatar
    Join Date
    Apr 2019
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    94

    Post Getting legacy with cheat engine

    3.0.0
    I also noticed something else a bit odd, the slot IDs will now have to be scanned for as an 8 Byte value. The game is using two identical DWORDs as the slot ID so you either need to replace the value twice in your tool, or in the case of cheat engine it's probably just easiest to use 8 Byte from now on (for finding and changing slots). If you don't understand what I'm saying you only need to browse the memory in cheat engine and look what happens when you change the value in game.

    NEW 8 BYTE IDS:
    Empty slot: 4797478470749
    Yellow flash: 4625679778869

    To begin, you will need to find the correct offset for the item slot of the character you want to edit. This is because the script uses the placing of this to calculate the location of the other offsets. I'll give a rough explanation as to how I find the item slot offset. (1337 h4x0rs can skip this part)

    • First you should scan for the value of the empty item slot. This changes sometimes between updates but currently it should be 961. You should find a lot of results so we need to narrow these down a bit to make our life easier.
    • Now you want to equip an item and rescan for this new value. The value of a yellow flashlight is currently 924, so if you have one you can do that. Otherwise you should select the 'Changed Value' option for the scan type. Two scans should be enough if you are using exact values, but if you don't know the value of the item you are equipping you may have to repeat the process a few more times. You should be left with a few addresses, you can add these to the address list.
    • We are nearly done now, in order to find the correct offset you can just lock the addresses one by one, change the item and close and open the item selection menu. If it sticks, then that is the correct offset for that character.

    If you are looking to get legacy on killer then you should work out the offering offset instead. You will also need to use the killer script instead of the survivor script.
    Now onto the more interesting part: using this offset we just found to work out the level, prestige and prestige date offsets. Navigate to the table menu in cheat engine and select the 'Show Cheat Table Lua Script' option. Copy the script below, and paste it into the box that appears.

    Survivor:
    Code:
    itemOffset = 0x???
    
    level = getAddressList().createMemoryRecord()
    level.setAddress(string.format("%x", itemOffset - 0x60))
    level.setDescription("Level")
    level.Type = 0
    
    prestige = getAddressList().createMemoryRecord()
    prestige.setAddress(string.format("%x", itemOffset - 0x5C))
    prestige.setDescription("Prestige")
    prestige.Type = 0
    
    for i=0,prestige.getValue()-1,1
    do
    	local dateOffset = readPointer(itemOffset - 0x50) + i*8
    	date = getAddressList().createMemoryRecord()
    	date.setAddress(string.format("%x", dateOffset))
    	date.setDescription("Date " .. i+1)
    	date.Type = 3
    	date.appendToEntry(prestige)
    end
    Killer:
    Code:
    offeringOffset = 0x???
    
    level = getAddressList().createMemoryRecord()
    level.setAddress(string.format("%x", offeringOffset - 0xE8))
    level.setDescription("Level")
    level.Type = 0
    
    prestige = getAddressList().createMemoryRecord()
    prestige.setAddress(string.format("%x", offeringOffset - 0xE4))
    prestige.setDescription("Prestige")
    prestige.Type = 0
    
    for i=0,prestige.getValue()-1,1
    do
    	local dateOffset = readPointer(offeringOffset - 0xD8) + i*8
    	date = getAddressList().createMemoryRecord()
    	date.setAddress(string.format("%x", dateOffset))
    	date.setDescription("Date " .. i+1)
    	date.Type = 3
    	date.appendToEntry(prestige)
    end
    Don't execute it just yet, you should copy the offset you found earlier and change the first line of the script to include it. Note that you will need to keep the 0x prefix otherwise the script will probably give you an error. In my case, the first line looked like this:

    Code:
    itemOffset = 0x1FD9F7D3498
    Now you can safely run the script. You should end up with something that looks something along the lines of this:



    Note that you should first get the character to the prestige you want before attempting to change any dates. You will have to rerun the script in the event that the character is not already max prestige.


    You are probably wondering at this point how you are supposed to edit the dates. They are not in the typical ["0001-01-01T00:00:00.000Z"] format that we are used to. That's because the game converts this value to one it can process easier (FDateTime). In case you are interested, you can read about how the game implements this here: https://api.unrealengine.com/INT/API...ime/index.html

    If you are looking to get legacy on any character apart from Nea/Nurse then the process is not hard at all. You should simply change the three values to 0, as the game didn't used to record prestige dates back then. However things get a little more complicated if you are looking to get legacy on Nea or Nurse as you will have to work out legit values for them if you want your account to even stand a chance of not getting banned. In case you didn't read the above link (shame on you) the time values are stored in ticks of 0.1 microseconds (= 100 nanoseconds) since January 1, 0001. Keep reading for some useful information on how to go about creating these values.

    • The values should be somewhere between 636075936000000000 and 636155424000000000
    • The number should be 18 digits long, no more no less (unless of course you are setting it to 0)
    • This website may help you out (note that it is in seconds so you will have to do some additional calculations): https://www.epochconverter.com/seconds-days-since-y0#s1. Be sure to use the 'Seconds Since 0001-01-01 AD' calculator.


    Finally, I will quickly describe how to unlock legacy temporarily. This method does not edit your save and will reset your legacy when you restart your game. It's very simple, you're going to want to do a UTF-16 string search for "2016-11-24" (without the quotes). Then once the scan has finished, change all the values found to a date in the future.
    Last edited by T-800; 07-23-2019 at 09:28 PM.

  2. The Following 11 Users Say Thank You to xoreaxeax For This Useful Post:

    916813410 (03-17-2020),AK114 (04-13-2019),beansrreal (04-11-2019),Bo0sted (04-12-2019),CalciumK (04-12-2019),Cheburator1337 (05-16-2019),DasJens (04-12-2019),Expiker21 (04-12-2019),MwB_HaXz (05-04-2019),paintrain000 (04-14-2019),SECRET2ASSASSIN (04-12-2019)

  3. #2
    beansrreal's Avatar
    Join Date
    Sep 2016
    Gender
    male
    Posts
    73
    Reputation
    8
    Thanks
    54
    My Mood
    Angelic
    This is very useful if you have a bypass. Thanks for the tutorial!

  4. #3
    SECRET2ASSASSIN's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Lurking
    very nice may use this eventually.

  5. #4
    cardiosek069's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    0
    will anyone help in getting it?

  6. #5
    @AEL's Avatar
    Join Date
    Jan 2018
    Gender
    male
    Posts
    103
    Reputation
    10
    Thanks
    2
    My Mood
    Angelic
    can u show u s the way in video im curious ?

  7. #6
    thomaslkm's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    1
    Thank for the tutorial !

  8. #7
    Expiker21's Avatar
    Join Date
    Feb 2016
    Gender
    male
    Posts
    245
    Reputation
    10
    Thanks
    4,523
    My Mood
    Asleep
    Extremely well prepared tutorial, good job man.

  9. #8
    tvojematka's Avatar
    Join Date
    Feb 2019
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Hey man could you please make a video tutorial. Im to stupid to and idk how this works. But I would love to know how I can do it.

    - - - Updated - - -

    Could you make an video tutorial please? Im too stupid and dont know how to do it.

  10. #9
    alinus2012's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    103
    Reputation
    10
    Thanks
    4
    My Mood
    Amazed
    Video please

  11. #10
    CalciumK's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    191
    Reputation
    10
    Thanks
    15
    My Mood
    Lurking
    Thanks TS for sharing!

  12. #11
    DasJens's Avatar
    Join Date
    Feb 2016
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    12
    Nice one! Thank you.

  13. #12
    Bo0sted's Avatar
    Join Date
    Jan 2018
    Gender
    male
    Posts
    311
    Reputation
    18
    Thanks
    128
    My Mood
    Relaxed
    I can confirm the script doesn't work. The value for the empty item slot is still valid

  14. #13
    Dieguardian's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    1
    My Mood
    Fine
    If someone will make a video will be great, ty

  15. #14
    xoreaxeax's Avatar
    Join Date
    Apr 2019
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    94
    Quote Originally Posted by Bo0sted View Post
    I can confirm the script doesn't work. The value for the empty item slot is still valid
    I am happy to help you find the new struct, if you could send me your disc0rd or something that would be great

  16. #15
    isrita22's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    are you going to upload video?

Page 1 of 10 123 ... LastLast

Similar Threads

  1. Can i get banned for modifying bloodpoints with cheat engine?
    By AWESOME^RICH in forum Dead by Daylight Discussion & Help
    Replies: 17
    Last Post: 01-05-2019, 05:12 AM
  2. [Help] Get entity base with cheat engine or ollydbg
    By gmamafilms in forum Counter-Strike 2 Coding & Resources
    Replies: 0
    Last Post: 05-13-2017, 05:45 PM
  3. [Unresolved] someone know if i can get a dlc guns with cheat engine
    By armydude576 in forum Call of Duty: Black Ops 3 Help
    Replies: 2
    Last Post: 11-22-2016, 08:14 AM
  4. need help with cheat engine hacks for u to tell me including amazing bypasser
    By george567 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 07-01-2007, 12:43 PM
  5. How To Get Hacks With Cheat Engine 5.3?
    By naomelembro14 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 02-20-2007, 01:26 AM