Log in

View Full Version : [Release] RE6 Editor (by PUR3 RAF3X)



PUR3 RAF3X
10-26-2012, 09:57 PM
Support:

All Skills(Advanced)
slot 1-8 support

All Unlocks
All characters and costumes
Unlock Leon Collection only(not selected)
Unlock Chris Collection only(not selected)
Unlock Jake Collection only(not selected)
Unlock Ada Collection only(not selected)
Dog Tags
Unlock all Template only
Unlock all Emblem only
Unlock all Title only


All Stats(Advanced)
Profile
Weapons
Enemies
Medals
Extras
Campaigns rank mod(advanced)

All Skill points

Game options

German/English Language Support



This Tool need Netframework 4
Win32/64 bit Support

How it work:

Open your RE6 savedata.bin
Mod what you want and click Save
Close the Tool and your Savedata ready for use



Update: Version 1.1.0.0
Fix the Checksum Thanks to feudalnate

Update: Version 1.1.1.0
Add Backup function
Fix unlocks thanks Guillian for report the bug

Update: Version 1.2.0.0
Add Game options
Fix Medals names thanks Dmas for report the bug


Update: Version 1.2.1.0
Fix Enemies thanks Nastyweasel for report the bug

Version 1.2.1.0 updated
Fix 32bit support thanks to all reporter

Update: Version 1.2.2.0
Show your Serpent Emblems found
Unlock Leon Collection only(not selected)
Unlock Chris Collection only(not selected)
Unlock Jake Collection only(not selected)
Unlock Ada Collection only(not selected)
Dog Tags
Unlock all Template only
Unlock all Emblem only

Update: Version 1.3.0.0
Add Rehash & Resign

Update: Version 1.3.1.0
Add Unlock "Dog Tags" Title
Fix bug mercenary stats thanks mvpBLAZE for report the bug

Update: Version 1.3.2.0
Fix bug campaign time and rank thanks michmaster for report the bug





Thanks to feudalnate for PackageIO
Thanks to PureIso and Jappi88 for ISOlib
Thanks to Guillian for help



100441005110049100521005010048100471004610045

CloudStrife7x
10-26-2012, 10:00 PM
great work on this editor PUR3 RAF3X :D

XajNyne
10-26-2012, 10:34 PM
Very nice work on the editor. Thanks.

kellzclub
10-27-2012, 12:04 AM
Great editor PUR3 RAF3X keep up the great work as always

cklalfred
10-27-2012, 02:47 AM
Another nice editor on RE6. Keep up the work \o/

I C0z I
10-27-2012, 03:36 AM
nice work as always :029:

Aussie-Kat
10-27-2012, 04:03 AM
Is there a way to switch characters up? Example use Sherry and Helena as a team in Leon's story.

alexrighi
10-27-2012, 05:49 AM
can some1 PLEASE mod mine, really. I've tried like 20 times, 4 or 5 diff resigners and no good; either damaged or not found file



only max out the skill points and it should be good

THANKS!!

----------

