Re: RE6SE: Resident Evil 6 Save Editor v1.2
Quote:
Originally Posted by
PUR3 RAF3X
Not many Dev here share infos with me this is why the Tool need more time. Maybe you want share something with me :) I need the Checksum info
Checksum is stored at 0xd008;
Here is how I do it:
Code:
CHECKSUM_START= 0xd010;
CHECKSUM_END= 0x12fff;
int calcChecksum(){
int val = 0;
for (int i = CHECKSUM_START; i <= CHECKSUM_END; i++){
val += fileDat[i] << (24 - (i & 3) * 8);
}
return val;
}
Quote:
Originally Posted by
PUR3 RAF3X
@Guillian with the skills your way not 100% right.
Ok the skills use more then the value 3 for purchased.
0 = hidden
1= unlocked
2= no idea
3= purchased
From my notes:
bit 0: Available / Not available
bit 1: Purchased / Not purchased
Well, as you can see my tool is quite simple. The "All skill" button just give you all skills ^^!
Of course, it can be done as you said. And probably it is a better way of doing it.
Your editor looks great. I hope you translate it to English (or Spanish ^^!)
Re: RE6SE: Resident Evil 6 Save Editor v1.0
@Guillian Thanks for the lastest update it works great :)
@PUR3 RAF3X wow that looks awesome.
Would be cool if you both could work together on the tool to further expand it
Re: RE6SE: Resident Evil 6 Save Editor v1.3
Downloading and cant wait to have some fun thanks Guillian for the editor!
Re: RE6SE: Resident Evil 6 Save Editor v1.0
Re: RE6SE: Resident Evil 6 Save Editor v1.0
Game is much better with this tool. Definitely helps out with the "Shoot this enemy 500 times with a shotgun and do nothing, but shot them in a cut scene with one pistol round and they die." crap.
Re: RE6SE: Resident Evil 6 Save Editor v1.0
How to custom with grenade. I tried custom flashbang grenade with Leon and Helene but nothing happen. Please help me. Thanks
Re: RE6SE: Resident Evil 6 Save Editor v1.0
Thanks Guillian!! When you need all Skill ID`s I have this + the Campaign and Merceneries slots location. Yes I work atm on the last step English translation then I release the tool ;)
Re: RE6SE: Resident Evil 6 Save Editor v1.0
Quote:
Originally Posted by
PUR3 RAF3X
Thanks Guillian!! When you need all Skill ID`s I have this + the Campaign and Merceneries slots location. Yes I work atm on the last step English translation then I release the tool ;)
Thanks. I already have that information.
I got the skills IDs and names when I searched the trainig skill.
Also found the slots for putting in there the training skill.
I'm looking forward for your tool.