Posted: Wed Nov 13, 2019 11:16 pm Post subject: Max level problem
Hello, I recently installed a game and was messing around with it when i accidentaly changed my level value to max, and then being the dumb person i am, closed the window without a backup save or saving the values, and now im stuck with everyone of my characters being max level and its breaking the game. Is there any way i can undo this or find the value again?
If you can find the level of some other character in the game, code that accesses that value might also access the values you want to find.
Maybe you can get lucky and the character's level will be stored in the same structure as some other attribute (use dissect data structure).
A value related to level (e.g. exp) might be near the level in memory or in code.
I guess you could search for it again and go through the foundlist one by one, but starting over in the game might be faster if the max level isn't that unique. _________________
I don't know where I'm going, but I'll figure it out when I get there.
Do you think if I changed all the values that had the same one as the value I was looking for, I could change the one I want just by chance? Btw which type of value is most likely for a level/level?
You found it once before, so you should already know what type it is.
I wouldn't recommend changing all of them at random since that's a good way to crash the game quickly. But that also depends on how many false positives there are. If there's at least as many desired values as false positives (e.g. 20/30 values are ones you want), changing them one by one until you get them all (and undoing those that aren't relevant) is a completely viable strategy. _________________
I don't know where I'm going, but I'll figure it out when I get there.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum