Tutorial  Updated

How to edit Xenoblade Chronicles 2 - easy

Super Easy Xenoblade Chronicles 2 save editor

I Have windows XC2 Save editor for people who want to customize their save
Check it out here and github if you would like to contribute
Latest release


Things to be aware of:
Make sure you make a backup of your original save.
There can be bugs in just maxing out everything.
I recommend running template and looking threw it to understand the structure
also you can comment out values you don't want changed in the script with //


what you need
NEW UPDATED SCRIPT! x43x61x69 - thanks
check occasionally​
  1. Extract the XC2-Editor.zip
  2. backup your bf2savefile.sav
  3. copy into XC2-Editor
  4. run 010 editor
  5. open your save (bf2savefile.sav)
  6. click on run template -> select bf2savefile.1sc we downloaded from earlier. "
edit2.png
  1. click on run script -> select bf2savefile.bt
run script.png

Done !


Your output will look similar to this
output.png


You must have one of the item before it is Maxed out

Use your items and rerun
 

Attachments

  • XC2 Editor.zip
    5.8 KB · Views: 3,439
Last edited by Type_O_Dev,

Type_O_Dev

Developer
OP
Developer
Joined
Dec 12, 2017
Messages
683
Trophies
0
XP
1,472
Country
United States
quick question in the script what does each line in the items section represent in the game before I modify the script to decide what parts of the script I'll keep because even though some of them are clear on what they do some I don't know what they will do?

only run template the expand struct SDataDrivers Drivers 0 threw 2
under each driver you will find values for what you would like to change
you will do similar for blades under struct SDataBlades Blades 0 threw 5 or 6 would be blades that are threw main quest
Im sure there are more you will have to look at structure and find the setting you want to change.

You should be able to pickup how it works once your looking threw it.
 
Last edited by Type_O_Dev,

MasterJ360

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,803
Trophies
1
Age
35
XP
3,479
Country
United States
I just have a quick question say if I didn't want my driver's stats to be maxed out how would I disable that from the script? Everything else is awesome to have just dont want the drivers to be freakish powerful
 

Type_O_Dev

Developer
OP
Developer
Joined
Dec 12, 2017
Messages
683
Trophies
0
XP
1,472
Country
United States
I just have a quick question say if I didn't want my driver's stats to be maxed out how would I disable that from the script? Everything else is awesome to have just dont want the drivers to be freakish powerful

open script up an comment what you dont want enanble

Drivers.Driver.Level = BF2_DRIVER_STATS_LEVEL_MAX;
// Stats
Drivers.Driver.HpMax = BF2_DRIVER_STATS_HP_MAX;
Drivers.Driver.Strength = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.PowEther = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.Dex = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.Agility = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.Luck = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.PArmor = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.EArmor = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.CritRate = BF2_DRIVER_STATS_RATE_MAX;
Drivers.Driver.GuardRate = BF2_DRIVER_STATS_RATE_MAX;
Drivers.Driver.Exp = BF2_DRIVER_STATS_POINTS_MAX;
Drivers.Driver.BattleExp = BF2_DRIVER_STATS_POINTS_MAX;
Drivers.Driver.SkillPoints = BF2_DRIVER_STATS_POINTS_MAX;
Drivers.Driver.TotalSkillPoints = BF2_DRIVER_STATS_POINTS_MAX

so if you dont want max hp you would enter // infront of it:
// Drivers.Driver.HpMax = BF2_DRIVER_STATS_HP_MAX;
 
  • Like
Reactions: MasterJ360

MasterJ360

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,803
Trophies
1
Age
35
XP
3,479
Country
United States
open script up an comment what you dont want enanble

Drivers.Driver.Level = BF2_DRIVER_STATS_LEVEL_MAX;
// Stats
Drivers.Driver.HpMax = BF2_DRIVER_STATS_HP_MAX;
Drivers.Driver.Strength = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.PowEther = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.Dex = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.Agility = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.Luck = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.PArmor = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.EArmor = BF2_DRIVER_STATS_ABI_MAX;
Drivers.Driver.CritRate = BF2_DRIVER_STATS_RATE_MAX;
Drivers.Driver.GuardRate = BF2_DRIVER_STATS_RATE_MAX;
Drivers.Driver.Exp = BF2_DRIVER_STATS_POINTS_MAX;
Drivers.Driver.BattleExp = BF2_DRIVER_STATS_POINTS_MAX;
Drivers.Driver.SkillPoints = BF2_DRIVER_STATS_POINTS_MAX;
Drivers.Driver.TotalSkillPoints = BF2_DRIVER_STATS_POINTS_MAX

so if you dont want max hp you would enter // infront of it:
// Drivers.Driver.HpMax = BF2_DRIVER_STATS_HP_MAX;
Awesome ok thanks for this. Man I'm gonna enjoy new game + for sure now Only thing left for me to do is have at least 1 of each powerful wpn chip in the game
 