nevermind, got it working, it was the checksum :(

edu_pt
10-27-2012, 07:37 AM
Here it is the ultimate re6 mod tool, great job PUR3. Thanks.

AzaiNagamasa
10-27-2012, 08:49 AM
Good work PUR3 RAF3X.
Will their be a way to make a skill tree have more then 3 supports working at the same time?

PUR3 RAF3X
10-27-2012, 09:15 AM
Good work PUR3 RAF3X.
Will their be a way to make a skill tree have more then 3 supports working at the same time?

No I found no way doing this or choose more then 1 slot.

feudalnate
10-27-2012, 12:32 PM
Here's the hash algo if that's all you needed. Also, I'm not certain which language you write in but either function will work with the extracted data just the same

**Read/write hash value as big endian uint32 (not int32, my mistake)
0x0 = Magic, 0x4 = Length, 0x8 = Hash



Function ComputeRE6Hash(ByRef Data As Byte()) As UInt32
If Data Is Nothing OrElse Data.Length = 0 Then Throw New NullReferenceException("Bad data")
Dim Magic As Byte() = New Byte() {&H12, 7, &H18, 0} '//Magic bytes @ 0x0
For i As Int32 = 0 To 4 - 1 '//Check magic
If Magic(i) <> Data(i) Then Throw New Exception("Invalid RE6 data")
Next
Dim Buffer(4 - 1) As Byte, Length As Int32, Hash As Int64 '//Declare Hash as int64 to prevent overflows/underflows
Array.Copy(Data, 4, Buffer, 0, 4) '//Data length int @ 0x4
Array.Reverse(Buffer)
Length = BitConverter.ToInt32(Buffer, 0)
For i As Int32 = &HC To Length - 1 '//Begin calculating from 0xC for specified length
Hash += ((Data(i) And &HFF) << (24 - ((i And 3) * 8)))
Next
Do While Hash > &H100000000L
Hash -= &H100000000L
Loop
Erase Buffer
Return CUInt(Hash) '//Cast to uint
End Function




uint ComputeRE6Hash(ref byte[] Data)
{
if(Data == null || Data.Length == 0) throw new NullReferenceException("Bad data");
byte[] Magic = new byte[] {0x12, 7, 0x18, 0}; //Magic bytes @ 0x0
for(int i = 0; i < 4; i++) //Check magic
{
if(Magic[i] != Data[i]) throw new Exception("Invalid RE6 data");
}
byte[] Buffer = new byte[4]; int Length = 0; long Hash = 0; //Declare Hash as int64 to prevent overflows/underflows
Array.Copy(Data, 4, Buffer, 0, 4); //Data length int @ 0x4
Array.Reverse(Buffer);
Length = BitConverter.ToInt32(Buffer, 0);
for(int i = 0xC; i < Length; i++) //Begin calculating from 0xC for specified length
{
Hash += ((Data[i] & 0xFF) << (24 - ((i & 3) * 8)));
}
while (Hash > 0x100000000)
{
Hash -= 0x100000000;
}
Array.Clear(Buffer, 0, 4);
return (uint)Hash; //Cast to uint
}

PUR3 RAF3X
10-27-2012, 01:03 PM
Thanks I need the vb code. And I try this later but Im sure your code work allways ;)

EDIT: You are the best Mr.

Only one prob your code have but it's no prob fix this.

Return Cint(hash) make probs but without Cint work well ;)

Tool Updated!

bx don
10-27-2012, 07:55 PM
ive tried alot editors but none have worked for ammo hopefully this one will work for me thanks...

CrookedGamer
10-27-2012, 08:15 PM
Many thanks but rar CRC fails.

Bloody Moon
10-28-2012, 09:51 AM
Excellent editor. Thanks.

Serious_M
10-28-2012, 09:57 AM
nice job on this editor PUR3 RAF3X

finalfantasylinh
10-28-2012, 10:35 AM
Perfect trainer. Very cool PUR3 RAF3X. Thanks

thegutta
10-28-2012, 10:43 AM
Excellent work on the editor PUR3 :)

