Looking for Immortality is a big world adventure RPG game with the theme of cultivating immortals. Some friends in the game may save and overwrite saves they want. If you are interested, you can take a look at how to restore long-lived files.
Note: Archive modifications may accidentally modify wrong values, causing bugs or function freezes, so it is recommended that you archive in advance.
Changsheng modified archive process
1. Go to the C drive and search for the "Looking for Changsheng" folder
Folder path: C/Users/Administrator/AppDate/LocalLow/yusuiInc
The folder path may be different, so it is recommended that you directly search for file A of Mi Changsheng.
2. Locate the archive location of the game "Seeking Immortality"
The ones starting with Avatar are the archives of everyone in the game, and 0-0 is the first one to "embark on the path to immortality".
The following 1-1 and 2-2 are also divided in this way.
3. After selecting the archive to be modified, open it with Notepad to see the data inside, and then modify it directly with Notepad.
Take Lingshi as an example
The code for the spirit stone is ".money", Ctrl+F searches for relevant codes in the archive, and then directly changes the following numbers.
After modification, just save and exit, and then read the game archive again.
In addition to spiritual stones, gender (male characters joining the galaxy) enlightenment points, qualifications, understanding, lifespan, spiritual roots, etc. can all be modified. Here, I will share with you the codes of these properties.
For items, directly search for the ID of the item and modify the subsequent quantity.
4. Codes for each attribute point
Gender: "Avatar0_0.Sex": , 1 is male, 2 is female.
Qualification: "Avatar0_0.ZiZhi":
Comprehension: "Avatar0_0.wuXin":
Divine Sense: "Avatar0_0._shengShi":
Escape speed: "Avatar0_0._dunSu":
Age: "Avatar0_0.age":
HP limit: "Avatar0_0._HP_Max":
ShouYuan: "Avatar0_0.shouYuan":
Enlightenment point: "Avatar0_0._WuDaoDian":
5. How to modify the skills of the Immortality Technique
Remove all the skills and techniques from your body in advance, otherwise the search code may go wrong.
Search code: "Avatar0_0.hasStaticSkillList.UUID.0":
Avatar0_0 is the archive location, which will change as the archive location changes.
Example:
"Avatar0_0.hasStaticSkillList.UUID.0":"ee62f1d00b7e44e9908080b8b49ed9c7","Avatar0_0.hasStaticSkillList.id.0":536,"Avatar0_0.hasStaticSkillList.level.0":3,"Avatar0_0.hasStaticSkillList.index.0":0, "Avatar0_0.hasStaticSkillList.Seid.0":{}
The number after the UUID, every time you add a mental method, remember to +1 this number
id.0":536,: Cultivation skill code, the corresponding skill of 536 is Wufu Forging Yuan Jue
level.0":3,:0 is the first skill, 3 means that the level of the skill is level 3, and the first skill in this archive has level 3.
{} is the segmentation of skills, and then comes the next skill.
Finally search, "Avatar3_0.hasStaticSkillList.Num": The following number is the total number of skills. Remember to modify it if you add new skills. If you don't modify it, the archive may be damaged.
Here I created a new archive
"Avatar3_1.hasStaticSkillList.UUID.0":"","Avatar3_1.hasStaticSkillList.id.0":501,"Avatar3_1.hasStaticSkillList.level.0":1,"Avatar3_1.hasStaticSkillList.index.0":0," Avatar3_1.hasStaticSkillList.Seid.0":{},
The save file I just created here comes with the Breathing Technique (501), and here I directly adjust the Manniu Body Protection Technique (529).
"Avatar3_1.hasStaticSkillList.UUID.0":"","Avatar3_1.hasStaticSkillList.id.0":529,"Avatar3_1.hasStaticSkillList.level.0":1,"Avatar3_1.hasStaticSkillList.index.0":0," Avatar3_1.hasStaticSkillList.Seid.0":{}
If it is not a replacement but an addition, then directly copy the entire code. After modifying the skill code, the UUID and ID must be +1, and finally the total number of skills must be +1.