Last edited by MasterJ360,
  • Like
Reactions: Type_O_Dev

_______

 
Member
Joined
May 13, 2016
Messages
515
Trophies
0
XP
834
Country
Japan
Seems the updated script (0.1.0) fixed the affinity chart issue regarding the favorite items. Also lots of options are separate instead of one.

BTW I think you can lower your level in the hotel if you are in NG+.
 
  • Like
Reactions: Type_O_Dev

Type_O_Dev

Developer
OP
Developer
Joined
Dec 12, 2017
Messages
683
Trophies
0
XP
1,472
Country
United States
Seems the updated script (0.1.0) fixed the affinity chart issue regarding the favorite items. Also lots of options are separate instead of one.

BTW I think you can lower your level in the hotel if you are in NG+.

Thanks this will be a big help. I can confirm you can level down in NG+
 

MasterJ360

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,803
Trophies
1
Age
35
XP
3,479
Country
United States
I just noticed my Poppitbuster being completely removed from my save. Even when I inject my backup he's still not there
Him being DLC may have issues with editing saves, also I still couldn't prevent the script from maxing stats providing the // in front of the comments.
 
Last edited by MasterJ360,

_______

 
Member
Joined
May 13, 2016
Messages
515
Trophies
0
XP
834
Country
Japan
I just noticed my Poppitbuster being completely removed from my save. Even when I inject my backup he's still not there
Him being DLC may have issues with editing saves, also I still couldn't prevent the script from maxing stats providing the // in front of the comments.

It works on my latest version including DLC. Also, if you injected backup save and still not there, it’s not there already.
 

MasterJ360

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,803
Trophies
1
Age
35
XP
3,479
Country
United States
It works on my latest version including DLC. Also, if you injected backup save and still not there, it’s not there already.
Luckily I made 2 different backups. The save with max stat drivers still has him. Could be "Yall are nuts" injecting with bugs. I switched to the updated Checkpoint
 
Last edited by MasterJ360,

_______

 
Member
Joined
May 13, 2016
Messages
515
Trophies
0
XP
834
Country
Japan
Luckily I made 2 different backups. The save with max stat drivers still has him. Could be "Yall are nuts" injecting with bugs. I switched to the updated Checkpoint

Yea Checkpoint is more user friendly and easier to prevent misunderstandings, and also capable of make multiple backups in one shot.
 

MasterJ360

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,803
Trophies
1
Age
35
XP
3,479
Country
United States
Yea Checkpoint is more user friendly and easier to prevent misunderstandings, and also capable of make multiple backups in one shot.
Yeah its much more organized to the eye. Tho my only issue with the script is that I can't command it to not give the drivers max stats. I was told to do something like this but everyone is still getting 999 on everything
// Level
Drivers.Driver.Level = setLevel;

// Stats
// Drivers.Driver.HpMax = BF2_DRIVER_STATS_HP_MAX;
// Drivers.Driver.Strength = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.PowEther = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.Dex = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.Agility = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.Luck = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.PArmor = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.EArmor = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.CritRate = BF2_DRIVER_STATS_RATE_MAX;
// Drivers.Driver.GuardRate = BF2_DRIVER_STATS_RATE_MAX;
 

_______

 
Member
Joined
May 13, 2016
Messages
515
Trophies
0
XP
834
Country
Japan
Yeah its much more organized to the eye. Tho my only issue with the script is that I can't command it to not give the drivers max stats. I was told to do something like this but everyone is still getting 999 on everything
// Level
Drivers.Driver.Level = setLevel;

// Stats
// Drivers.Driver.HpMax = BF2_DRIVER_STATS_HP_MAX;
// Drivers.Driver.Strength = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.PowEther = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.Dex = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.Agility = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.Luck = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.PArmor = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.EArmor = BF2_DRIVER_STATS_ABI_MAX;
// Drivers.Driver.CritRate = BF2_DRIVER_STATS_RATE_MAX;
// Drivers.Driver.GuardRate = BF2_DRIVER_STATS_RATE_MAX;

Use the hotel to lower your level in the NG+.

The problem here is, change the level only won't automatically update other stats. Also if you already patch the stats, it won't lower it down unless you manually choose each value. Use the built-in feature for lowering level will be the best bet. Or set everything to 1 and use the hotel and the max exp to level up again.
 
Last edited by _______,
  • Like
Reactions: MasterJ360

MasterJ360

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,803
Trophies
1
Age
35
XP
3,479
Country
United States
Use the hotel to lower your level in the NG+.