Guillian
10-28-2012, 10:54 AM
ive tried alot editors but none have worked for ammo hopefully this one will work for me thanks...
My editor (http://www.360haven.com/forums/showthread=18910-%5Brelease%5D-re6se-resident-evil-6-save-editor-v1-0-a.html) can give you a lot of ammo. You can use it without reloading (fastfiring)

Unlock all characters and costumes doesn't seem to work in this editor. I get a corrupted file. Is it right?

Manu24vlc
10-28-2012, 11:14 AM
Thanks.


bye

PUR3 RAF3X
10-28-2012, 12:27 PM
My editor (http://www.360haven.com/forums/showthread=18910-%5Brelease%5D-re6se-resident-evil-6-save-editor-v1-0-a.html) can give you a lot of ammo. You can use it without reloading (fastfiring)

Unlock all characters and costumes doesn't seem to work in this editor. I get a corrupted file. Is it right?

Yep your right my vault with the unlocks can you try again please if all Ch. and Cos. unlock right thanks.
You write 4 bytes more and when Im right the first 4 bytes you write are the last INT32 entry for merceneries skill slot. I write only 12 bytes for unlock.

Update: Version 1.1.1.0
Add Backup function
Fix unlocks thanks Guillian for report the bug

mrooz2008
10-28-2012, 01:57 PM
can some1 PLEASE mod mine, really. I've tried like 20 times, 4 or 5 diff resigners and no good; either damaged or not found file



only max out the skill points and it should be good

THANKS!!

----------

nevermind, got it working, it was the checksum :(

tank you for editor

Dmas
10-28-2012, 07:06 PM
Hey PUR3 RAF3X, under the Medal Section in Mercs you have them all as Numbers, This guys list (http://www.capcom-unity.com/resident_evil/go/thread/view/7391/29413125/medals-spoilers&post_num=4#524759165) has all the names for them as they are in the game. It may help

Also thanks for this great App

PUR3 RAF3X
10-29-2012, 12:05 PM
Update: Version 1.2.0.0
Add Game options
Fix Medals names thanks Dmas for report the bug

Nastyweasel
10-29-2012, 02:53 PM
excellent editor, thank you
i can not seem to get version 1.2.0.0 to work crashes when i try to run it, so i am currently still using v1.1.1.0. when trying to edit enemies there is only 2 of them that can be edited the j'avo and the neo-unbrella j'avo, is there any way to edit the kills of the different types rather than just those 2?

pogi
10-29-2012, 03:20 PM
wow this really good :086: everything u need great work thanks!

JoSeCHiVa
10-29-2012, 06:28 PM
Thank you PUR3 RAF3X love your tool

Black Out
10-29-2012, 08:07 PM
Doesn't work for me, though, I'm on Windows 7 with all .net frameworks and winrar. Looks like a good tool too. I'll have to wait for another version, or some fix I could do myself, but don't know how (tried compatability mode and run as admin).

Thank you for all your hard work and sharing with the community PUR3 RAF3X!

KimCheeWarrior
10-29-2012, 08:50 PM
this editor is not working for me at all, im using windows xp. so far ive been using the re6se and thats been working fine but i thought id give this one a shot. no matter what i seem to do, the file always appears corrupted when i start up the game. yes i resigned and rehashed (with modio) and yes i saved after changing every value. i dont know how you guys are getting it to work but it isnt working for me. its a shame because i really wanted to try the skill editor.

watze
10-29-2012, 09:44 PM
not works crash on start win 7 :-(

PUR3 RAF3X
10-29-2012, 09:47 PM
This Tool work for win all I have WIN7 64bit and no probs.
Click the button on the top menu before you close the Tool this fix the Checksum.

Please try the new Version.

All Events have a Error Message inside this version please report this or make a picture then I can better found whats wrong.

watze
10-29-2012, 09:56 PM
i have win 7 /32

Black Out
10-29-2012, 11:06 PM
My problem is opening the program.

10055

10056

Sorry about the size I no know how to make the pictures, BIGGER!

casualgangstaz
10-30-2012, 01:09 AM
For some reason everytime i click on the icon the loading circle appears, but the program doesnt open. I'm running on win 7 pro with frameworks 4.5 and i'm running it as administrator. Can anyone tell me if they had the same problem and how to fix it. Thanks!

NightSorrow
10-30-2012, 04:08 AM
Sounds like the program might have ended up being compiled as 64 bit only. If that's the case it should be an easy fix for Pur3.

Bloody Moon
10-30-2012, 04:09 AM
I have vista and the editor can´t open

finalfantasylinh
10-30-2012, 04:46 AM
[QUOTE=Black Out;151575]My problem is opening the program.

10055

10056

same to you, can't open the editor.

KimCheeWarrior
10-30-2012, 06:18 AM
i finally got the editor to work. what i had to do was do whatever modifying i wanted to do and save the values from within the editor but not click save on the menu bar. id close the editor and open the very first re6 save editor that was ever made and open the file with that editor and save it with that editor. then i would proceed to rehash and resign with modio and i would be good to go. if anyone else is using xp and is having trouble with the editor then try this.

PUR3 RAF3X
10-30-2012, 09:58 AM
Crazy my Tools work allways for Win All I need check this today .

Nothing big the Tool miss only a DLL for 32bit support. I have tested the Tool with my systems Win764 and Xp32 and the Tool run without probs I hope this make all happy.

Remove the Save option from top menu so when you close the Tool then the Checksum fix autom. Hope nobody can miss this step.

KimCheeWarrior
10-30-2012, 09:50 PM
it might be because that one save file has been used with four different save editors so maybe using so many editors with it kinda jambled it up a bit. heck, one of the editors permanently screwed up my save file and made it to where piers only has half a bar of health and sherry dies instantly so now i cant 100% the game, :(

PUR3 RAF3X
10-30-2012, 10:09 PM
it might be because that one save file has been used with four different save editors so maybe using so many editors with it kinda jambled it up a bit. heck, one of the editors permanently screwed up my save file and made it to where piers only has half a bar of health and sherry dies instantly so now i cant 100% the game, :(

This is bad Sorry. You have try use only one Tool and check if this one you use damage the Savedata? And what you change? I have never see this prob and I use only my Tool.

KimCheeWarrior
10-31-2012, 03:25 AM
it wasnt yours, im pretty sure it was one of the first two i used that screwed up my save. by then, i was already so far into the game and had made so much progress that there was no way that i was going to start over.

PUR3 RAF3X
10-31-2012, 10:17 AM
Update: Version 1.3.0.0
Add Rehash & Resign
Make the Tool much better for all ;)
Thanks to PureIso and Jappi88 for ISOlib

Black Out
10-31-2012, 03:09 PM
Update: Version 1.3.0.0
Add Rehash & Resign
Make the Tool much better for all ;)
Thanks to PureIso and Jappi88 for ISOlib

I see you've been busy. Good man!

zwarrior
10-31-2012, 03:52 PM
Does this have the hidden 'Training' skill?

PUR3 RAF3X
10-31-2012, 04:54 PM
Does this have the hidden 'Training' skill?

Yes you can.

mvpBLAZE
11-08-2012, 09:07 AM
I've tried several times to unlock all emblems but it isn't working but everything else seems to work good. Oh and editing the mercenary stats doesn't work for me.

PUR3 RAF3X
11-08-2012, 10:55 AM
I try fix this and add the unlock Title inside next update.

mvpBLAZE
11-08-2012, 02:33 PM
If you want I can send you a pic of what happens when I try to do the mercs stats.

EDIT: here's what happens:
10179

If you want to zoom in on the picture go here and click zoom
http://img196.imageshack.us/img196/1299/errorci.png

That's what happens when I press 'Save'. by the way you have done an amazing job on this program.

michmaster
11-08-2012, 05:35 PM
BEST EDITOR EVER! Just what I was looking for, I fkn LOVE you XDD

michmaster
11-08-2012, 06:17 PM
Just wanted to make note, when you change the ranks of the campaign it doesn't sync on the gamesave, it shows up as the way it was before modding it, is there an specific way to get it to work?

Edit: Just tried again and it worked this time, best editor out there, great job!

PUR3 RAF3X
11-08-2012, 09:48 PM
Whats happen with the Emblem you miss something or nothing unlock?

Update: Version 1.3.1.0
Add Unlock "Dog Tags" Title
Fix bug mercenary stats thanks mvpBLAZE for report the bug

mvpBLAZE
11-09-2012, 12:40 AM
Whats happen with the Emblem you miss something or nothing unlock?

Update: Version 1.3.1.0
Add Unlock "Dog Tags" Title
Fix bug mercenary stats thanks mvpBLAZE for report the bug
What happens is I tick the 'unlock all emblem' hit save then hit the x (close) to save and rehash it and press okay. Then when I go into the game I still have the same amount I had before of emblem.

EDIT: im going to the hospital so i'll be on later and test the new version out. if I find anything i'll let you know.

michmaster
11-09-2012, 05:55 PM
Is the editor going to support modding Mercenaries level scores?

Also, I wanted to make note, everytime you try to mod the campaign time and rank from the secondary characters (Helena, Sherry, Piers) Chapter 3,4 and 5 in Veteran doesn't save it up, it goes blank everytime you change the chapter option, even if you mod it again, it will change back to blank everytime you change tabs

And trying to change rank on Sherry's stats on Professional is not working either

PUR3 RAF3X
11-10-2012, 12:15 PM
Is the editor going to support modding Mercenaries level scores?

Also, I wanted to make note, everytime you try to mod the campaign time and rank from the secondary characters (Helena, Sherry, Piers) Chapter 3,4 and 5 in Veteran doesn't save it up, it goes blank everytime you change the chapter option, even if you mod it again, it will change back to blank everytime you change tabs

And trying to change rank on Sherry's stats on Professional is not working either

Yes right damn this happen allways when I never try the Tool Sorry. Try the new Update. Support modding Mercenaries level scores not possible for me coz I have only a Banned Xbox360 :(

Hacker-T
11-10-2012, 03:58 PM
PS:
Bro kannste pls zurück schreiben =(


Damn & aggain 1 of the best Mod Tools :) epic work dude,keep doing it !
THANKSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS

PUR3 RAF3X
11-10-2012, 05:53 PM
Hehe ok ich Schreibe dir den code für WWE13 aber ich will nicht nur Credits sondern auch was von deiner Arbeit hier sehen ;) Alles andere besprechen wir über Nachricht nicht hier wo es nix verloren hat.

Hacker-T
11-10-2012, 09:28 PM
OK danke bro.
Natürlich werd ichs auch hier veröffentlichen nur der verdammte mist dass den Save schrottet ist das Problem :(
Wo sollen wir weiter schreiben?

TY

michmaster
11-12-2012, 04:26 AM
Yes right damn this happen allways when I never try the Tool Sorry. Try the new Update. Support modding Mercenaries level scores not possible for me coz I have only a Banned Xbox360 :(

Perfect, will try it out later and wil let you know if it works, as for mercenaries then it's fine, it's a really great tool anyways! Great job and thanks! :D

mvpBLAZE
11-12-2012, 11:55 AM
PUR3 RAF3X sorry been so busy lately at the hospital but I downloaded your new version and tested a few things out.

1. Mercenaries works now
2. changing times on all of the characters works
3. emblems unlock all feature still isn't unlocking

I tried a whole bunch of other features and they all work as well I was going to list the ones I tried that work but I assume you don't need me to do that. I'll just list the ones I find not to work. Other than that this tool is really coming along.

PUR3 RAF3X
11-13-2012, 10:09 AM
Sound good ;) I need check the unlocks I hope this are the last bug.

SuperNeam
11-14-2012, 12:48 AM
Awesome! Thank you!

Bloody Moon
11-15-2012, 06:46 AM
I unlocked the tags, titles and emblems and templates and works perfectly
Show your Serpent Emblems found... yes but i can't edit it manually
Unlock Leon Collection works
Unlock Chris Collection works
Unlock Jake Collection works
Enemies kils works
Edit the playtime, works
Experience points works

If you want edit the templates, emblems, titles, Leon collection, Cris colletion and Jake collection at the same time only the templates,emblems and titles going to be unlocked and the other things (collections) will continue locked, well this happened to me, so after a few minutes I tried again with the collections only and works perfectly maybe you guys alraedy know this but try to edit the stats gradually

And thx for this editor

PUR3 RAF3X
11-15-2012, 10:13 AM
Show your Serpent Emblems found... yes but i can't edit it manually

Yes right this show only your Emblems found and with unlock the collection you have all 80 Emblems ;)

KimCheeWarrior
11-15-2012, 06:39 PM
fyi pure, it wasnt any of the editors that was causing the problem. turns out modio was the culprit all along, so this is a word out to all of you out there using modio to r&r your re6 savefiles. sometimes itll do it with no problems but most of the time it doesnt rehash it right and corrupts various data like inventory information and health amount for certain characters. somebody recommended horizon to me and that works perfectly for re6 files. that is all. :)

PUR3 RAF3X
11-15-2012, 08:47 PM
This is why I say the Rehash&Resign inside my Tool make the Tool better for all ;)

hazex75
11-15-2012, 10:44 PM
Thank you i really appreciate your hard work!

Bloody Moon
11-17-2012, 12:52 AM
Before I unlocked Leon, Chris and Jake collections only but thats not true completely I unlocked all at the same time (even Ada wong) but I dont had available the Ada's campaign but yesterday I completed the Jake's campaign and I got access to Ada Wong campaing then I went to the extra options and I had unlocked ALL Ada's collection. This editor works great

warin2531
11-19-2012, 09:19 AM
nice work thank you

KimCheeWarrior
11-20-2012, 09:58 PM
i recently updated horizon to the newest version and lately it hasnt been resigning re6 save files properly and as usual modio still doesnt do it right either so now (unless some of you have older versions of horizon) pure's editor is the only proper re6 resigner out there. if i dont use your editor for its obvious features, i always use it to r&r my re6 saves. adding r&r to it was probably the best decision you made regarding this editor. thanks yet again.

voidmage09
11-21-2012, 05:09 AM
hmm i love this sexy tool u have sad i dont own RE6

KimCheeWarrior
11-26-2012, 06:27 PM
so, you got any plans for a future version to add more features or is this pretty much it? i only reason i check back here at 360haven on a weekly basis is to see if a new version of any of the re6 save editors have been released

PUR3 RAF3X
11-27-2012, 09:37 AM
No I thing the Tool are good enough.

KimCheeWarrior
12-08-2012, 01:17 AM
do you think your editor will still work after the upcoming 12/17 update?

Apocalyptic
12-08-2012, 01:20 AM
nice Share :D

Apocalyptic
12-08-2012, 01:22 AM
Great Share :D

Apocalyptic
12-08-2012, 01:24 AM
Sorry bout two posts, i lost internet connection for a second and thought it didn't go up

PUR3 RAF3X
12-08-2012, 10:29 AM
do you think your editor will still work after the upcoming 12/17 update?

Good Question. We need wait for the Update. The Tool skip all empty entrys for the Update so I think yes.

KimCheeWarrior
12-17-2012, 10:55 PM
one thing i can confirm is that the update that was released today nullifies the training skill which was the best thing about a couple of save editors (including yours) here at this site.

Bloody Moon
12-18-2012, 12:58 AM
one thing i can confirm is that the update that was released today nullifies the training skill which was the best thing about a couple of save editors (including yours) here at this site.
thx man i have been offline two weeks and I dont have the update of course, another reason for dont play online this game


i recently updated horizon to the newest version and lately it hasnt been resigning re6 save files properly and as usual modio still doesnt do it right either so now (unless some of you have older versions of horizon) pure's editor is the only proper re6 resigner out there. if i dont use your editor for its obvious features, i always use it to r&r my re6 saves. adding r&r to it was probably the best decision you made regarding this editor. thanks yet again.
If someone need a old version of horizon I have these versions:
2.5.2.1
2.5.3.0
2.5.3.1
2.5.4.0
2.5.5.0
2.5.5.2
2.5.5.3
2.5.6.1
2.5.7.1
2.5.8.0 (last version)

nicola37
12-20-2012, 11:09 AM
nice editor, will you add support for dlc?

KimCheeWarrior
12-23-2012, 07:28 PM
id like to add to that question. are there any plans to add the training skill to the new dlc modes which were introduced on the 19th?

eje
12-27-2012, 05:30 PM
thanks works fine

AlineNINE
12-28-2012, 12:08 AM
Today's the 27th of December, I just purchased the game after downloading the demo on the Japanese Xbox Live, as it was named Biohazard 6. Thinking it was a completely different game, I ended up playing the same demo but not the Chris campaign, which I thought was the whole game, which sucked! But after playing the other missions, which play like the original RE, this game rocks.

Wanting to have fun with the game, decided to look for an editor, found this, modded my save file, and it works!! Not at first. Found you have to close the program for it to save correctly, but "viola", 1,000,000 skill points.

Don't trust anything higher than XP, maybe Vista. But this works on a DELL D610 with fresh install of Windows XP SP3, w/Netframe 3.5 & 4.0, using an older version of Horizon to Resign, Rehash and Save to USB. Also with xLive update patch.

Great Editor!!!

Nastyweasel
01-02-2013, 09:50 AM
any chance you will be updating the editor to include the new camera option, and new game modes (onslaught,survivor & preditor modes)?

PUR3 RAF3X
01-02-2013, 12:46 PM
any chance you will be updating the editor to include the new camera option, and new game modes (onslaught,survivor & preditor modes)?

No I think you guys see never again anything here from my work.

Bloody Moon
01-03-2013, 12:14 AM
No I think you guys see never again anything here from my work.
No!! too bad but honestly man, thx for this editor and...I hope you change the idea about update this editor BUT if NOT I respect your reasons for dont update it and thx again

mvpBLAZE
03-15-2013, 01:12 PM
this editor is the best

engineer
03-19-2013, 06:18 AM
Can u send me a link with last working horizon tool that rehashes and resigns? pm me and i will give u my email. maybe like 2.5.5.0 or so...

PUR3 RAF3X
03-19-2013, 08:56 AM
Can u send me a link with last working horizon tool that rehashes and resigns? pm me and i will give u my email. maybe like 2.5.5.0 or so...

1.Before you ask me for help click the THANKS BUTTON for my Tool !!! This is very simple.

2. How it work:

Open your RE6 savedata.bin
Mod what you want and click Save
Close the Tool and your Savedata ready for use

3.If you need something from the web then use google.

engineer
03-19-2013, 08:03 PM
Sorry that was meant for the user who said he had the old horizon versions. However i do need to know if your efitor still works as of today? My stats change on the editor but not on the game... also can your tool rehash and resign gullian editorbut and will that work with games current updates?

engineer
03-19-2013, 08:14 PM
sorry for not thanking you for your editor, from what I've read it seems like a great tool, i just feel i found it too late and the game's current updates don't allow the edits. Your tool wad great for the ease of use and built in resign gullian and rehash.

pinchito
03-28-2013, 07:56 PM
buen aporte se agradece

finaldragon
03-30-2013, 08:43 AM
thanks, is the best I've seen.

GreenArcher
05-02-2013, 06:19 PM
Thank you for this tool. Just what I needed.

Very nice work indeed.

chonvee
05-03-2013, 05:20 AM
Thank you.I has a lot more cheat than another one editor.Now I can enjoy this game more.

guhong
05-03-2013, 06:07 AM
thank U so much
i need it!

havenisthebest
05-08-2013, 05:08 PM
thanks for this

ezWWE
05-09-2013, 08:08 AM
I am getting this game soon. Definitely going to try out your program when I get the game. Thanks.

AzaiNagamasa
05-24-2013, 02:24 PM
I don't know if someone said this but will you find a way to mod the skill Training Skill to work on the new DLC modes?

PUR3 RAF3X
05-24-2013, 05:03 PM
Sorry no coz I have no infos about the DLC.

WeiShenDogs
09-21-2013, 11:53 AM
Hi bro,
I download tis mod but I can't open it.. no respond even i click many times.. please help.. the other editor is not working.. hopefully this working for me... thanks


Support:

All Skills(Advanced)
slot 1-8 support

All Unlocks
All characters and costumes
Unlock Leon Collection only(not selected)
Unlock Chris Collection only(not selected)
Unlock Jake Collection only(not selected)
Unlock Ada Collection only(not selected)
Dog Tags
Unlock all Template only
Unlock all Emblem only
Unlock all Title only


All Stats(Advanced)
Profile
Weapons
Enemies
Medals
Extras
Campaigns rank mod(advanced)

All Skill points

Game options

German/English Language Support



This Tool need Netframework 4
Win32/64 bit Support

How it work:

Open your RE6 savedata.bin
Mod what you want and click Save
Close the Tool and your Savedata ready for use



Update: Version 1.1.0.0
Fix the Checksum Thanks to feudalnate

Update: Version 1.1.1.0
Add Backup function
Fix unlocks thanks Guillian for report the bug

Update: Version 1.2.0.0
Add Game options
Fix Medals names thanks Dmas for report the bug


Update: Version 1.2.1.0
Fix Enemies thanks Nastyweasel for report the bug

Version 1.2.1.0 updated
Fix 32bit support thanks to all reporter

Update: Version 1.2.2.0
Show your Serpent Emblems found
Unlock Leon Collection only(not selected)
Unlock Chris Collection only(not selected)
Unlock Jake Collection only(not selected)
Unlock Ada Collection only(not selected)
Dog Tags
Unlock all Template only
Unlock all Emblem only

Update: Version 1.3.0.0
Add Rehash & Resign

Update: Version 1.3.1.0
Add Unlock "Dog Tags" Title
Fix bug mercenary stats thanks mvpBLAZE for report the bug

Update: Version 1.3.2.0
Fix bug campaign time and rank thanks michmaster for report the bug





Thanks to feudalnate for PackageIO
Thanks to PureIso and Jappi88 for ISOlib
Thanks to Guillian for help



100441005110049100521005010048100471004610045

Chauncy
09-22-2013, 06:28 AM
Awesome work, thanks!

COWF
12-06-2014, 05:29 PM
Ok, good work man.