Final Fantasy XV

xxv
Member
Posts: 54
Joined: Thu Jul 06, 2017 11:33 pm

Re: Final Fantasy XV

Post by xxv » Sat Aug 12, 2017 4:46 am

Image
xxv
Member
Posts: 54
Joined: Thu Jul 06, 2017 11:33 pm

Re: Final Fantasy XV

Post by xxv » Sat Aug 12, 2017 5:25 am

Image

column is the new best weapon!

I updated the spreadsheet with the names for all the weapons. mapping them to ids will take a while.
lee4_cmp
Member
Posts: 173
Joined: Mon Apr 17, 2017 3:11 pm

Re: Final Fantasy XV

Post by lee4_cmp » Sat Aug 12, 2017 3:51 pm

xxv wrote:
lee4_cmp wrote:**UNTESTED**

Adds character to guest slot (slot#5 only)
use one only
FYI I tested and my game crashed after using these codes. My guess is that the locations are dynamic. Manually locating the correct match works fine in advance mode.
go here final version
viewtopic.php?f=115&t=1095&start=170#p7660

i think I fix problem

**UNTESTED**

NOTE:
I assuming you will need
to remove the character from guest slot
before Add new characters
Add Ardyn to guest slot
80010007 0BE999E5
5D010100 00000000
28000007 00000004
80050005 3F89CFA5
62000000 00000000
28000005 00000004

Remove Ardyn from guest slot
80010007 0BE999E5
5D010100 00000000
28000007 FFFFFFFF
80050005 3F89CFA5
62000000 00000000
28000005 FFFFFFFF

Add Aranea Highwind to guest slot
80010007 0BE999F0
97000100 00000000
28000007 00000004
80050005 3F89CFA5
62000000 00000000
28000005 00000005

Remove Aranea Highwind from guest slot
80010007 0BE999F0
97000100 00000000
28000007 FFFFFFFF
80050005 3F89CFA5
62000000 00000000
28000005 FFFFFFFF

Add Cor Leonis to guest slot
80010007 0BE999AC
97000100 00000000
28000007 00000004
80050005 3F89CFA5
62000000 00000000
28000005 00000006

Remove Cor Leonis from guest slot
80010007 0BE999AC
97000100 00000000
28000007 FFFFFFFF
80050005 3F89CFA5
62000000 00000000
28000005 FFFFFFFF

Add Iris Amicitia to guest slot
80010007 0BE999E6
5D010100 00000000
28000007 00000004
80050005 3F89CFA5
62000000 00000000
28000005 00000007

Remove Iris Amicitia from guest slot
80010007 0BE999E6
5D010100 00000000
28000007 FFFFFFFF
80050005 3F89CFA5
62000000 00000000
28000005 FFFFFFFF

Add Umbra to guest slot
80010007 0BE999E7
5D010100 00000000
28000007 00000004
80050005 3F89CFA5
62000000 00000000
28000005 00000008

Remove Umbra from guest slot
80010007 0BE999E7
5D010100 00000000
28000007 FFFFFFFF
80050005 3F89CFA5
62000000 00000000
28000005 FFFFFFFF
Last edited by lee4_cmp on Sun Aug 13, 2017 3:15 pm, edited 1 time in total.
Please read Save Wizard forum RULES
https://forum.hackinformer.com/viewtopic.php?f=115&t=985
lee4_cmp is supporter of Game Genie EU and Save Wizard MAX
xxv
Member
Posts: 54
Joined: Thu Jul 06, 2017 11:33 pm

Re: Final Fantasy XV

Post by xxv » Sat Aug 12, 2017 5:06 pm

lee4_cmp wrote: to remove the character from guest slot
To remove in game, race Iris in the chocobo area.

For weapons, it's probably possible to write a quick code. This is the manual way:

Go to Hamemrhead weapon vendor (where Cindy is).
Buy x99 War Sword, Two Handed sword, Broad Sword

Code: Select all

                        02 66 03 01 -- War Sword
B1 96 B1 D3 ED AE 5F 92 02 66 03 01


                        01 66 03 01 -- Two Handed sword
B1 96 B1 D3 ED AE 5F 92 01 66 03 01


                        F4 65 03 01 -- Broad Sword
B1 96 B1 D3 ED AE 5F 92 F4 65 03 01
Now replace the known ids with the 200 ids from the weapons section of the spreadsheet.
ex: broadsword -> mage mashers
B1 96 B1 D3 ED AE 5F 92 F4 65 03 01 becomes:
B1 96 B1 D3 ED AE 5F 92 27 66 03 01
xxv
Member
Posts: 54
Joined: Thu Jul 06, 2017 11:33 pm

Re: Final Fantasy XV

Post by xxv » Sat Aug 12, 2017 5:50 pm

This is also how they do it in Japan. :)

"Weapon change Broad sword 1st change Change artema blade
Weapon change Broad sword 2nd change Change Apocalypse
Weapon change Broad sword 3rd change Changed direction
Weapon change Broad sword fourth change change Zorin shape
Weapon change Broad sword fifth change Change Dele penalty
Weapon change Broad sword 6th change Change Zydritz
Weapon change Broad sword 7th change Drill breaker Bis"