The problem here is, change the level only won't automatically update other stats. Also if you already patch the stats, it won't lower it down unless you manually choose each value. Use the built-in feature for lowering level will be the best bet. Or set everything to 1 and use the hotel and the max exp to level up again.
Ah ok gotcha I see it on top of the script, maybe that was the outdated way of doings things. I'm about to fight the final boss just didn't want to beat the game like a god, but yeah NG+ would remedy this back to default stats
 

ForsakenJing

New Member
Newbie
Joined
Dec 31, 2017
Messages
2
Trophies
0
Age
40
XP
53
Country
United States
Got another problem. If you apply the max weapon points/arts cheats before having the entries for all the weapons, your weapon art slots will bug out when you later acquire the blade with that weapon. More specifically, your first 4 weapon arts will be completely blank and useless and while you can see the 5th weapon art, you can't sub it in.
 

MasterJ360

Well-Known Member
Member
Joined
Jan 10, 2016
Messages
2,803
Trophies
1
Age
35
XP
3,479
Country
United States
Got another problem. If you apply the max weapon points/arts cheats before having the entries for all the weapons, your weapon art slots will bug out when you later acquire the blade with that weapon. More specifically, your first 4 weapon arts will be completely blank and useless and while you can see the 5th weapon art, you can't sub it in.
Thanks for pointing that out looks like we will need to disable that until we have all of NG + blades
 
  • Like
Reactions: Type_O_Dev

theinternetnomad

Well-Known Member
Member
Joined
May 3, 2013
Messages
147
Trophies
0
Age
31
Location
Toronto, Ontario
XP
1,038
Country
Canada
I can't for the life of me figure out how to only get my exp/level and core count to 99. I don't want my stats, specifically HP to be maxed out as it breaks the game. Could someone kindly please edit my save so I can jump to 99, or have a shit ton of exp + some cores. will be really appreciated!
 

Attachments

  • backup.rar
    68.7 KB · Views: 181

Type_O_Dev

Developer
OP
Developer
Joined
Dec 12, 2017
Messages
683
Trophies
0
XP
1,472
Country
United States
I can't for the life of me figure out how to only get my exp/level and core count to 99. I don't want my stats, specifically HP to be maxed out as it breaks the game. Could someone kindly please edit my save so I can jump to 99, or have a shit ton of exp + some cores. will be really appreciated!

so what do you not want
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
  • SylverReZ @ SylverReZ:
    @ZeroT21, The Russians are after you lol.
  • K3Nv2 @ K3Nv2:
    Send me your ip I'll remotely fix it
  • ZeroT21 @ ZeroT21:
    @K3Nv2 my head needs fixing if I believe you
  • ZeroT21 @ ZeroT21:
    it's kinda fun watching it happen tho
  • K3Nv2 @ K3Nv2:
    It needs fixing for other things but your pc I can fix
  • ZeroT21 @ ZeroT21:
    over 300+ virus/trojians/worms after scanning, what did I do to deserve this attention lol
  • ZeroT21 @ ZeroT21:
    tho I find it funny when i receive other people's pc/laptops in this state
  • ZeroT21 @ ZeroT21:
    i wont be upgrading unless I cant run the games i want anymore
  • K3Nv2 @ K3Nv2:
    Spill water on it good excuse
  • ZeroT21 @ ZeroT21:
    @K3Nv2 that's like a valid option if someone else is paying for ya
  • K3Nv2 @ K3Nv2:
    Daddy's wallet
  • K3Nv2 @ K3Nv2:
    Ngl hogwarts legacy has good pooping music
  • OctoAori20 @ OctoAori20:
    That's uh-
  • OctoAori20 @ OctoAori20:
    That's certainly a Dairy Queen sign lmao
  • K3Nv2 @ K3Nv2:
    You should see his help wanted signs
  • OctoAori20 @ OctoAori20:
    Ugh, so many sweat-dipwads in Sploon 3 Anarchy mode tonight
  • OctoAori20 @ OctoAori20:
    I didn't know this was "Make Octo never finish Fresh Season 2024 Catalog in Splatoon 3" month, good god
  • Veho @ Veho:
    What's the point of "confirming" games you know will get released. Like Nintendo "confirming" a Zelda sequel. "We can't be sure Nintendo is working on a new Zelda game, or if a new Zelda game will ever be released, until they officially confirm it."
  • Veho @ Veho:
    "There is literally no way to know if they will ever release a new Zelda game, it's wild speculation until they officially confirm it."
  • K3Nv2 @ K3Nv2:
    Black ops was the lesser shitter line in cock a poopoo tbf just a way to let people know it hasn't died or going a different route I guess
  • K3Nv2 @ K3Nv2:
    $70 DLC per 6 months is what it turned into
    K3Nv2 @ K3Nv2: https://youtu.be/R28ZSY2Sc2A?si=H5Lb6PNkzMhAHO_P