http://www.cybergadget.co.jp/code/45448 ... ame/#10544
xxv
Member
Posts: 54
Joined: Thu Jul 06, 2017 11:33 pm

Re: Final Fantasy XV

Post by xxv » Sat Aug 12, 2017 7:19 pm

lee4_cmp wrote: i think I fix problem
all the add character codes work except Ardyn. The save loads however he's not in the party.

would you mind explaining step by step what each code does? I haven't found good documentation on the Save Wizard code types.

Code: Select all

Add Ardyn to guest slot
80010007 0BE999E5
5D010100 00000000
28000007 00000004
80050005 3F89CFA5
62000000 00000000
28000005 00000004
I think this is what it means:

Code: Select all

80010007 0BE999E5
5D010100 00000000
search (8) one time (001) and match 7 bytes (0007) for the value "0BE999E55D0101". Each hex pair is a byte.

Code: Select all

28000007 00000004
32-bit write (2) offset from pointer (8) using offset 7 (000007) write "04 00 00 00"

we need to write "04 00 00 00 03 00" so maybe an additional line is required for "03 00"?

Code: Select all

80050005 3F89CFA5
62000000 00000000
search (8) five times (005) and match 5 bytes (0005) for the value "3F89CFA562"

Code: Select all

28000005 00000004
32-bit write (2) offset from pointer (8) using offset 5 (000005) write "04 00 00 00"
xxv
Member
Posts: 54
Joined: Thu Jul 06, 2017 11:33 pm

Re: Final Fantasy XV

Post by xxv » Sat Aug 12, 2017 10:43 pm

Here are working codes for all characters based on lee4_cmp 's work. I tested that they function correctly. Removal is simple, "3F 89 CF A5 62 FF FF FF FF" is all that's required. I added a new code for that.

Code: Select all

Add Ardyn to guest slot
80010007 0BE999E5
5D010100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000004

Add Aranea Highwind to guest slot 
80010007 0BE999F0
97000100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000005

Add Cor Leonis to guest slot
80010007 0BE999AC
97000100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000006

Add Iris Amicitia to guest slot
80010007 0BE999E6
5D010100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000007

Add Umbra to guest slot
80010007 0BE999E7
5D010100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000008

Clear guest slot
80050005 3F89CFA5
62000000 00000000
28000005 FFFFFFFF
xxv
Member
Posts: 54
Joined: Thu Jul 06, 2017 11:33 pm

Re: Final Fantasy XV

Post by xxv » Sat Aug 12, 2017 11:09 pm

Image

There's a secret Noctis weapon that can be equipt on Ardyn. :lol:
User avatar
hieu111997
Junior Member
Posts: 25
Joined: Sat Jun 03, 2017 7:01 am
Location: Australia

Re: Final Fantasy XV

Post by hieu111997 » Sun Aug 13, 2017 10:34 am

xxv wrote:Here are working codes for all characters based on lee4_cmp 's work. I tested that they function correctly. Removal is simple, "3F 89 CF A5 62 FF FF FF FF" is all that's required. I added a new code for that.

Code: Select all

Add Ardyn to guest slot
80010007 0BE999E5
5D010100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000004

Add Aranea Highwind to guest slot 
80010007 0BE999F0
97000100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000005

Add Cor Leonis to guest slot
80010007 0BE999AC
97000100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000006

Add Iris Amicitia to guest slot
80010007 0BE999E6
5D010100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000007

Add Umbra to guest slot
80010007 0BE999E7
5D010100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000008

Clear guest slot
80050005 3F89CFA5
62000000 00000000
28000005 FFFFFFFF
Thank you :thumbup:
lee4_cmp
Member
Posts: 173
Joined: Mon Apr 17, 2017 3:11 pm

Re: Final Fantasy XV

Post by lee4_cmp » Sun Aug 13, 2017 3:18 pm

xxv wrote:Here are working codes for all characters based on lee4_cmp 's work. I tested that they function correctly. Removal is simple, "3F 89 CF A5 62 FF FF FF FF" is all that's required. I added a new code for that.

Code: Select all

Add Ardyn to guest slot
80010007 0BE999E5
5D010100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000004

Add Aranea Highwind to guest slot 
80010007 0BE999F0
97000100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000005

Add Cor Leonis to guest slot
80010007 0BE999AC
97000100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000006

Add Iris Amicitia to guest slot
80010007 0BE999E6
5D010100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000007

Add Umbra to guest slot
80010007 0BE999E7
5D010100 00000000
28000007 00000004
1800000B 00000003
80050005 3F89CFA5
62000000 00000000
28000005 00000008

Clear guest slot
80050005 3F89CFA5
62000000 00000000
28000005 FFFFFFFF
one request
scratch off my list
I glad to help out
Please read Save Wizard forum RULES
https://forum.hackinformer.com/viewtopic.php?f=115&t=985
lee4_cmp is supporter of Game Genie EU and Save Wizard MAX
Post Reply