GRANDIA II HD Remaster

GRANDIA II HD Remaster

Not enough ratings
Dissecting Grandia 2 save data for editing
By Cofeiini
A thorough look at the Grandia 2 save data and it's individual bits.
   
Award
Favorite
Favorited
Unfavorite
Introduction
I will be going over interesting bytes and bits of data found in a save file, and I'll try to explain what those pieces of data do.

For the purposes of this guide I'm assuming you know how to use a hex editor and know where to get one.

There will be things called bit fields. In those I'll specify which bit is which. From left to right starting at 1 and ending at 8.
0
0
0
0
0
0
0
0
1
2
3
4
5
6
7
8
Together these bits will produce a decimal or a hex value depending on what kind of calculator you use. Some offsets don't have all of the bits specified. Unspecified bits can be interpreted as zero.

Note: The data does contain spoilers (characters, events, etc).
Why use ImHex?
I'll be using 010 Editor for hex editing mostly because it supports Binary Templates. With those templates I can easily identify and modify data.

I moved to ImHex[imhex.werwolv.net] because it has the same features as 010 Editor, but is a free and open source program.

You can use any editor you like, but modifying bit fields will be more complicated on other editors.



I've uploaded an ImHex .hexpat file here: grandia_2_hd_remaster.hexpat[drive.google.com]

To use the file:
  1. Load the save you want to edit
  2. Choose File > Import... > Pattern File and select the hexpat file
  3. Use the Pattern Data view to inspect and edit the save

Data - Save Information
Basic information about the save and some useful things, like Gold and Coins.
  • Play Time is counted in frames. So you'll take the value and divide it by 30 to get seconds. Then divide that value with 60 to get minutes and so forth.
  • Save Point Name is just for identifying the save in loading screen.
  • Modifying Current Song seems to do nothing, but it matches with the "sound_indices.csv" file.
  • Hard Mode simply sets game difficulty to Hard.
  • Gold, Special Coins and Magic Coins are self explanatory.
  • Battle Counter doesn't seem to be used.
  • Player Position can be set to pretty much anything. I haven't tried messing with the values, but I imagine you can easily soft-lock the game that way.
  • Modifying Camera Mode seems to do nothing.
  • Camera Rotation seems to be a signed int that uses really large numbers for rotation values. Float didn't give right numbers and other data types don't quite fit.

Play Time
0x0290
unsigned int
Save Point Name
0x0294
32x char
Current Song
0x02B4
short
Hard Mode
0x02B6
unsigned byte
Gold
0x02C0
unsigned int
Special Coins
0x02C4
unsigned int
Magic Coins
0x02C8
unsigned int
Battle Counter
0x02CC
unsigned int
Player Position X
0x02E0
float
Player Position Y
0x02E4
float
Player Position Z
0x02E8
float
Camera Mode
0x02EC
unsigned short
Camera Rotation
0x02F0
int
Data - Characters - Ryudo
  • Section Title seems like a name of the character, but it's inconsistent for some characters and saves from Dreamcast have completely different data on the same offset. Doesn't seem to do anything.
  • The stats are self explanatory. Most of the base stats cap at 999. HP caps at 9999.
  • Equipment uses a separate list that contains all of the items (including Mana Eggs) which makes it difficult to modify these values by hand.
  • Skill Slots simply tells how many skills a character can equip. I haven't gone above 6.
  • Skill Book uses a separate list that contains all of the books. Difficult to modify by hand.
  • Skill from a Book is a value from 0 to 5 and works as an index of previously defined Skill Book value.
  • Status is our first bit field. Only Fallen, Move Block, Magic Block and Poison seem to have an effect.

Name
Offset
Data type
Section Title
0x0308
18x char
Current Level
0x031A
unsigned byte
Current EXP
0x031C
unsigned int
Remaining EXP
0x0320
unsigned int
Max HP
0x0324
unsigned short
Current HP
0x0326
unsigned short
Max MP
0x0328
unsigned short
Current MP
0x032A
unsigned short
Max SP
0x032C
unsigned short
Current SP
0x032E
unsigned short
Base Strength
0x0330
unsigned short
Base Vitality
0x0332
unsigned short
Base Agility
0x0334
unsigned short
Base Speed
0x0336
unsigned short
Base Magic
0x0338
unsigned short
Base Mentality
0x033A
unsigned short
Equipped Weapon
0x0348
unsigned short
Equipped Armor
0x034A
unsigned short
Equipped Headgear
0x034C
unsigned short
Equipped Footwear
0x034E
unsigned short
Equipped Accessory
0x0350
unsigned short
Equipped Mana Egg
0x0352
unsigned short
Skill Slots
0x0354
unsigned byte
Skill Book 1
0x0355
unsigned byte
Skill Book 2
0x0356
unsigned byte
Skill Book 3
0x0357
unsigned byte
Skill Book 4
0x0358
unsigned byte
Skill Book 5
0x0359
unsigned byte
Skill Book 6
0x035A
unsigned byte
Skill 1 from a Book
0x035B
unsigned byte
Skill 2 from a Book
0x035C
unsigned byte
Skill 3 from a Book
0x035D
unsigned byte
Skill 4 from a Book
0x035E
unsigned byte
Skill 5 from a Book
0x035F
unsigned byte
Skill 6 from a Book
0x0360
unsigned byte
Status
Fallen
0x036F
bit 1
Move Block
0x036F
bit 2
Magic Block
0x036F
bit 3
Plague
0x036F
bit 4
Confusion
0x036F
bit 5
Paralysis
0x036F
bit 6
Sleep
0x036F
bit 7
Poison
0x036F
bit 8
Data - Characters - Elena
Refer to section named "Data - Characters - Ryudo" for more details.

Name
Offset
Data type
Section Title
0x0374
18x char
Current Level
0x0386
unsigned byte
Current EXP
0x0388
unsigned int
Remaining EXP
0x038C
unsigned int
Max HP
0x0390
unsigned short
Current HP
0x0392
unsigned short
Max MP
0x0394
unsigned short
Current MP
0x0396
unsigned short
Max SP
0x0398
unsigned short
Current SP
0x039A
unsigned short
Base Strength
0x039C
unsigned short
Base Vitality
0x039E
unsigned short
Base Agility
0x03A0
unsigned short
Base Speed
0x03A2
unsigned short
Base Magic
0x03A4
unsigned short
Base Mentality
0x03A6
unsigned short
Equipped Weapon
0x03B4
unsigned short
Equipped Armor
0x03B6
unsigned short
Equipped Headgear
0x03B8
unsigned short
Equipped Footwear
0x03BA
unsigned short
Equipped Accessory
0x03BC
unsigned short
Equipped Mana Egg
0x03BE
unsigned short
Skill Slots
0x03C0
unsigned byte
Skill Book 1
0x03C1
unsigned byte
Skill Book 2
0x03C2
unsigned byte
Skill Book 3
0x03C3
unsigned byte
Skill Book 4
0x03C4
unsigned byte
Skill Book 5
0x03C5
unsigned byte
Skill Book 6
0x03C6
unsigned byte
Skill 1 from a Book
0x03C7
unsigned byte
Skill 2 from a Book
0x03C8
unsigned byte
Skill 3 from a Book
0x03C9
unsigned byte
Skill 4 from a Book
0x03CA
unsigned byte
Skill 5 from a Book
0x03CB
unsigned byte
Skill 6 from a Book
0x03CC
unsigned byte
Status
Fallen
0x03DB
bit 1
Move Block
0x03DB
bit 2
Magic Block
0x03DB
bit 3
Plague
0x03DB
bit 4
Confusion
0x03DB
bit 5
Paralysis
0x03DB
bit 6
Sleep
0x03DB
bit 7
Poison
0x03DB
bit 8
Data - Characters - Millenia
Refer to section named "Data - Characters - Ryudo" for more details.

Name
Offset
Data type
Section Title
0x03E0
18x char
Current Level
0x03F2
unsigned byte
Current EXP
0x03F4
unsigned int
Remaining EXP
0x03F8
unsigned int
Max HP
0x03FC
unsigned short
Current HP
0x03FE
unsigned short
Max MP
0x0400
unsigned short
Current MP
0x0402
unsigned short
Max SP
0x0404
unsigned short
Current SP
0x0406
unsigned short
Base Strength
0x0408
unsigned short
Base Vitality
0x040A
unsigned short
Base Agility
0x040C
unsigned short
Base Speed
0x040E
unsigned short
Base Magic
0x0410
unsigned short
Base Mentality
0x0412
unsigned short
Equipped Weapon
0x0420
unsigned short
Equipped Armor
0x0422
unsigned short
Equipped Headgear
0x0424
unsigned short
Equipped Footwear
0x0426
unsigned short
Equipped Accessory
0x0428
unsigned short
Equipped Mana Egg
0x042A
unsigned short
Skill Slots
0x042C
unsigned byte
Skill Book 1
0x042D
unsigned byte
Skill Book 2
0x042E
unsigned byte
Skill Book 3
0x042F
unsigned byte
Skill Book 4
0x0430
unsigned byte
Skill Book 5
0x0431
unsigned byte
Skill Book 6
0x0432
unsigned byte
Skill 1 from a Book
0x0433
unsigned byte
Skill 2 from a Book
0x0434
unsigned byte
Skill 3 from a Book
0x0435
unsigned byte
Skill 4 from a Book
0x0436
unsigned byte
Skill 5 from a Book
0x0437
unsigned byte
Skill 6 from a Book
0x0438
unsigned byte
Status
Fallen
0x0447
bit 1
Move Block
0x0447
bit 2
Magic Block
0x0447
bit 3
Plague
0x0447
bit 4
Confusion
0x0447
bit 5
Paralysis
0x0447
bit 6
Sleep
0x0447
bit 7
Poison
0x0447
bit 8
Data - Characters - Roan
Refer to section named "Data - Characters - Ryudo" for more details.

Section Title
0x044C
18x char
Current Level
0x045E
unsigned byte
Current EXP
0x0460
unsigned int
Remaining EXP
0x0464
unsigned int
Max HP
0x0468
unsigned short
Current HP
0x046A
unsigned short
Max MP
0x046C
unsigned short
Current MP
0x046E
unsigned short
Max SP
0x0470
unsigned short
Current SP
0x0472
unsigned short
Base Strength
0x0474
unsigned short
Base Vitality
0x0476
unsigned short
Base Agility
0x0478
unsigned short
Base Speed
0x047A
unsigned short
Base Magic
0x047C
unsigned short
Base Mentality
0x047E
unsigned short
Equipped Weapon
0x048C
unsigned short
Equipped Armor
0x048E
unsigned short
Equipped Headgear
0x0490
unsigned short
Equipped Footwear
0x0492
unsigned short
Equipped Accessory
0x0494
unsigned short
Equipped Mana Egg
0x0496
unsigned short
Skill Slots
0x0498
unsigned byte
Skill Book 1
0x0499
unsigned byte
Skill Book 2
0x049A
unsigned byte
Skill Book 3
0x049B
unsigned byte
Skill Book 4
0x049C
unsigned byte
Skill Book 5
0x049D
unsigned byte
Skill Book 6
0x049E
unsigned byte
Skill 1 from a Book
0x049F
unsigned byte
Skill 2 from a Book
0x04A0
unsigned byte
Skill 3 from a Book
0x04A1
unsigned byte
Skill 4 from a Book
0x04A2
unsigned byte
Skill 5 from a Book
0x04A3
unsigned byte
Skill 6 from a Book
0x04A4
unsigned byte
Status
Fallen
0x04B3
bit 1
Move Block
0x04B3
bit 2
Magic Block
0x04B3
bit 3
Plague
0x04B3
bit 4
Confusion
0x04B3
bit 5
Paralysis
0x04B3
bit 6
Sleep
0x04B3
bit 7
Poison
0x04B3
bit 8
Data - Characters - Tio
Refer to section named "Data - Characters - Ryudo" for more details.

Section Title
0x04B8
18x char
Current Level
0x04CA
unsigned byte
Current EXP
0x04CC
unsigned int
Remaining EXP
0x04D0
unsigned int
Max HP
0x04D4
unsigned short
Current HP
0x04D6
unsigned short
Max MP
0x04D8
unsigned short
Current MP
0x04DA
unsigned short
Max SP
0x04DC
unsigned short
Current SP
0x04DE
unsigned short
Base Strength
0x04E0
unsigned short
Base Vitality
0x04E2
unsigned short
Base Agility
0x04E4
unsigned short
Base Speed
0x04E6
unsigned short
Base Magic
0x04E8
unsigned short
Base Mentality
0x04EA
unsigned short
Equipped Weapon
0x04F8
unsigned short
Equipped Armor
0x04FA
unsigned short
Equipped Headgear
0x04FC
unsigned short
Equipped Footwear
0x04FE
unsigned short
Equipped Accessory
0x0500
unsigned short
Equipped Mana Egg
0x0502
unsigned short
Skill Slots
0x0504
unsigned byte
Skill Book 1
0x0505
unsigned byte
Skill Book 2
0x0506
unsigned byte
Skill Book 3
0x0507
unsigned byte
Skill Book 4
0x0508
unsigned byte
Skill Book 5
0x0509
unsigned byte
Skill Book 6
0x050A
unsigned byte
Skill 1 from a Book
0x050B
unsigned byte
Skill 2 from a Book
0x050C
unsigned byte
Skill 3 from a Book
0x050D
unsigned byte
Skill 4 from a Book
0x050E
unsigned byte
Skill 5 from a Book
0x050F
unsigned byte
Skill 6 from a Book
0x0510
unsigned byte
Status
Fallen
0x051F
bit 1
Move Block
0x051F
bit 2
Magic Block
0x051F
bit 3
Plague
0x051F
bit 4
Confusion
0x051F
bit 5
Paralysis
0x051F
bit 6
Sleep
0x051F
bit 7
Poison
0x051F
bit 8
Data - Characters - Mareg
Refer to section named "Data - Characters - Ryudo" for more details.

Section Title
0x0524
18x char
Current Level
0x0536
unsigned byte
Current EXP
0x0538
unsigned int
Remaining EXP
0x053C
unsigned int
Max HP
0x0540
unsigned short
Current HP
0x0542
unsigned short
Max MP
0x0544
unsigned short
Current MP
0x0546
unsigned short
Max SP
0x0548
unsigned short
Current SP
0x054A
unsigned short
Base Strength
0x054C
unsigned short
Base Vitality
0x054E
unsigned short
Base Agility
0x0550
unsigned short
Base Speed
0x0552
unsigned short
Base Magic
0x0554
unsigned short
Base Mentality
0x0556
unsigned short
Equipped Weapon
0x0564
unsigned short
Equipped Armor
0x0566
unsigned short
Equipped Headgear
0x0568
unsigned short
Equipped Footwear
0x056A
unsigned short
Equipped Accessory
0x056C
unsigned short
Equipped Mana Egg
0x056E
unsigned short
Skill Slots
0x0570
unsigned byte
Skill Book 1
0x0571
unsigned byte
Skill Book 2
0x0572
unsigned byte
Skill Book 3
0x0573
unsigned byte
Skill Book 4
0x0574
unsigned byte
Skill Book 5
0x0575
unsigned byte
Skill Book 6
0x0576
unsigned byte
Skill 1 from a Book
0x0577
unsigned byte
Skill 2 from a Book
0x0578
unsigned byte
Skill 3 from a Book
0x0579
unsigned byte
Skill 4 from a Book
0x057A
unsigned byte
Skill 5 from a Book
0x057B
unsigned byte
Skill 6 from a Book
0x057C
unsigned byte
Status
Fallen
0x058B
bit 1
Move Block
0x058B
bit 2
Magic Block
0x058B
bit 3
Plague
0x058B
bit 4
Confusion
0x058B
bit 5
Paralysis
0x058B
bit 6
Sleep
0x058B
bit 7
Poison
0x058B
bit 8
Data - Characters - King Roan
Refer to section named "Data - Characters - Ryudo" for more details.

Section Title
0x0590
18x char
Current Level
0x05A2
unsigned byte
Current EXP
0x05A4
unsigned int
Remaining EXP
0x05A8
unsigned int
Max HP
0x05AC
unsigned short
Current HP
0x05AE
unsigned short
Max MP
0x05B0
unsigned short
Current MP
0x05B2
unsigned short
Max SP
0x05B4
unsigned short
Current SP
0x05B6
unsigned short
Base Strength
0x05B8
unsigned short
Base Vitality
0x05BA
unsigned short
Base Agility
0x05BC
unsigned short
Base Speed
0x05BE
unsigned short
Base Magic
0x05C0
unsigned short
Base Mentality
0x05C2
unsigned short
Equipped Weapon
0x05D0
unsigned short
Equipped Armor
0x05D2
unsigned short
Equipped Headgear
0x05D4
unsigned short
Equipped Footwear
0x05D6
unsigned short
Equipped Accessory
0x05D8
unsigned short
Equipped Mana Egg
0x05DA
unsigned short
Skill Slots
0x05DC
unsigned byte
Skill Book 1
0x05DD
unsigned byte
Skill Book 2
0x05DE
unsigned byte
Skill Book 3
0x05DF
unsigned byte
Skill Book 4
0x05E0
unsigned byte
Skill Book 5
0x05E1
unsigned byte
Skill Book 6
0x05E2
unsigned byte
Skill 1 from a Book
0x05E3
unsigned byte
Skill 2 from a Book
0x05E4
unsigned byte
Skill 3 from a Book
0x05E5
unsigned byte
Skill 4 from a Book
0x05E6
unsigned byte
Skill 5 from a Book
0x05E7
unsigned byte
Skill 6 from a Book
0x05E8
unsigned byte
Status
Fallen
0x05F7
bit 1
Move Block
0x05F7
bit 2
Magic Block
0x05F7
bit 3
Plague
0x05F7
bit 4
Confusion
0x05F7
bit 5
Paralysis
0x05F7
bit 6
Sleep
0x05F7
bit 7
Poison
0x05F7
bit 8
Data - Moves
  • Each Move is pulled from a list containing all of the moves. Making it a pain to edit by hand. Most characters have empty fifth and sixth move.
  • Move Level is between 0 and 5. I haven't tried to go above 5.
  • Some of these have an unlock requirement. It seems to be Plot Event related. I'll add it when I know more about it.

Ryudo
Move 1
0x05FC
unsigned byte
Move 1 Level
0x05FD
unsigned byte
Move 2
0x0600
unsigned byte
Move 2 Level
0x0601
unsigned byte
Move 3
0x0604
unsigned byte
Move 3 Level
0x0605
unsigned byte
Move 4
0x0608
unsigned byte
Move 4 Level
0x0609
unsigned byte
Move 5
0x060C
unsigned byte
Move 5 Level
0x060D
unsigned byte
Move 6
0x0610
unsigned byte
Move 6 Level
0x0611
unsigned byte

Elena
Move 1
0x0614
unsigned byte
Move 1 Level
0x0615
unsigned byte
Move 2
0x0618
unsigned byte
Move 2 Level
0x0619
unsigned byte
Move 3
0x061C
unsigned byte
Move 3 Level
0x061D
unsigned byte
Move 4
0x0620
unsigned byte
Move 4 Level
0x0621
unsigned byte
Move 5
0x0624
unsigned byte
Move 5 Level
0x0625
unsigned byte
Move 6
0x0628
unsigned byte
Move 6 Level
0x0629
unsigned byte

Millenia
Move 1
0x062C
unsigned byte
Move 1 Level
0x062D
unsigned byte
Move 2
0x0630
unsigned byte
Move 2 Level
0x0631
unsigned byte
Move 3
0x0634
unsigned byte
Move 3 Level
0x0635
unsigned byte
Move 4
0x0638
unsigned byte
Move 4 Level
0x0639
unsigned byte
Move 5
0x063C
unsigned byte
Move 5 Level
0x063D
unsigned byte
Move 6
0x0640
unsigned byte
Move 6 Level
0x0641
unsigned byte

Roan
Move 1
0x0644
unsigned byte
Move 1 Level
0x0645
unsigned byte
Move 2
0x0648
unsigned byte
Move 2 Level
0x0649
unsigned byte
Move 3
0x064C
unsigned byte
Move 3 Level
0x064D
unsigned byte
Move 4
0x0650
unsigned byte
Move 4 Level
0x0651
unsigned byte
Move 5
0x0654
unsigned byte
Move 5 Level
0x0655
unsigned byte
Move 6
0x0658
unsigned byte
Move 6 Level
0x0659
unsigned byte

Tio
Move 1
0x065C
unsigned byte
Move 1 Level
0x065D
unsigned byte
Move 2
0x0660
unsigned byte
Move 2 Level
0x0661
unsigned byte
Move 3
0x0664
unsigned byte
Move 3 Level
0x0665
unsigned byte
Move 4
0x0668
unsigned byte
Move 4 Level
0x0669
unsigned byte
Move 5
0x066C
unsigned byte
Move 5 Level
0x066D
unsigned byte
Move 6
0x0670
unsigned byte
Move 6 Level
0x0671
unsigned byte

Mareg
Move 1
0x0674
unsigned byte
Move 1 Level
0x0675
unsigned byte
Move 2
0x0678
unsigned byte
Move 2 Level
0x0679
unsigned byte
Move 3
0x067C
unsigned byte
Move 3 Level
0x067D
unsigned byte
Move 4
0x0680
unsigned byte
Move 4 Level
0x0681
unsigned byte
Move 5
0x0684
unsigned byte
Move 5 Level
0x0685
unsigned byte
Move 6
0x0688
unsigned byte
Move 6 Level
0x0689
unsigned byte

King Roan
Move 1
0x068C
unsigned byte
Move 1 Level
0x068D
unsigned byte
Move 2
0x0690
unsigned byte
Move 2 Level
0x0691
unsigned byte
Move 3
0x0694
unsigned byte
Move 3 Level
0x0695
unsigned byte
Move 4
0x0698
unsigned byte
Move 4 Level
0x0699
unsigned byte
Move 5
0x069C
unsigned byte
Move 5 Level
0x069D
unsigned byte
Move 6
0x06A0
unsigned byte
Move 6 Level
0x06A1
unsigned byte
Data - Magic Skills - Holy Egg
Theoretically, you could build your own custom Mana Egg by changing the type of spells.
I'm skipping Tutor Egg and Change Egg since they are meant for the tutorial only.
  • Type of a magic spell is from a list that contains all of the spell types making editing by hand difficult.
  • Level is from 0 to 5. Haven't tried to go above 5.
  • Unlock seems to be a requirement of total points invested in the egg. Haven't tried to mess with it, but it should work.

Magic 1
Type
0x06EC
unsigned byte
Level
0x06ED
unsigned byte
Unlock
0x06EE
unsigned byte

Magic 2
Type
0x06F0
unsigned byte
Level
0x06F1
unsigned byte
Unlock
0x06F2
unsigned byte

Magic 3
Type
0x06F4
unsigned byte
Level
0x06F5
unsigned byte
Unlock
0x06F6
unsigned byte

Magic 4
Type
0x06F8
unsigned byte
Level
0x06F9
unsigned byte
Unlock
0x06FA
unsigned byte

Magic 5
Type
0x06FC
unsigned byte
Level
0x06FD
unsigned byte
Unlock
0x06FE
unsigned byte

Magic 6
Type
0x0700
unsigned byte
Level
0x0701
unsigned byte
Unlock
0x0702
unsigned byte

Magic 7
Type
0x0704
unsigned byte
Level
0x0705
unsigned byte
Unlock
0x0706
unsigned byte

Magic 8
Type
0x0708
unsigned byte
Level
0x0709
unsigned byte
Unlock
0x070A
unsigned byte

Magic 9
Type
0x070C
unsigned byte
Level
0x070D
unsigned byte
Unlock
0x070E
unsigned byte

Magic 10
Type
0x0710
unsigned byte
Level
0x0711
unsigned byte
Unlock
0x0712
unsigned byte

Magic 11
Type
0x0714
unsigned byte
Level
0x0715
unsigned byte
Unlock
0x0716
unsigned byte

Magic 12
Type
0x0718
unsigned byte
Level
0x0719
unsigned byte
Unlock
0x071A
unsigned byte

Magic 13
Type
0x071C
unsigned byte
Level
0x071D
unsigned byte
Unlock
0x071E
unsigned byte

Magic 14
Type
0x0720
unsigned byte
Level
0x0721
unsigned byte
Unlock
0x0722
unsigned byte

Magic 15
Type
0x0724
unsigned byte
Level
0x0725
unsigned byte
Unlock
0x0726
unsigned byte

Magic 16
Type
0x0728
unsigned byte
Level
0x0729
unsigned byte
Unlock
0x072A
unsigned byte

Magic 17
Type
0x072C
unsigned byte
Level
0x072D
unsigned byte
Unlock
0x072E
unsigned byte

Magic 18
Type
0x0730
unsigned byte
Level
0x0731
unsigned byte
Unlock
0x0732
unsigned byte
Data - Magic Skills - Chaos Egg
Refer to section named "Data - Magic Skills - Holy Egg" for more details.

Magic 1
Type
0x0734
unsigned byte
Level
0x0735
unsigned byte
Unlock
0x0736
unsigned byte

Magic 2
Type
0x0738
unsigned byte
Level
0x0739
unsigned byte
Unlock
0x073A
unsigned byte

Magic 3
Type
0x073C
unsigned byte
Level
0x073D
unsigned byte
Unlock
0x073E
unsigned byte

Magic 4
Type
0x0740
unsigned byte
Level
0x0741
unsigned byte
Unlock
0x0742
unsigned byte

Magic 5
Type
0x0744
unsigned byte
Level
0x0745
unsigned byte
Unlock
0x0746
unsigned byte

Magic 6
Type
0x0748
unsigned byte
Level
0x0749
unsigned byte
Unlock
0x074A
unsigned byte

Magic 7
Type
0x074C
unsigned byte
Level
0x074D
unsigned byte
Unlock
0x074E
unsigned byte

Magic 8
Type
0x0750
unsigned byte
Level
0x0751
unsigned byte
Unlock
0x0752
unsigned byte

Magic 9
Type
0x0754
unsigned byte
Level
0x0755
unsigned byte
Unlock
0x0756
unsigned byte

Magic 10
Type
0x0758
unsigned byte
Level
0x0759
unsigned byte
Unlock
0x075A
unsigned byte

Magic 11
Type
0x075C
unsigned byte
Level
0x075D
unsigned byte
Unlock
0x075E
unsigned byte

Magic 12
Type
0x0760
unsigned byte
Level
0x0761
unsigned byte
Unlock
0x0762
unsigned byte

Magic 13
Type
0x0764
unsigned byte
Level
0x0765
unsigned byte
Unlock
0x0766
unsigned byte

Magic 14
Type
0x0768
unsigned byte
Level
0x0769
unsigned byte
Unlock
0x076A
unsigned byte

Magic 15
Type
0x076C
unsigned byte
Level
0x076D
unsigned byte
Unlock
0x076E
unsigned byte

Magic 16
Type
0x0770
unsigned byte
Level
0x0771
unsigned byte
Unlock
0x0772
unsigned byte

Magic 17
Type
0x0774
unsigned byte
Level
0x0775
unsigned byte
Unlock
0x0776
unsigned byte

Magic 18
Type
0x0778
unsigned byte
Level
0x0779
unsigned byte
Unlock
0x077A
unsigned byte
Data - Magic Skills - Mist Egg
Refer to section named "Data - Magic Skills - Holy Egg" for more details.

Magic 1
Type
0x077C
unsigned byte
Level
0x077D
unsigned byte
Unlock
0x077E
unsigned byte

Magic 2
Type
0x0780
unsigned byte
Level
0x0781
unsigned byte
Unlock
0x0782
unsigned byte

Magic 3
Type
0x0784
unsigned byte
Level
0x0785
unsigned byte
Unlock
0x0786
unsigned byte

Magic 4
Type
0x0788
unsigned byte
Level
0x0789
unsigned byte
Unlock
0x078A
unsigned byte

Magic 5
Type
0x078C
unsigned byte
Level
0x078D
unsigned byte
Unlock
0x078E
unsigned byte

Magic 6
Type
0x0790
unsigned byte
Level
0x0791
unsigned byte
Unlock
0x0792
unsigned byte

Magic 7
Type
0x0794
unsigned byte
Level
0x0795
unsigned byte
Unlock
0x0796
unsigned byte

Magic 8
Type
0x0798
unsigned byte
Level
0x0799
unsigned byte
Unlock
0x079A
unsigned byte

Magic 9
Type
0x079C
unsigned byte
Level
0x079D
unsigned byte
Unlock
0x079E
unsigned byte

Magic 10
Type
0x07A0
unsigned byte
Level
0x07A1
unsigned byte
Unlock
0x07A2
unsigned byte

Magic 11
Type
0x07A4
unsigned byte
Level
0x07A5
unsigned byte
Unlock
0x07A6
unsigned byte

Magic 12
Type
0x07A8
unsigned byte
Level
0x07A9
unsigned byte
Unlock
0x07AA
unsigned byte

Magic 13
Type
0x07AC
unsigned byte
Level
0x07AD
unsigned byte
Unlock
0x07AE
unsigned byte

Magic 14
Type
0x07B0
unsigned byte
Level
0x07B1
unsigned byte
Unlock
0x07B2
unsigned byte

Magic 15
Type
0x07B4
unsigned byte
Level
0x07B5
unsigned byte
Unlock
0x07B6
unsigned byte

Magic 16
Type
0x07B8
unsigned byte
Level
0x07B9
unsigned byte
Unlock
0x07BA
unsigned byte

Magic 17
Type
0x07BC
unsigned byte
Level
0x07BD
unsigned byte
Unlock
0x07BE
unsigned byte

Magic 18
Type
0x07C0
unsigned byte
Level
0x07C1
unsigned byte
Unlock
0x07C2
unsigned byte
Data - Magic Skills - Gravity Egg
Refer to section named "Data - Magic Skills - Holy Egg" for more details.

Magic 1
Type
0x07C4
unsigned byte
Level
0x07C5
unsigned byte
Unlock
0x07C6
unsigned byte

Magic 2
Type
0x07C8
unsigned byte
Level
0x07C9
unsigned byte
Unlock
0x07CA
unsigned byte

Magic 3
Type
0x07CC
unsigned byte
Level
0x07CD
unsigned byte
Unlock
0x07CE
unsigned byte

Magic 4
Type
0x07D0
unsigned byte
Level
0x07D1
unsigned byte
Unlock
0x07D2
unsigned byte

Magic 5
Type
0x07D4
unsigned byte
Level
0x07D5
unsigned byte
Unlock
0x07D6
unsigned byte

Magic 6
Type
0x07D8
unsigned byte
Level
0x07D9
unsigned byte
Unlock
0x07DA
unsigned byte

Magic 7
Type
0x07DC
unsigned byte
Level
0x07DD
unsigned byte
Unlock
0x07DE
unsigned byte

Magic 8
Type
0x07E0
unsigned byte
Level
0x07E1
unsigned byte
Unlock
0x07E2
unsigned byte

Magic 9
Type
0x07E4
unsigned byte
Level
0x07E5
unsigned byte
Unlock
0x07E6
unsigned byte

Magic 10
Type
0x07E8
unsigned byte
Level
0x07E9
unsigned byte
Unlock
0x07EA
unsigned byte

Magic 11
Type
0x07EC
unsigned byte
Level
0x07ED
unsigned byte
Unlock
0x07EE
unsigned byte

Magic 12
Type
0x07F0
unsigned byte
Level
0x07F1
unsigned byte
Unlock
0x07F2
unsigned byte

Magic 13
Type
0x07F4
unsigned byte
Level
0x07F5
unsigned byte
Unlock
0x07F6
unsigned byte

Magic 14
Type
0x07F8
unsigned byte
Level
0x07F9
unsigned byte
Unlock
0x07FA
unsigned byte

Magic 15
Type
0x07FC
unsigned byte
Level
0x07FD
unsigned byte
Unlock
0x07FE
unsigned byte

Magic 16
Type
0x0800
unsigned byte
Level
0x0801
unsigned byte
Unlock
0x0802
unsigned byte

Magic 17
Type
0x0804
unsigned byte
Level
0x0805
unsigned byte
Unlock
0x0806
unsigned byte

Magic 18
Type
0x0808
unsigned byte
Level
0x0809
unsigned byte
Unlock
0x080A
unsigned byte
Data - Magic Skills - Soul Egg
Refer to section named "Data - Magic Skills - Holy Egg" for more details.

Magic 1
Type
0x080C
unsigned byte
Level
0x080D
unsigned byte
Unlock
0x080E
unsigned byte

Magic 2
Type
0x0810
unsigned byte
Level
0x0811
unsigned byte
Unlock
0x0812
unsigned byte

Magic 3
Type
0x0814
unsigned byte
Level
0x0815
unsigned byte
Unlock
0x0816
unsigned byte

Magic 4
Type
0x0818
unsigned byte
Level
0x0819
unsigned byte
Unlock
0x081A
unsigned byte

Magic 5
Type
0x081C
unsigned byte
Level
0x081D
unsigned byte
Unlock
0x081E
unsigned byte

Magic 6
Type
0x0820
unsigned byte
Level
0x0821
unsigned byte
Unlock
0x0822
unsigned byte

Magic 7
Type
0x0824
unsigned byte
Level
0x0825
unsigned byte
Unlock
0x0826
unsigned byte

Magic 8
Type
0x0828
unsigned byte
Level
0x0829
unsigned byte
Unlock
0x082A
unsigned byte

Magic 9
Type
0x082C
unsigned byte
Level
0x082D
unsigned byte
Unlock
0x082E
unsigned byte

Magic 10
Type
0x0830
unsigned byte
Level
0x0831
unsigned byte
Unlock
0x0832
unsigned byte

Magic 11
Type
0x0834
unsigned byte
Level
0x0835
unsigned byte
Unlock
0x0836
unsigned byte

Magic 12
Type
0x0838
unsigned byte
Level
0x0839
unsigned byte
Unlock
0x083A
unsigned byte

Magic 13
Type
0x083C
unsigned byte
Level
0x083D
unsigned byte
Unlock
0x083E
unsigned byte

Magic 14
Type
0x0840
unsigned byte
Level
0x0841
unsigned byte
Unlock
0x0842
unsigned byte

Magic 15
Type
0x0844
unsigned byte
Level
0x0845
unsigned byte
Unlock
0x0846
unsigned byte

Magic 16
Type
0x0848
unsigned byte
Level
0x0849
unsigned byte
Unlock
0x084A
unsigned byte

Magic 17
Type
0x084C
unsigned byte
Level
0x084D
unsigned byte
Unlock
0x084E
unsigned byte

Magic 18
Type
0x0850
unsigned byte
Level
0x0851
unsigned byte
Unlock
0x0852
unsigned byte
Data - Magic Skills - Star Egg
Refer to section named "Data - Magic Skills - Holy Egg" for more details.

Magic 1
Type
0x0854
unsigned byte
Level
0x0855
unsigned byte
Unlock
0x0856
unsigned byte

Magic 2
Type
0x0858
unsigned byte
Level
0x0859
unsigned byte
Unlock
0x085A
unsigned byte

Magic 3
Type
0x085C
unsigned byte
Level
0x085D
unsigned byte
Unlock
0x085E
unsigned byte

Magic 4
Type
0x0860
unsigned byte
Level
0x0861
unsigned byte
Unlock
0x0862
unsigned byte

Magic 5
Type
0x0864
unsigned byte
Level
0x0865
unsigned byte
Unlock
0x0866
unsigned byte

Magic 6
Type
0x0868
unsigned byte
Level
0x0869
unsigned byte
Unlock
0x086A
unsigned byte

Magic 7
Type
0x086C
unsigned byte
Level
0x086D
unsigned byte
Unlock
0x086E
unsigned byte

Magic 8
Type
0x0870
unsigned byte
Level
0x0871
unsigned byte
Unlock
0x0872
unsigned byte

Magic 9
Type
0x0874
unsigned byte
Level
0x0875
unsigned byte
Unlock
0x0876
unsigned byte

Magic 10
Type
0x0878
unsigned byte
Level
0x0879
unsigned byte
Unlock
0x087A
unsigned byte

Magic 11
Type
0x087C
unsigned byte
Level
0x087D
unsigned byte
Unlock
0x087E
unsigned byte

Magic 12
Type
0x0880
unsigned byte
Level
0x0881
unsigned byte
Unlock
0x0882
unsigned byte

Magic 13
Type
0x0884
unsigned byte
Level
0x0885
unsigned byte
Unlock
0x0886
unsigned byte

Magic 14
Type
0x0888
unsigned byte
Level
0x0889
unsigned byte
Unlock
0x088A
unsigned byte

Magic 15
Type
0x088C
unsigned byte
Level
0x088D
unsigned byte
Unlock
0x088E
unsigned byte

Magic 16
Type
0x0890
unsigned byte
Level
0x0891
unsigned byte
Unlock
0x0892
unsigned byte

Magic 17
Type
0x0894
unsigned byte
Level
0x0895
unsigned byte
Unlock
0x0896
unsigned byte

Magic 18
Type
0x0898
unsigned byte
Level
0x0899
unsigned byte
Unlock
0x089A
unsigned byte
Data - Magic Skills - Fairy Egg
Refer to section named "Data - Magic Skills - Holy Egg" for more details.

Magic 1
Type
0x092C
unsigned byte
Level
0x092D
unsigned byte
Unlock
0x092E
unsigned byte

Magic 2
Type
0x0930
unsigned byte
Level
0x0931
unsigned byte
Unlock
0x0932
unsigned byte

Magic 3
Type
0x0934
unsigned byte
Level
0x0935
unsigned byte
Unlock
0x0936
unsigned byte

Magic 4
Type
0x0938
unsigned byte
Level
0x0939
unsigned byte
Unlock
0x093A
unsigned byte

Magic 5
Type
0x093C
unsigned byte
Level
0x093D
unsigned byte
Unlock
0x093E
unsigned byte

Magic 6
Type
0x0940
unsigned byte
Level
0x0941
unsigned byte
Unlock
0x0942
unsigned byte

Magic 7
Type
0x0944
unsigned byte
Level
0x0945
unsigned byte
Unlock
0x0946
unsigned byte

Magic 8
Type
0x0948
unsigned byte
Level
0x0949
unsigned byte
Unlock
0x094A
unsigned byte

Magic 9
Type
0x094C
unsigned byte
Level
0x094D
unsigned byte
Unlock
0x094E
unsigned byte

Magic 10
Type
0x0950
unsigned byte
Level
0x0951
unsigned byte
Unlock
0x0952
unsigned byte

Magic 11
Type
0x0954
unsigned byte
Level
0x0955
unsigned byte
Unlock
0x0956
unsigned byte

Magic 12
Type
0x0958
unsigned byte
Level
0x0959
unsigned byte
Unlock
0x095A
unsigned byte

Magic 13
Type
0x095C
unsigned byte
Level
0x095D
unsigned byte
Unlock
0x095E
unsigned byte

Magic 14
Type
0x0960
unsigned byte
Level
0x0961
unsigned byte
Unlock
0x0962
unsigned byte

Magic 15
Type
0x0964
unsigned byte
Level
0x0965
unsigned byte
Unlock
0x0966
unsigned byte

Magic 16
Type
0x0968
unsigned byte
Level
0x0969
unsigned byte
Unlock
0x096A
unsigned byte

Magic 17
Type
0x096C
unsigned byte
Level
0x096D
unsigned byte
Unlock
0x096E
unsigned byte

Magic 18
Type
0x0970
unsigned byte
Level
0x0971
unsigned byte
Unlock
0x0972
unsigned byte
Data - Magic Skills - Dragon Egg
Refer to section named "Data - Magic Skills - Holy Egg" for more details.

Magic 1
Type
0x0974
unsigned byte
Level
0x0975
unsigned byte
Unlock
0x0976
unsigned byte

Magic 2
Type
0x0978
unsigned byte
Level
0x0979
unsigned byte
Unlock
0x097A
unsigned byte

Magic 3
Type
0x097C
unsigned byte
Level
0x097D
unsigned byte
Unlock
0x097E
unsigned byte

Magic 4
Type
0x0980
unsigned byte
Level
0x0981
unsigned byte
Unlock
0x0982
unsigned byte

Magic 5
Type
0x0984
unsigned byte
Level
0x0985
unsigned byte
Unlock
0x0986
unsigned byte

Magic 6
Type
0x0988
unsigned byte
Level
0x0989
unsigned byte
Unlock
0x098A
unsigned byte

Magic 7
Type
0x098C
unsigned byte
Level
0x098D
unsigned byte
Unlock
0x098E
unsigned byte

Magic 8
Type
0x0990
unsigned byte
Level
0x0991
unsigned byte
Unlock
0x0992
unsigned byte

Magic 9
Type
0x0994
unsigned byte
Level
0x0995
unsigned byte
Unlock
0x0996
unsigned byte

Magic 10
Type
0x0998
unsigned byte
Level
0x0999
unsigned byte
Unlock
0x099A
unsigned byte

Magic 11
Type
0x099C
unsigned byte
Level
0x099D
unsigned byte
Unlock
0x099E
unsigned byte

Magic 12
Type
0x09A0
unsigned byte
Level
0x09A1
unsigned byte
Unlock
0x09A2
unsigned byte

Magic 13
Type
0x09A4
unsigned byte
Level
0x09A5
unsigned byte
Unlock
0x09A6
unsigned byte

Magic 14
Type
0x09A8
unsigned byte
Level
0x09A9
unsigned byte
Unlock
0x09AA
unsigned byte

Magic 15
Type
0x09AC
unsigned byte
Level
0x09AD
unsigned byte
Unlock
0x09AE
unsigned byte

Magic 16
Type
0x09B0
unsigned byte
Level
0x09B1
unsigned byte
Unlock
0x09B2
unsigned byte

Magic 17
Type
0x09B4
unsigned byte
Level
0x09B5
unsigned byte
Unlock
0x09B6
unsigned byte

Magic 18
Type
0x09B8
unsigned byte
Level
0x09B9
unsigned byte
Unlock
0x09BA
unsigned byte
Data - Skills (1 of 3)
I didn't include Book of Learning since it's used in the tutorial only.

  • Each skill Type is from a list that contains all of the skills making editing by hand difficult.
  • Level is from 0 to 5. Haven't gone above 5.
  • Unlock seems to be a requirement of total points invested in the book. Haven't tried to mess with it, but it should work.

Adventure Book

Skill 1
Type
0x09D4
unsigned byte
Level
0x09D5
unsigned byte
Unlock
0x09D6
unsigned byte

Skill 2
Type
0x09D8
unsigned byte
Level
0x09D9
unsigned byte
Unlock
0x09DA
unsigned byte

Skill 3
Type
0x09DC
unsigned byte
Level
0x09DD
unsigned byte
Unlock
0x09DE
unsigned byte

Skill 4
Type
0x09E0
unsigned byte
Level
0x09E1
unsigned byte
Unlock
0x09E2
unsigned byte

Skill 5
Type
0x09E4
unsigned byte
Level
0x09E5
unsigned byte
Unlock
0x09E6
unsigned byte

Skill 6
Type
0x09E8
unsigned byte
Level
0x09E9
unsigned byte
Unlock
0x09EA
unsigned byte

Book of Wizards

Skill 1
Type
0x09EC
unsigned byte
Level
0x09ED
unsigned byte
Unlock
0x09EE
unsigned byte

Skill 2
Type
0x09F0
unsigned byte
Level
0x09F1
unsigned byte
Unlock
0x09F2
unsigned byte

Skill 3
Type
0x09F4
unsigned byte
Level
0x09F5
unsigned byte
Unlock
0x09F6
unsigned byte

Skill 4
Type
0x09F8
unsigned byte
Level
0x09F9
unsigned byte
Unlock
0x09FA
unsigned byte

Skill 5
Type
0x09FC
unsigned byte
Level
0x09FD
unsigned byte
Unlock
0x09FE
unsigned byte

Skill 6
Type
0x0A00
unsigned byte
Level
0x0A01
unsigned byte
Unlock
0x0A02
unsigned byte

Book of Warriors

Skill 1
Type
0x0A04
unsigned byte
Level
0x0A05
unsigned byte
Unlock
0x0A06
unsigned byte

Skill 2
Type
0x0A08
unsigned byte
Level
0x0A09
unsigned byte
Unlock
0x0A0A
unsigned byte

Skill 3
Type
0x0A0C
unsigned byte
Level
0x0A0D
unsigned byte
Unlock
0x0A0E
unsigned byte

Skill 4
Type
0x0A10
unsigned byte
Level
0x0A11
unsigned byte
Unlock
0x0A12
unsigned byte

Skill 5
Type
0x0A14
unsigned byte
Level
0x0A15
unsigned byte
Unlock
0x0A16
unsigned byte

Skill 6
Type
0x0A18
unsigned byte
Level
0x0A19
unsigned byte
Unlock
0x0A1A
unsigned byte
Data - Skills (2 of 3)
Refer to section named "Data - Skills (1 of 3)" for more details.

Book of Priests

Skill 1
Type
0x0A1C
unsigned byte
Level
0x0A1D
unsigned byte
Unlock
0x0A1E
unsigned byte

Skill 2
Type
0x0A20
unsigned byte
Level
0x0A21
unsigned byte
Unlock
0x0A22
unsigned byte

Skill 3
Type
0x0A24
unsigned byte
Level
0x0A25
unsigned byte
Unlock
0x0A26
unsigned byte

Skill 4
Type
0x0A28
unsigned byte
Level
0x0A29
unsigned byte
Unlock
0x0A2A
unsigned byte

Skill 5
Type
0x0A2C
unsigned byte
Level
0x0A2D
unsigned byte
Unlock
0x0A2E
unsigned byte

Skill 6
Type
0x0A30
unsigned byte
Level
0x0A31
unsigned byte
Unlock
0x0A32
unsigned byte

Book of Gales

Skill 1
Type
0x0A34
unsigned byte
Level
0x0A35
unsigned byte
Unlock
0x0A36
unsigned byte

Skill 2
Type
0x0A38
unsigned byte
Level
0x0A39
unsigned byte
Unlock
0x0A3A
unsigned byte

Skill 3
Type
0x0A3C
unsigned byte
Level
0x0A3D
unsigned byte
Unlock
0x0A3E
unsigned byte

Skill 4
Type
0x0A40
unsigned byte
Level
0x0A41
unsigned byte
Unlock
0x0A42
unsigned byte

Skill 5
Type
0x0A44
unsigned byte
Level
0x0A45
unsigned byte
Unlock
0x0A46
unsigned byte

Skill 6
Type
0x0A48
unsigned byte
Level
0x0A49
unsigned byte
Unlock
0x0A4A
unsigned byte

Book of Swords

Skill 1
Type
0x0A4C
unsigned byte
Level
0x0A4D
unsigned byte
Unlock
0x0A4E
unsigned byte

Skill 2
Type
0x0A50
unsigned byte
Level
0x0A51
unsigned byte
Unlock
0x0A52
unsigned byte

Skill 3
Type
0x0A54
unsigned byte
Level
0x0A55
unsigned byte
Unlock
0x0A56
unsigned byte

Skill 4
Type
0x0A58
unsigned byte
Level
0x0A59
unsigned byte
Unlock
0x0A5A
unsigned byte

Skill 5
Type
0x0A5C
unsigned byte
Level
0x0A5D
unsigned byte
Unlock
0x0A5E
unsigned byte

Skill 6
Type
0x0A60
unsigned byte
Level
0x0A61
unsigned byte
Unlock
0x0A62
unsigned byte
Data - Skills (3 of 3)
Refer to section named "Data - Skills (1 of 3)" for more details.

Book of War

Skill 1
Type
0x0A64
unsigned byte
Level
0x0A65
unsigned byte
Unlock
0x0A66
unsigned byte

Skill 2
Type
0x0A68
unsigned byte
Level
0x0A69
unsigned byte
Unlock
0x0A6A
unsigned byte

Skill 3
Type
0x0A6C
unsigned byte
Level
0x0A6D
unsigned byte
Unlock
0x0A6E
unsigned byte

Skill 4
Type
0x0A70
unsigned byte
Level
0x0A71
unsigned byte
Unlock
0x0A72
unsigned byte

Skill 5
Type
0x0A74
unsigned byte
Level
0x0A75
unsigned byte
Unlock
0x0A76
unsigned byte

Skill 6
Type
0x0A78
unsigned byte
Level
0x0A79
unsigned byte
Unlock
0x0A7A
unsigned byte

Book of Sages

Skill 1
Type
0x0A7C
unsigned byte
Level
0x0A7D
unsigned byte
Unlock
0x0A7E
unsigned byte

Skill 2
Type
0x0A80
unsigned byte
Level
0x0A81
unsigned byte
Unlock
0x0A82
unsigned byte

Skill 3
Type
0x0A84
unsigned byte
Level
0x0A85
unsigned byte
Unlock
0x0A86
unsigned byte

Skill 4
Type
0x0A88
unsigned byte
Level
0x0A89
unsigned byte
Unlock
0x0A8A
unsigned byte

Skill 5
Type
0x0A8C
unsigned byte
Level
0x0A8D
unsigned byte
Unlock
0x0A8E
unsigned byte

Skill 6
Type
0x0A90
unsigned byte
Level
0x0A91
unsigned byte
Unlock
0x0A92
unsigned byte
Data - Valuables
Pretty self explanatory set of data. Haven't tried to have more than one of each skill book.
99 is the soft limit for each of these. You can go above it, but it won't display correctly in the inventory.

  • Debug Items are untested.
  • Missanga seems to calculate it's value from Mareg's skill levels.

Debug Item 01
0x0AB5
unsigned byte
Debug Item 02
0x0AB6
unsigned byte
Roan's Medal
0x0ABF
unsigned byte
Poff Nut
0x0AC0
unsigned byte
Missanga
0x0AC1
unsigned byte
Adventure Book
0x0AE7
unsigned byte
Book of Wizards
0x0AE8
unsigned byte
Book of Warriors
0x0AE9
unsigned byte
Book of Priests
0x0AEA
unsigned byte
Book of Gales
0x0AEB
unsigned byte
Book of Swords
0x0AEC
unsigned byte
Book of War
0x0AED
unsigned byte
Book of Sages
0x0AEE
unsigned byte
Book of Learning
0x0AEF
unsigned byte
Seed of Life
0x0AF1
unsigned byte
Seed of Spells
0x0AF2
unsigned byte
Seed of Moves
0x0AF3
unsigned byte
Seed of Power
0x0AF4
unsigned byte
Seed of Defense
0x0AF5
unsigned byte
Seed of Swift
0x0AF6
unsigned byte
Seed of Running
0x0AF7
unsigned byte
Seed of Magic
0x0AF8
unsigned byte
Seed of Psyche
0x0AF9
unsigned byte
All-Around Seed
0x0AFA
unsigned byte
Omnipotent Seed
0x0AFB
unsigned byte
Lore of Moves
0x0AFC
unsigned byte
Lore of Magic
0x0AFD
unsigned byte
Miracle Scales
0x0B05
unsigned byte
Soul of a Hero
0x0B06
unsigned byte
Astral Miracle
0x0B07
unsigned byte
Ethereal Miracle
0x0B08
unsigned byte
Data - Consumables
99 is the soft limit for each of these. You can go above it, but it won't display correctly in the inventory.

Mystic Potion
0x0B19
unsigned byte
Scarlet Potion
0x0B1A
unsigned byte
Healing Fruit
0x0B1B
unsigned byte
Holy Wound Salve
0x0B1C
unsigned byte
Wound Salve
0x0B1D
unsigned byte
Medicinal Herb
0x0B1E
unsigned byte
Potion of Azure
0x0B23
unsigned byte
Healing Incense
0x0B24
unsigned byte
Scroll of Alheal
0x0B25
unsigned byte
Healing Herb
0x0B26
unsigned byte
Miracle Elixir
0x0B2D
unsigned byte
Hero's Elixir
0x0B2E
unsigned byte
Yomi's Elixir
0x0B2F
unsigned byte
Panacea
0x0B30
unsigned byte
Purifying Herb
0x0B31
unsigned byte
Poison Antidote
0x0B32
unsigned byte
Paralysis Salve
0x0B33
unsigned byte
Torte's Reedpipe
0x0B34
unsigned byte
Eye Drops
0x0B35
unsigned byte
Smelling Salts
0x0B36
unsigned byte
Blessing Scroll
0x0B37
unsigned byte
Move Blessing
0x0B38
unsigned byte
Magic Blessing
0x0B39
unsigned byte
Vaccine
0x0B3A
unsigned byte
Indigo Potion
0x0B41
unsigned byte
Magical Medicine
0x0B42
unsigned byte
Grail Fruit
0x0B43
unsigned byte
Lumir Flower
0x0B44
unsigned byte
Nut of Light
0x0B4A
unsigned byte
Golden Potion
0x0B4B
unsigned byte
Baobab Fruit
0x0B4C
unsigned byte
Butter Roll
0x0B4D
unsigned byte
Blueberry
0x0B4E
unsigned byte
Caterpillar Soup
0x0B55
unsigned byte
Fresh Sandwich
0x0B56
unsigned byte
Toad Oil
0x0B57
unsigned byte
Calming Harp
0x0B5F
unsigned byte
Mana Harp
0x0B60
unsigned byte
Lion Harp
0x0B61
unsigned byte
Golden Nut
0x0B7A
unsigned byte
Golden Statue
0x0B7B
unsigned byte
Hyper Mogay Bomb
0x0B7D
unsigned byte
Super Mogay Bomb
0x0B7E
unsigned byte
Mogay Bomb
0x0B7F
unsigned byte
Meteor Scroll
0x0B80
unsigned byte
Thor Stone
0x0B81
unsigned byte
Red Bird Stone
0x0B82
unsigned byte
Icefang Stone
0x0B83
unsigned byte
Electrum Stone
0x0B84
unsigned byte
Gale Stone
0x0B85
unsigned byte
Flame Stone
0x0B86
unsigned byte
Quake Stone
0x0B87
unsigned byte
Fireball Scroll
0x0B88
unsigned byte
Whirlwind Scroll
0x0B89
unsigned byte
Serpentine
0x0B8A
unsigned byte
Spiderweb
0x0B8B
unsigned byte
Dynamite
0x0B8C
unsigned byte
Red Goblin Toad
0x0B8D
unsigned byte
Holy Ashes
0x0B8E
unsigned byte
Insecticide Bomb
0x0B8F
unsigned byte
Makibishi
0x0B90
unsigned byte
Sandman Whiskers
0x0B91
unsigned byte
Mushroom Cloud
0x0B92
unsigned byte
Firebomb
0x0B93
unsigned byte
Hand Grenade
0x0B94
unsigned byte
Goblin Toadstool
0x0B95
unsigned byte
Platinum Feather
0x0B96
unsigned byte
Gold Feather
0x0B97
unsigned byte
Silver Feather
0x0B98
unsigned byte
Scattering Stone
0x0B99
unsigned byte
Battle Manicure
0x0B9B
unsigned byte
Face Paint
0x0B9C
unsigned byte
Demon Ash
0x0B9D
unsigned byte
Muscle Mushroom
0x0B9E
unsigned byte
Guard Mushroom
0x0B9F
unsigned byte
Speed Mushroom
0x0BA0
unsigned byte
Runner Mushroom
0x0BA1
unsigned byte
WOW! Scroll
0x0BA2
unsigned byte
Diggin' Scroll
0x0BA3
unsigned byte
Speedy Scroll
0x0BA4
unsigned byte
Runner Scroll
0x0BA5
unsigned byte
Myriad Power Nut
0x0BA6
unsigned byte
Patience Nut
0x0BA7
unsigned byte
Sympathy Nut
0x0BA8
unsigned byte
Swiftness Nut
0x0BA9
unsigned byte
Powerless Nut
0x0BAA
unsigned byte
Weakness Nut
0x0BAB
unsigned byte
Exhaustion Nut
0x0BAC
unsigned byte
Slowpoke Nut
0x0BAD
unsigned byte
Kuko Berry
0x0BAF
unsigned byte
Sleeping Harp
0x0BB0
unsigned byte
Silence Lute
0x0BB1
unsigned byte
Mermaid Harp
0x0BB2
unsigned byte
Bone Harp
0x0BB3
unsigned byte
Data - Weapons
99 is the soft limit for each of these. You can go above it, but it won't display correctly in the inventory.

Granasaber
0x0BE1
unsigned byte
Thor Sword
0x0BE2
unsigned byte
Icefang Sword
0x0BE3
unsigned byte
Blazing Sword
0x0BE4
unsigned byte
Holy Soul Blade
0x0BE5
unsigned byte
Maken Valborg
0x0BE6
unsigned byte
Silence Sword
0x0BE7
unsigned byte
Silver Freeze
0x0BE8
unsigned byte
Sword of Mikage
0x0BE9
unsigned byte
Fine Broadsword
0x0BEA
unsigned byte
Claymore
0x0BEB
unsigned byte
Ogre Slayer
0x0BEC
unsigned byte
Swordfish Sword
0x0BED
unsigned byte
Shadowblade
0x0BEE
unsigned byte
Flamberge
0x0BEF
unsigned byte
Sword of Purity
0x0BF0
unsigned byte
Samurai Blade
0x0BF1
unsigned byte
Army Saber
0x0BF2
unsigned byte
Shamshir
0x0BF3
unsigned byte
Flax
0x0BF4
unsigned byte
Geoblade
0x0BF5
unsigned byte
Zero Broadsword
0x0BF6
unsigned byte
Holy Ghost Staff
0x0BFF
unsigned byte
Huge Flail
0x0C00
unsigned byte
Guardian Staff
0x0C01
unsigned byte
Decalogue Staff
0x0C02
unsigned byte
Priest's Staff
0x0C03
unsigned byte
Golden Flail
0x0C04
unsigned byte
Silver Flail
0x0C05
unsigned byte
Aromatic Root
0x0C06
unsigned byte
Buster Flail
0x0C07
unsigned byte
Lullaby Staff
0x0C08
unsigned byte
Quarry Staff
0x0C09
unsigned byte
Whirlwind Staff
0x0C0A
unsigned byte
Blazing Staff
0x0C0B
unsigned byte
Sister's Staff
0x0C0C
unsigned byte
Oracle's Staff
0x0C0D
unsigned byte
Battle Rod
0x0C0E
unsigned byte
Flame Staff
0x0C0F
unsigned byte
Iron Rod
0x0C10
unsigned byte
Prayer Staff
0x0C11
unsigned byte
Dragon Wand
0x0C12
unsigned byte
Useless Staff
0x0C13
unsigned byte
Black Angel Bow
0x0C1D
unsigned byte
Exorcism Bow
0x0C1E
unsigned byte
Dread Bow
0x0C1F
unsigned byte
Arbalest
0x0C20
unsigned byte
Flying Fish Bow
0x0C21
unsigned byte
Burning Bow
0x0C22
unsigned byte
Crossbow
0x0C23
unsigned byte
Unstrung Bow
0x0C24
unsigned byte
Brave Dirk
0x0C3B
unsigned byte
Dirk
0x0C3C
unsigned byte
Gladius
0x0C3D
unsigned byte
Sword Breaker
0x0C3E
unsigned byte
Soul Eater
0x0C3F
unsigned byte
Main Gauche
0x0C40
unsigned byte
Warp Knife
0x0C41
unsigned byte
Poisoned Knife
0x0C42
unsigned byte
Flint Knife
0x0C43
unsigned byte
Ice Pick
0x0C44
unsigned byte
Hunter's Knife
0x0C45
unsigned byte
Multiple Knife
0x0C46
unsigned byte
Dull Knife
0x0C47
unsigned byte
Phoenix Ring
0x0C59
unsigned byte
Demon Shuriken
0x0C5A
unsigned byte
Wind Cutter
0x0C5B
unsigned byte
Angel Circle
0x0C5C
unsigned byte
Balor
0x0C5D
unsigned byte
Binding Circle
0x0C5E
unsigned byte
Bloody Saucer
0x0C5F
unsigned byte
Discus
0x0C60
unsigned byte
Double Moon
0x0C61
unsigned byte
Moon Claw
0x0C62
unsigned byte
Rusty Hoop
0x0C63
unsigned byte
Leo Rex Battleaxe
0x0C77
unsigned byte
Rune Axe
0x0C78
unsigned byte
Tundra Battleaxe
0x0C79
unsigned byte
Inferno Battleaxe
0x0C7A
unsigned byte
Bardiche
0x0C7B
unsigned byte
Earthen Axe
0x0C7C
unsigned byte
Halberd
0x0C7D
unsigned byte
Dragonfly Slayer
0x0C7E
unsigned byte
Dragonslayer Axe
0x0C7F
unsigned byte
Hammer Axe
0x0C80
unsigned byte
Battleaxe
0x0C81
unsigned byte
Powerless Axe
0x0C82
unsigned byte
Data - Armors
99 is the soft limit for each of these. You can go above it, but it won't display correctly in the inventory.

Holy Sword Armor
0x0CA9
unsigned byte
Moonstone Armor
0x0CAA
unsigned byte
Paladin Armor
0x0CAB
unsigned byte
Halo Armor
0x0CAC
unsigned byte
Dragonscale Mail
0x0CAD
unsigned byte
Warrior Mail
0x0CAE
unsigned byte
Black Quartz Mail
0x0CAF
unsigned byte
Swordfish Armor
0x0CB0
unsigned byte
Plate Mail
0x0CB1
unsigned byte
Shoulder Guards
0x0CB2
unsigned byte
Hero's Cuirass
0x0CBD
unsigned byte
Reflect Mail
0x0CBE
unsigned byte
Aura Armor
0x0CBF
unsigned byte
Dark Armor
0x0CC0
unsigned byte
Flame Armor
0x0CC1
unsigned byte
Earthen Cuirass
0x0CC2
unsigned byte
Ancient Cuirass
0x0CC3
unsigned byte
Shell Armor
0x0CC4
unsigned byte
Chain Mail
0x0CC5
unsigned byte
Leather Armor
0x0CC6
unsigned byte
Valkyrie Dress
0x0CC7
unsigned byte
Tenma's Dress
0x0CC8
unsigned byte
Resist Dress
0x0CC9
unsigned byte
Sylph's Robe
0x0CCA
unsigned byte
Red Fur Coat
0x0CCB
unsigned byte
Mithril Dress
0x0CCC
unsigned byte
Flare Dress
0x0CCD
unsigned byte
Crimson Bolero
0x0CCE
unsigned byte
Tight Dress
0x0CCF
unsigned byte
Priestess Robe
0x0CD1
unsigned byte
Angel's Robe
0x0CD2
unsigned byte
Imperial Garb
0x0CD3
unsigned byte
Priest's Robe
0x0CD4
unsigned byte
Purple Robe
0x0CD5
unsigned byte
Sister's Robe
0x0CD6
unsigned byte
Pixie's Robe
0x0CD7
unsigned byte
Guardian Robe
0x0CD8
unsigned byte
Sun Robe
0x0CDB
unsigned byte
Holy Clothes
0x0CDC
unsigned byte
Ninja Clothes
0x0CDD
unsigned byte
Dragon Vest
0x0CDE
unsigned byte
Ancient Suit
0x0CDF
unsigned byte
Lion Field Garb
0x0CE0
unsigned byte
Illusion Clothes
0x0CE1
unsigned byte
Quilted Silk
0x0CE2
unsigned byte
Adventure Suit
0x0CE3
unsigned byte
Leather Jacket
0x0CE4
unsigned byte
Cuir Bouilli
0x0CE5
unsigned byte
Data - Headgear
99 is the soft limit for each of these. You can go above it, but it won't display correctly in the inventory.

God of War Helm
0x0CEF
unsigned byte
Reflect Helm
0x0CF0
unsigned byte
Paladin Helmet
0x0CF1
unsigned byte
Adamantine Helm
0x0CF2
unsigned byte
Charisma Helm
0x0CF3
unsigned byte
Dragon Bone Helm
0x0CF4
unsigned byte
Battle Helm
0x0CF5
unsigned byte
Black Quartz Helm
0x0CF6
unsigned byte
Ogre Helm
0x0CF7
unsigned byte
Swordfish Helmet
0x0CF8
unsigned byte
Iron Helm
0x0CF9
unsigned byte
Stone Head
0x0CFA
unsigned byte
Holy Crown
0x0D03
unsigned byte
Loving Ribbon
0x0D04
unsigned byte
Starlight Tiara
0x0D05
unsigned byte
Moonlight Tiara
0x0D06
unsigned byte
Fairy Ribbon
0x0D07
unsigned byte
Azure Barrette
0x0D08
unsigned byte
Lightning Tiara
0x0D09
unsigned byte
Magnolia Bandana
0x0D0A
unsigned byte
Ruby Barrette
0x0D0B
unsigned byte
Silk Hair Band
0x0D0C
unsigned byte
Red Hair Ribbon
0x0D0D
unsigned byte
Illusion Bandana
0x0D17
unsigned byte
Man's Headband
0x0D18
unsigned byte
Flame Bandana
0x0D19
unsigned byte
Mercury Bandana
0x0D1A
unsigned byte
Black Band
0x0D1B
unsigned byte
Bravery Bandana
0x0D1C
unsigned byte
Hide Turban
0x0D1D
unsigned byte
Iron Bandana
0x0D1E
unsigned byte
Leather Bandana
0x0D1F
unsigned byte
Bandana
0x0D20
unsigned byte
Hair Band
0x0D21
unsigned byte
Sages Hat
0x0D2B
unsigned byte
Priest's Hat
0x0D2C
unsigned byte
Phoenix Hat
0x0D2D
unsigned byte
Wizard's Hat
0x0D2E
unsigned byte
Sister's Hat
0x0D2F
unsigned byte
Feathered Hat
0x0D30
unsigned byte
Guardian Hat
0x0D31
unsigned byte
Traveler's Hat
0x0D32
unsigned byte
Climbing Hat
0x0D33
unsigned byte
Data - Footwear
99 is the soft limit for each of these. You can go above it, but it won't display correctly in the inventory.

Lion Boots
0x0D3F
unsigned byte
Elf King's Boots
0x0D40
unsigned byte
Royal Boots
0x0D41
unsigned byte
Wolf Boots
0x0D42
unsigned byte
Battle Boots
0x0D43
unsigned byte
Warrior Leggings
0x0D44
unsigned byte
Mach Boots
0x0D45
unsigned byte
Heavy Boots
0x0D46
unsigned byte
Wing Boots
0x0D47
unsigned byte
Hunter's Boots
0x0D48
unsigned byte
Leather Leggings
0x0D49
unsigned byte
Glass Slippers
0x0D53
unsigned byte
Queen Heels
0x0D54
unsigned byte
Red Shoes
0x0D55
unsigned byte
Goddess Hi-Heels
0x0D56
unsigned byte
Rainbow Hi-Heels
0x0D57
unsigned byte
Magic Hi-Heels
0x0D58
unsigned byte
Hi-Heels
0x0D59
unsigned byte
Charming Heels
0x0D5A
unsigned byte
Ogre Shoes
0x0D5D
unsigned byte
Shadow Shoes
0x0D5E
unsigned byte
Warp Shoes
0x0D5F
unsigned byte
Man's Iron Clogs
0x0D60
unsigned byte
Flame Shoes
0x0D61
unsigned byte
Odd Wooden Clogs
0x0D62
unsigned byte
Giant's Shoes
0x0D63
unsigned byte
Dash Shoes
0x0D64
unsigned byte
Climbing Boots
0x0D65
unsigned byte
Children's Shoes
0x0D66
unsigned byte
Crampons
0x0D67
unsigned byte
Pumps
0x0D68
unsigned byte
Data - Accessories
Haven't gone above 1 on Mana Eggs. It might not crash the game to have more than one of each.
99 is the soft limit for each of these. You can go above it, but it won't display correctly in the inventory.
Mana Eggs aren't really "accessories", but they are lumped in the same area of memory.

Holy Egg
0x0D71
unsigned byte
Chaos Egg
0x0D72
unsigned byte
Mist Egg
0x0D73
unsigned byte
Gravity Egg
0x0D74
unsigned byte
Soul Egg
0x0D75
unsigned byte
Star Egg
0x0D76
unsigned byte
Tutor Egg
0x0D77
unsigned byte
Change Egg
0x0D78
unsigned byte
Fairy Egg
0x0D79
unsigned byte
Dragon Egg
0x0D7A
unsigned byte
Mana Crystals
0x0D7B
unsigned byte
Demon Necklace
0x0D7C
unsigned byte
Mana Insignia
0x0D7D
unsigned byte
Energy charm
0x0D7E
unsigned byte
Divine Talisman
0x0D7F
unsigned byte
Soul of Asura
0x0D80
unsigned byte
Demon's Tears
0x0D81
unsigned byte
Angel's Ring
0x0D82
unsigned byte
Relief Tag
0x0D83
unsigned byte
King's Pride
0x0D84
unsigned byte
Black Belt
0x0D85
unsigned byte
Energy Ring
0x0D86
unsigned byte
Rage Ring
0x0D87
unsigned byte
Dragon Scales
0x0D88
unsigned byte
Dark Ring
0x0D89
unsigned byte
Forebear Necklace
0x0D8A
unsigned byte
Rune Necklace
0x0D8B
unsigned byte
Meteor Earrings
0x0D8C
unsigned byte
Mirage Earrings
0x0D8D
unsigned byte
Reflection Ring
0x0D8E
unsigned byte
Heavy Stone
0x0D8F
unsigned byte
Healing Ring
0x0D90
unsigned byte
Revival Gem
0x0D91
unsigned byte
Bond of Trust
0x0D92
unsigned byte
Jet Black Cape
0x0D98
unsigned byte
Kojin charm
0x0D99
unsigned byte
Salamander Tail
0x0D9A
unsigned byte
Fire Pendant
0x0D9B
unsigned byte
North Wind Cape
0x0D9C
unsigned byte
Crystal Brooch
0x0D9D
unsigned byte
Thunder Ring
0x0D9E
unsigned byte
Arctic Cape
0x0D9F
unsigned byte
Fire charm
0x0DA0
unsigned byte
Wind charm
0x0DA1
unsigned byte
Earth charm
0x0DA2
unsigned byte
Lightning charm
0x0DA3
unsigned byte
Blizzard charm
0x0DA4
unsigned byte
Mystic Veil
0x0DAD
unsigned byte
Ring of Guarding
0x0DAE
unsigned byte
Mars Talisman
0x0DAF
unsigned byte
Coral Necklace
0x0DB0
unsigned byte
Talisman
0x0DB1
unsigned byte
Crescent Jade
0x0DB2
unsigned byte
Raincoat
0x0DB3
unsigned byte
Snake Earrings
0x0DB4
unsigned byte
Poison charm
0x0DB5
unsigned byte
Sleep charm
0x0DB6
unsigned byte
Confusion charm
0x0DB7
unsigned byte
Paralysis charm
0x0DB8
unsigned byte
Move Block charm
0x0DB9
unsigned byte
Magic Block charm
0x0DBA
unsigned byte
Plague charm
0x0DBB
unsigned byte
Heracles Belt
0x0DC1
unsigned byte
Titan's Ring
0x0DC2
unsigned byte
Hercules' Brace
0x0DC3
unsigned byte
Jade charm
0x0DC4
unsigned byte
Shogun's Brace
0x0DC5
unsigned byte
Magical Brace
0x0DC6
unsigned byte
Gauntlet
0x0DC7
unsigned byte
Silver Bracelet
0x0DC8
unsigned byte
Leather Brace
0x0DC9
unsigned byte
Sonic Belt
0x0DCA
unsigned byte
Hurricane Belt
0x0DCB
unsigned byte
Godspeed Ring
0x0DCC
unsigned byte
Anklet
0x0DCD
unsigned byte
Moebius Ring
0x0DCE
unsigned byte
Pretty Necklace
0x0DCF
unsigned byte
Pretty Bracelet
0x0DD0
unsigned byte
Pretty Ring
0x0DD1
unsigned byte
Friend's Necklace
0x0DD2
unsigned byte
Data - Location
Room defines the room in a certain area and is dependent on Area. Area defines the area you are currently in. Messing with the location can be difficult because you need to also know the room and player position.

Room
0x0EB8
unsigned byte
Area
0x0EB9
unsigned byte

List of Areas in hex format:
  • D0 = Witt Forest
  • 20 = Carbo Village
  • 28 = Garmia Tower
  • 2C = Inor Mountains
  • 30 = Agear Village
  • 34 = Durham Cave
  • 38 = Baked Plains
  • 3C = Liligue City
  • 40 = Liligue Cave
  • 44 = Lumir Forest
  • 4C = Mirumu Village
  • 50 = Mysterious Fissure / Aira's Space
  • 54 = St. Heim Mountains
  • 58 = St. Heim Papal State
  • 5C = Cathedral
  • 60 = Raul Hills
  • 64 = Cyrum Kingdom
  • 70 = Cyrum Kingdom (Revisit)
  • 66 = Cyrum Castle, Secret Passage
  • 68 = Cyrum Castle
  • 6C = Underground Plant
  • 78 = Ceceile Reef
  • 7C = Garlan Village
  • 80 = Grail Mountain Road
  • 88 = Ghoss Forest
  • 8C = Nanan Village
  • 90 = The Great Rift
  • 92 = Demon's Law
  • 98 = Valmar's Body
  • 9C = Valmar's Moon
  • A0 = Birthplace of the Gods
  • A4 = New Valmar
Data - Plot Events
Messing with the plot can easily case a soft-lock. For example, after entering the map screen you can't choose a location. The value makes sense in Big Endian mode.

Plot Events
0x0EBC
unsigned short

Some, not all, Plot Events in hex format:
  • 28 50 = Received a new job
  • 28 A0 = Entered Carbo Village
  • 29 04 = Talked to Father Carius in the church
  • 29 68 = Talked to Father Carius in the inn
  • 29 CC = Elena started following Ryudo
  • 2A 30 = Ambushed by two Dodo in Black Forest
  • 2A 94 = Talked to Elena in Black Forest
  • 2A F8 = Entered Garmia Tower area
  • 2C 88 = Entered Garmia Tower
  • 2C EC = Fought two Gargoyles
  • 2F A8 = Returned to Carbo Village
  • 30 0C = Talked to Elena in Carbo Village
  • 30 70 = Talked to Father Carius outside the church
  • 30 D4 = Talked to Father Carius in the church
  • 31 38 = Fought Millenia
  • 31 9C = Returned to Carbo Inn
  • 32 00 = Elena joined the party
  • 32 64 = Talked to Elena in Inor Mountains
  • 33 90 = Camped at Inor Mountains
  • 33 F4 = Entered Agear Town
  • 35 20 = Millenia joined the party
  • 35 84 = Fought Troglodytes
  • 35 E8 = Roan joined the party
  • 36 4C = Fought Durham Minotaur
  • 36 B0 = Exited Durham Cave
  • 37 14 = Talked in Agear Inn
  • 38 A4 = Camped at Baked Plains, 3
  • 39 D0 = Talked about Melfice
  • 3A 34 = Entered Liligue City
  • 3A 70 = Stayed at Liligue Inn
  • 3A FC = Talked to Engineer
  • 3B C4 = Exited Gadan's house
  • 3C 28 = Talked to Father of Liligue church
  • 3D 54 = Mareg joined the party
  • 3D B8 = Opened the way to Liligue Cave
  • 3E 1C = Entered Liligue Cave, Caverns
  • 3E 80 = Fought Valmar's Tongue
  • 3F AC = Talked to Engineer in Liligue City, Skyway Station
  • 41 A0 = Regrouped with Elena
  • 43 30 = Exited Garden of Dreams
  • 43 94 = Entered Mirumu Village
  • 43 F8 = Entered Mirumu Inn
  • 46 50 = Selene put the village in quarantine
  • 47 E0 = Stayed in Mirumu Inn
  • 4A 9C = Approached Mysterious Fissure
  • 4B 64 = Talked in Mirumu Inn
  • 4B C8 = Talked in Mirumu Town Hall
  • 4C 2C = Aira went into the shed
  • 4C 90 = Talked to Aira in Mirumu, Shed
  • 4C F4 = Talked to Aira in Mysterious Fissure, Depths
  • 4D BC = Returned to Mirumu Village
  • 4E 20 = Talked to people near Sandra's House
  • 4E 84 = Talked to Sandra
  • 4E E8 = Millenia opened a portal in Garden of Dreams
  • 4F 1A = Entered Aira's Space
  • 4F 4C = Fought Valmar's Eye
  • 51 40 = Selene left the village
  • 51 A4 = Camped in St. Heim Mountains, Caverns
  • 52 08 = Camped in St. Heim Mountains, Halfway Up
  • 52 6C = Entered St. Heim Papal State
  • 53 FC = Talked in Granas Cathedral
  • 54 60 = Roan and Mareg went to the library
  • 54 C4 = Talked to Zera in Cathedral, Audience Chamber
  • 55 28 = Talked to Zera in Cathedral, Pope's Room
  • 55 8C = Talked to Oro
  • 55 F0 = Talked to Roan and Mareg in Cathedral Library
  • 58 48 = Talked to Millenia in Cathedral Balcony
  • 59 10 = Talked to Zera in Cathedral, Audience Chamber
  • 59 74 = Talked in Granas Cathedral
  • 59 D8 = Entered Cyrum Kingdom
  • 5A 3C = Stayed in Cyrum Inn
  • 5C 30 = Mareg went to the harbor
  • 5C 94 = Talked to Hemble
  • 5C C6 = Arm-wrestled Hemble
  • 5D 84 = Roan spoke about a dark secret
  • 5D 98 = Took a boat ride
  • 5D C0 = Paulk opened a hatch to Secret Passage
  • 5E 24 = Talked to Menory
  • 5E 88 = Talked to the king in King's Office
  • 5E EC = Returned to Room of Demon-Sealing
  • 5F 50 = Entered Underground Plant
  • 5F 6E = Entered Underground Plant, Control Room
  • 60 18 = Escaped Underground Plant
  • 60 7C = Talked to Tio
  • 60 E0 = Entered King's Office
  • 62 70 = Roan gave a speech
  • 62 D4 = Roan said goodbye
  • 63 38 = Tio joined the party
  • 66 BC = Fought six Crimson Claws
  • 67 E8 = Arrived on Garlan Village
  • 68 4C = Ryudo is "greeted" by a local
  • 68 B0 = Ryudo is confronted by locals
  • 69 14 = Visited Ryudo's old house
  • 69 78 = Chose to stay in Garlan Inn
  • 6D C4 = Talked in Garlan Inn
  • 6E 28 = Entered Grail Mountain Road
  • 6E 8C = Approached the Shrine
  • 6E F0 = Melfice appeared
  • 6F B8 = Ryudo became possessed
  • 72 D8 = Talked in Garlan Inn, Room 2
  • 73 A0 = Talked to Captain Bakala in Garlan Village
  • 74 9A = Arrived at Ghoss Forest, West 1
  • 74 CC = Approached Ghoss Forest, West 1
  • 75 30 = Talked in Ghoss Forest, West 2
  • 75 94 = Entered Nanan Village
  • 75 F8 = Talked to the Nanan Village Elder
  • 76 C0 = Gained entrance to Hut of Trials
  • 77 BA = Exited Hut of Trials, Underground
  • 79 18 = Decided to go to the Spring
  • 7B 70 = Talked to Nanan Village Elder
  • 7B D4 = Entered The Great Rift
  • 7C 38 = Discovered some destroyed automatas
  • 7C 9C = Fought Tio Clone
  • 7D 32 = Destroyed the panel in Demon's Law, Control Room
  • 7F 8A = Talked in Valmar's Body, Point of Entry
  • 7F BC = Fought Valmar's Body
  • 82 DC = Arrived at St. Heim, Pastures
  • 83 0E = Fought Granas Knights
  • 84 08 = Fought Valmar's Heart
  • 84 6C = Talked to dying Oro
  • 84 D0 = Approached Cathedral, Holy Room
  • 87 28 = Decided to go to the Valmar's Moon
  • 88 54 = Entered Valmar's Moon, Surface
  • 88 B8 = Entered Valmar's Womb
  • 8D 9A = Valmar's monsters attacked
  • 8D CC = Fought Valmar Young
  • 8E 94 = Talked to Elena in Cyrum Castle, Room 1
  • 8F 5C = Talked in Cyrum Castle, King's Office
  • 8F C0 = Talked to a soldier in Cyrum Kingdom
  • 90 24 = Talked to a man in Cyrum Kingdom
  • 90 88 = Talked to a man about divine guidance
  • 91 B4 = Fought Valmar Young
  • 92 7C = Decided to leave Cyrum Kingdom
  • 93 44 = New Valmar appeared
  • 93 A8 = Decided to got to the royal mausoleum
  • 93 DA = Opened the way to Birthplace of Gods
  • 93 F8 = Approached Birthplace of Gods, Control Room
  • 98 58 = Ryudo opened the path to New Valmar
  • 98 BC = Entered New Valmar, 1
  • 98 EE = Entered New Valmar, 2
  • 99 84 = Fought Valmar Core
  • 9A B0 = Valmar's Tongue appeared
  • 9A C4 = Valmar's Eye appeared
  • 9A D8 = Fought Valmar's Heart
Data - Party Members
Pretty simple bit field. Set the bit to 1 for a character you want in your party.
You can soft-lock your game with a wrong party composition. For example, you'll be stuck waiting for a character to walk into a position during a cutscene. I haven't tired to have more than 4 members, but I imagine it'll lead to a crash. Having missing party members doesn't seem to prevent talking and plot from happening.
Setting the 8th bit to 1 will cause a crash on save read and that is why it's not included.

Ryudo
0x0FB4
bit 1
Elena
0x0FB4
bit 2
Millenia
0x0FB4
bit 3
Roan
0x0FB4
bit 4
Tio
0x0FB4
bit 5
Mareg
0x0FB4
bit 6
King Roan
0x0FB4
bit 7
Data - Collected Items (1 of 5)
These bits control what items have been collected. Setting a bit to 1 removes the item from the world or opens a treasure chest. Setting it to 0 allows you to collect the item again.

Wound Salve (Witt Forest Path)
0x1004
bit 2
Poison Antidote (Witt Forest Path)
0x1004
bit 3
Blizzard Charm (Witt Forest Path)
0x1004
bit 4
Treasure Chest (Witt Forest Path)
0x1004
bit 5
Medicinal Herb (The Black Forest, 1)
0x1005
bit 4
Myriad Power Nut (The Black Forest, 2)
0x1005
bit 5
50 Gold (The Black Forest, 2)
0x1005
bit 6
Wind charm (Garmia Tower, 1st Floor)
0x1006
bit 6
Wound Salve (Garmia Tower, 1st Floor)
0x1006
bit 7
Hand Grenade (Garmia Tower, 1st Floor)
0x1006
bit 8
50 Gold (Garmia Tower, 2nd Floor)
0x1007
bit 1
Wound Salve (Garmia Tower, 3rd Floor)
0x1007
bit 2
150 Gold (Garmia Tower, 3rd Floor)
0x1007
bit 3
Poison Antidote (Inor Mountains, 1)
0x100A
bit 4
Muscle Mushroom (Inor Mountains, 1)
0x100A
bit 5
Mushroom Cloud (Inor Mountains, 1)
0x100A
bit 6
Goblin Toadstool (Inor Mountains, 1)
0x100A
bit 7
50 Gold (Inor Mountains, 1)
0x100A
bit 8
50 Gold (Inor Mountains, 1)
0x100B
bit 1
50 Gold (Inor Mountains, 1)
0x100B
bit 2
50 Gold (Inor Mountains, 1)
0x100B
bit 3
150 Gold (Inor Mountains, 1)
0x100B
bit 4
Climbing Hat (Inor Mountains, 2)
0x100B
bit 5
Treasure Chest (Inor Mountains, 2)
0x100B
bit 6
50 Gold (Inor Mountains, 2)
0x100B
bit 7
50 Gold (Inor Mountains, 2)
0x100B
bit 8
150 Gold (Inor Mountains, 2)
0x100C
bit 1
Sleep charm (Durham Cave, 1)
0x1010
bit 6
Firebomb (Durham Cave, 1)
0x1010
bit 7
Yomi's Elixir (Durham Cave, 1)
0x1010
bit 8
Medicinal Herb (Durham Cave, 1)
0x1011
bit 1
Medicinal Herb (Durham Cave, 1)
0x1011
bit 2
100 Gold (Durham Cave, 1)
0x1011
bit 3
Stone Head (Durham Cave, 2)
0x1011
bit 4
Calming Harp (Durham Cave, 2)
0x1011
bit 5
Medicinal Herb (Durham Cave, 2)
0x1011
bit 6
Torte's Reedpipe (Durham Cave, 2)
0x1011
bit 7
100 Gold (Durham Cave, 2)
0x1011
bit 8
300 Gold (Durham Cave, 2)
0x1012
bit 1
Poff Nut (Durham Cave, 1)
0x1012
bit 2
Poff Nut (Durham Cave, 2)
0x1012
bit 3
Dash Shoes (Baked Plains, 1)
0x1016
bit 8
Seed of Running (Baked Plains, 1)
0x1017
bit 1
Seed of Psyche (Baked Plains, 1)
0x1017
bit 2
200 Gold (Baked Plains, 1)
0x1017
bit 3
200 Gold (Baked Plains, 1)
0x1017
bit 4
600 Gold (Baked Plains, 1)
0x1017
bit 5
600 Gold (Baked Plains, 1)
0x1017
bit 6
Treasure Chest (Baked Plains, 2)
0x1017
bit 7
Seed of Defense (Baked Plains, 2)
0x1017
bit 8
Seed of Magic (Baked Plains, 2)
0x1018
bit 1
Seed of Swift (Baked Plains, 2)
0x1018
bit 2
Seed of Power (Baked Plains, 2)
0x1018
bit 3
200 Gold (Baked Plains, 2)
0x1018
bit 4
200 Gold (Baked Plains, 2)
0x1018
bit 5
600 Gold (Baked Plains, 2)
0x1018
bit 6
Shell Armor (Baked Plains, 3)
0x1018
bit 7
Swiftness Nut (Baked Plains, 3)
0x1018
bit 8
200 Gold (Baked Plains, 3)
0x1019
bit 1
Poff Nut (Baked Plains, 2)
0x1019
bit 2
Reflection Ring (Liligue Cave, 1)
0x101D
bit 2
Mogay Bomb (Liligue Cave, 1)
0x101D
bit 3
Healing Herb (Liligue Cave, 1)
0x101D
bit 4
Purifying Herb (Liligue Cave, 1)
0x101D
bit 5
Mogay Bomb (Liligue Cave, 1)
0x101D
bit 6
200 Gold (Liligue Cave, 1)
0x101D
bit 7
1 200 Gold (Liligue Cave, 1)
0x101D
bit 8
Bond of Trust (Liligue Cave, 2)
0x101E
bit 1
Confusion Charm (Liligue Cave, 2)
0x101E
bit 2
Treasure Chest (Liligue Cave, 2)
0x101E
bit 3
400 Gold (Liligue Cave, 2)
0x101E
bit 4
1 200 Gold (Liligue Cave, 2)
0x101E
bit 5
Treasure Chest (Liligue Cave, Caverns)
0x101E
bit 6
Poff Nut (Liligue Cave, 2)
0x101E
bit 7
Lumir Flower (Lumir Forest, Crash Site)
0x1023
bit 4
400 Gold (Lumir Forest, Crash Site)
0x1023
bit 5
Treasure Chest (Lumir Forest)
0x1023
bit 6
Insecticide Bomb (Lumir Forest)
0x1023
bit 7
Blueberry (Lumir Forest)
0x1023
bit 8
400 Gold (Lumir Forest)
0x1024
bit 1
400 Gold (Lumir Forest)
0x1024
bit 2
1 200 Gold (Lumir Forest)
0x1024
bit 3
1 200 Gold (Lumir Forest)
0x1024
bit 4
Odd Wooden Clogs (Lumir Forest, Cavern 1)
0x1024
bit 5
Lumir Flower (Lumir Forest, Cavern 1)
0x1024
bit 6
400 Gold (Lumir Forest, Cavern 1)
0x1024
bit 7
400 Gold (Lumir Forest, Cavern 1)
0x1024
bit 8
1 200 Gold (Lumir Forest, Cavern 1)
0x1025
bit 1
Oracle's Staff (Lumir Forest, Cavern 2)
0x1025
bit 2
Insecticide Bomb (Lumir Forest, Cavern 2)
0x1025
bit 3
400 Gold (Lumir Forest, Cavern 2)
0x1025
bit 4
1 200 Gold (Lumir Forest, Cavern 2)
0x1025
bit 5
Wing Boots (Mysterious Fissure, Underground)
0x1029
bit 6
Raincoat (Mysterious Fissure, Underground)
0x1029
bit 7
Bone Harp (Mysterious Fissure, Underground)
0x1029
bit 8
Purifying Herb (Mysterious Fissure, Underground)
0x102A
bit 1
500 Gold (Mysterious Fissure, Underground)
0x102A
bit 2
1 500 Gold (Mysterious Fissure, Underground)
0x102A
bit 3
Data - Collected Items (2 of 5)
Refer to section named "Data - Collected Items (1 of 5)" for more details.
Red Shoes (Aira's Space, 1)
0x102A
bit 4
Silver Feather (Aira's Space, 1)
0x102A
bit 5
Yomi's Elixir (Aira's Space, 1)
0x102A
bit 6
500 Gold (Aira's Space, 1)
0x102A
bit 7
500 Gold (Aira's Space, 1)
0x102A
bit 8
1 500 Gold (Aira's Space, 1)
0x102B
bit 1
Moebius Ring (Aira's Space, 2)
0x102B
bit 2
Treasure Chest (Aira's Space, 2)
0x102B
bit 3
Battle Manicure (Aira's Space, 2)
0x102B
bit 4
500 Gold (Aira's Space, 2)
0x102B
bit 5
500 Gold (Aira's Space, 2)
0x102B
bit 6
1 500 Gold (Aira's Space, 2)
0x102B
bit 7
Lion Field Garb (St. Heim Mountains, Base)
0x102F
bit 8
Guard Mushroom (St. Heim Mountains, Base)
0x1030
bit 1
Seed of Life (St. Heim Mountains, Base)
0x1030
bit 2
500 Gold (St. Heim Mountains, Base)
0x1030
bit 3
1 500 Gold (St. Heim Mountains, Base)
0x1030
bit 4
Dragonslayer Axe (St. Heim Mountains, Halfway Up)
0x1030
bit 5
Holy Wound Salve (St. Heim Mountains, Halfway Up)
0x1030
bit 6
Seed of Spells (St. Heim Mountains, Halfway Up)
0x1030
bit 7
500 Gold (St. Heim Mountains, Halfway Up)
0x1030
bit 8
500 Gold (St. Heim Mountains, Halfway Up)
0x1031
bit 1
1 500 Gold (St. Heim Mountains, Halfway Up)
0x1031
bit 2
Mach Boots (St. Heim Mountains, Caverns)
0x1031
bit 3
Yomi's Elixir (St. Heim Mountains, Caverns)
0x1031
bit 4
Mogay Bomb (St. Heim Mountains, Caverns)
0x1031
bit 5
Scattering Stone (St. Heim Mountains, Caverns)
0x1031
bit 6
Scroll of Alheal (St. Heim Mountains, Caverns)
0x1031
bit 7
500 Gold (St. Heim Mountains, Caverns)
0x1031
bit 8
500 Gold (St. Heim Mountains, Caverns)
0x1032
bit 1
500 Gold (St. Heim Mountains, Caverns)
0x1032
bit 2
1 500 Gold (St. Heim Mountains, Caverns)
0x1032
bit 3
Treasure Chest (St. Heim Mountains, Waterfall)
0x1032
bit 4
Poisoned Knife (St. Heim Mountains, Pilgrim Road)
0x1032
bit 5
Bravery Bandana (St. Heim Mountains, Pilgrim Road)
0x1032
bit 6
Holy Wound Salve (St. Heim Mountains, Pilgrim Road)
0x1032
bit 7
Magic Blessing (St. Heim Mountains, Pilgrim Road)
0x1032
bit 8
Seed of Moves (St. Heim Mountains, Pilgrim Road)
0x1033
bit 1
500 Gold (St. Heim Mountains, Pilgrim Road)
0x1033
bit 2
500 Gold (St. Heim Mountains, Pilgrim Road)
0x1033
bit 3
500 Gold (St. Heim Mountains, Pilgrim Road)
0x1033
bit 4
1 500 Gold (St. Heim Mountains, Pilgrim Road)
0x1033
bit 5
Poff Nut (St. Heim Mountains, Pilgrim Road)
0x1033
bit 6
Thunder Ring (Raul Hills, 1)
0x1036
bit 2
Buster Flail (Raul Hills, 1)
0x1036
bit 3
Black Quartz Helm (Raul Hills, 1)
0x1036
bit 4
Earthen Cuirass (Raul Hills, 1)
0x1036
bit 5
Seed of Life (Raul Hills, 1)
0x1036
bit 6
Exhaustion Nut (Raul Hills, 1)
0x1036
bit 7
1 500 Gold (Raul Hills, 1)
0x1036
bit 8
Golden Nut (Raul Hills, 1)
0x1037
bit 1
500 Gold (Raul Hills, 1)
0x1037
bit 2
500 Gold (Raul Hills, 1)
0x1037
bit 3
1 500 Gold (Raul Hills, 1)
0x1037
bit 4
1 500 Gold (Raul Hills, 1)
0x1037
bit 5
Treasure Chest (Raul Hills, 2)
0x1037
bit 6
Golden Nut (Raul Hills, 2)
0x1037
bit 7
Weakness Nut (Raul Hills, 2)
0x1037
bit 8
Seed of Psyche (Raul Hills, 2)
0x1038
bit 1
Seed of Magic (Raul Hills, 2)
0x1038
bit 2
Golden Nut (Raul Hills, 2)
0x1038
bit 3
Patience Nut (Raul Hills, 2)
0x1038
bit 4
Golden Nut (Raul Hills, 2)
0x1038
bit 5
Revival Gem (Raul Hills, 2)
0x1038
bit 6
Seed of Power (Raul Hills, 2)
0x1038
bit 7
Myriad Power Nut (Raul Hills, 2)
0x1038
bit 8
Seed of Life (Raul Hills, 2)
0x1039
bit 1
Golden Nut (Raul Hills, 2)
0x1039
bit 2
Seed of Defense (Raul Hills, 2)
0x1039
bit 3
Lightning Tiara (Cyrum Castle, Secret Passage)
0x103C
bit 4
Magical Brace (Cyrum Castle, Secret Passage)
0x103C
bit 5
Silver Feather (Cyrum Castle, Secret Passage)
0x103C
bit 6
Electrum Stone (Cyrum Castle, Secret Passage)
0x103C
bit 7
Move Blessing (Cyrum Castle, Secret Passage)
0x103C
bit 8
700 Gold (Cyrum Castle, Secret Passage)
0x103D
bit 1
2 100 Gold (Cyrum Castle, Secret Passage)
0x103D
bit 2
Data - Collected Items (3 of 5)
Refer to section named "Data - Collected Items (1 of 5)" for more details.
Soul Eater (Underground Plant, 1)
0x1042
bit 6
Paralysis Salve (Underground Plant, 1)
0x1042
bit 7
Icefang Stone (Underground Plant, 1)
0x1042
bit 8
Mana Harp (Underground Plant, 1)
0x1043
bit 1
Move Blessing (Underground Plant, 1)
0x1043
bit 2
700 Gold (Underground Plant, 1)
0x1043
bit 3
700 Gold (Underground Plant, 1)
0x1043
bit 4
2 100 Gold (Underground Plant, 1)
0x1043
bit 5
Revival Gem (Underground Plant, 2)
0x1043
bit 6
Forbear Necklace (Underground Plant, 2)
0x1043
bit 7
Fine Broadsword (Underground Plant, 2)
0x1043
bit 8
Paralysis Salve (Underground Plant, 2)
0x1044
bit 1
Flame Stone (Underground Plant, 2)
0x1044
bit 2
Miracle Elixir (Underground Plant, 2)
0x1044
bit 3
Dynamite (Underground Plant, 2)
0x1044
bit 4
700 Gold (Underground Plant, 2)
0x1044
bit 5
700 Gold (Underground Plant, 2)
0x1044
bit 6
700 Gold (Underground Plant, 2)
0x1044
bit 7
2 100 Gold (Underground Plant, 2)
0x1044
bit 8
2 100 Gold (Underground Plant, 2)
0x1045
bit 1
Warp Shoes (Underground Plant, 3)
0x1045
bit 2
Holy Wound Salve (Underground Plant, 3)
0x1045
bit 3
700 Gold (Underground Plant, 3)
0x1045
bit 4
2 100 Gold (Underground Plant, 3)
0x1045
bit 5
Treasure Chest (Ceceile Reef, 1)
0x1048
bit 8
Dragonfly Slayer (Ceceile Reef, 1)
0x1049
bit 1
Scroll of Alheal (Ceceile Reef, 1)
0x1049
bit 2
Gale Stone (Ceceile Reef, 1)
0x1049
bit 3
1000 Gold (Ceceile Reef, 1)
0x1049
bit 4
1000 Gold (Ceceile Reef, 1)
0x1049
bit 5
Lullaby Staff (Ceceile Reef, 2)
0x1049
bit 6
Coral Necklace (Ceceile Reef, 2)
0x1049
bit 7
Mermaid Harp (Ceceile Reef, 2)
0x1049
bit 8
Electrum Stone (Ceceile Reef, 2)
0x104A
bit 1
1 000 Gold (Ceceile Reef, 2)
0x104A
bit 2
3 000 Gold (Ceceile Reef, 2)
0x104A
bit 3
Healing Fruit (Ceceile Reef, 1)
0x104A
bit 4
Double Moon (Grail Mountain Road, 1)
0x104F
bit 2
Mars Talisman (Grail Mountain Road, 1)
0x104F
bit 3
Grail Fruit (Grail Mountain Road, 1)
0x104F
bit 4
Potion of Azure (Grail Mountain Road, 1)
0x104F
bit 5
Healing Fruit (Grail Mountain Road, 1)
0x104F
bit 6
Makibishi (Grail Mountain Road, 1)
0x104F
bit 7
Face Paint (Grail Mountain Road, 1)
0x104F
bit 8
1 000 Gold (Grail Mountain Road, 1)
0x1050
bit 1
1 000 Gold (Grail Mountain Road, 1)
0x1050
bit 2
3 000 Gold (Grail Mountain Road, 1)
0x1050
bit 3
Treasure Chest (Grail Mountain Road, 2)
0x1050
bit 4
Dark Armor (Grail Mountain Road, 2)
0x1050
bit 5
Grail Fruit (Grail Mountain Road, 2)
0x1050
bit 6
Dynamite (Grail Mountain Road, 2)
0x1050
bit 7
1 000 Gold (Grail Mountain Road, 2)
0x1050
bit 8
3 000 Gold (Grail Mountain Road, 2)
0x1051
bit 1
Fairy Ribbon (Grail Mountain Road, 3)
0x1051
bit 2
Grail Fruit (Grail Mountain Road, 3)
0x1051
bit 3
Gold Feather (Grail Mountain Road, 3)
0x1051
bit 4
1 000 Gold (Grail Mountain Road, 3)
0x1051
bit 5
Aromatic Root (Ghoss Forest West, 1)
0x1055
bit 4
Sylph's Robe (Ghoss Forest West, 1)
0x1055
bit 5
Healing Incense (Ghoss Forest West, 1)
0x1055
bit 6
3 000 Gold (Ghoss Forest West, 1)
0x1055
bit 7
Divine Talisman (Ghoss Forest West, 2)
0x1055
bit 8
Baobab Fruit (Ghoss Forest West, 2)
0x1056
bit 1
Super Mogay Bomb (Ghoss Forest West, 2)
0x1056
bit 2
Quake Stone (Ghoss Forest West, 2)
0x1056
bit 3
1 000 Gold (Ghoss Forest West, 2)
0x1056
bit 4
Revival Gem (Ghoss Forest East, 1)
0x1056
bit 5
Wolf Boots (Ghoss Forest East, 1)
0x1056
bit 6
Yomi's Elixir (Ghoss Forest East, 1)
0x1056
bit 7
Smelling Salts (Ghoss Forest East, 1)
0x1056
bit 8
1 000 Gold (Ghoss Forest East, 1)
0x1057
bit 1
3 000 Gold (Ghoss Forest East, 1)
0x1057
bit 2
Dragon Scales (Ghoss Forest East, 2)
0x1057
bit 3
Black Belt (Ghoss Forest East, 2)
0x1057
bit 4
Seed of Spells (Ghoss Forest East, 2)
0x1057
bit 5
Seed of Running (Ghoss Forest East, 2)
0x1057
bit 6
Baobab Fruit (Ghoss Forest East, 2)
0x1057
bit 7
Red Goblin Toad (Ghoss Forest East, 2)
0x1057
bit 8
Speed Mushroom (Ghoss Forest East, 2)
0x1058
bit 1
Runner Mushroom (Ghoss Forest East, 2)
0x1058
bit 2
Vaccine (Ghoss Forest East, 2)
0x1058
bit 3
1 000 Gold (Ghoss Forest East, 2)
0x1058
bit 4
1 000 Gold (Ghoss Forest East, 2)
0x1058
bit 5
3 000 Gold (Ghoss Forest East, 2)
0x1058
bit 6
3 000 Gold (Ghoss Forest East, 2)
0x1058
bit 7
Data - Collected Items (4 of 5)
Refer to section named "Data - Collected Items (1 of 5)" for more details.
Treasure Chest (The Great Rift, 1)
0x105B
bit 6
Healing Fruit (The Great Rift, 1)
0x105B
bit 7
Magic Blessing (The Great Rift, 1)
0x105B
bit 8
Vaccine (The Great Rift, 1)
0x105C
bit 1
3 600 Gold (The Great Rift, 1)
0x105C
bit 3
Demon's Tears (The Great Rift, 2)
0x105C
bit 4
Discus (The Great Rift, 2)
0x105C
bit 5
Seed of Swift (The Great Rift, 2)
0x105C
bit 6
Healing Fruit (The Great Rift, 2)
0x105C
bit 7
Healing Incense (The Great Rift, 2)
0x105C
bit 8
Blessing Scroll (The Great Rift, 2)
0x105D
bit 1
1 200 Gold (The Great Rift, 2)
0x105D
bit 2
Energy Ring (The Great Rift, 2)
0x105D
bit 3
Serpentine (The Great Rift, 2)
0x105D
bit 4
1 200 Gold (The Great Rift, 2)
0x105D
bit 5
1 200 Gold (The Great Rift, 2)
0x105D
bit 6
Treasure Chest (Demon's Law)
0x1061
bit 8
Exorcism Bow (Demon's Law)
0x1062
bit 1
Halo Armor (Demon's Law)
0x1062
bit 2
Hero's Elixir (Demon's Law)
0x1062
bit 3
Mystic Potion (Demon's Law)
0x1062
bit 4
1 200 Gold (Demon's Law)
0x1062
bit 5
3 600 Gold (Demon's Law)
0x1062
bit 6
Treasure Chest (Valmar's Body, Tentacle Passage)
0x1068
bit 2
Treasure Chest (Valmar's Body, Tentacle Passage)
0x1068
bit 3
Silence Lute (Valmar's Body, Tentacle Passage)
0x1068
bit 4
Magical Medicine (Valmar's Body, Tentacle Passage)
0x1068
bit 5
Panacea (Valmar's Body, Tentacle Passage)
0x1068
bit 6
Thor Stone (Valmar's Body, Tentacle Passage)
0x1068
bit 7
1 500 Gold (Valmar's Body, Tentacle Passage)
0x1068
bit 8
1 500 Gold (Valmar's Body, Tentacle Passage)
0x1069
bit 1
4 500 Gold (Valmar's Body, Tentacle Passage)
0x1069
bit 2
Sage's Hat (Valmar's Body, Vein Passage)
0x1069
bit 3
Ninja Clothes (Valmar's Body, Vein Passage)
0x1069
bit 4
Revival Gem (Valmar's Body, Vein Passage)
0x1069
bit 5
Pretty Bracelet (Valmar's Body, Vein Passage)
0x1069
bit 6
Pretty Bracelet (Valmar's Body, Vein Passage)
0x1069
bit 7
Adamantine Helm (Valmar's Body, Artery Passage)
0x1069
bit 8
Fire Charm (Valmar's Body, Artery Passage)
0x106A
bit 1
Pretty Necklace (Valmar's Body, Artery Passage)
0x106A
bit 2
Pretty Bracelet (Valmar's Body, Artery Passage)
0x106A
bit 3
Pretty Bracelet (Valmar's Body, Artery Passage)
0x106A
bit 4
Treasure Chest (Valmar's Moon, 1)
0x106E
bit 4
Potion of Azure (Valmar's Moon, 1)
0x106E
bit 5
Thor Stone (Valmar's Moon, 1)
0x106E
bit 6
Silver Feather (Valmar's Moon, 1)
0x106E
bit 7
2 000 Gold (Valmar's Moon, 1)
0x106E
bit 8
6 000 Gold (Valmar's Moon, 1)
0x106F
bit 1
Treasure Chest (Valmar's Moon, 2)
0x106F
bit 2
Indigo Potion (Valmar's Moon, 2)
0x106F
bit 3
Panacea (Valmar's Moon, 2)
0x106F
bit 4
Demon Ash (Valmar's Moon, 2)
0x106F
bit 5
2 000 Gold (Valmar's Moon, 2)
0x106F
bit 6
Treasure Chest (Valmar's Moon, 3)
0x106F
bit 7
Moonstone Armor (Valmar's Moon, 3)
0x106F
bit 8
Reflect Helm, (Valmar's Moon, 3)
0x1070
bit 1
Scarlet Potion (Valmar's Moon, 3)
0x1070
bit 2
Scarlet Potion (Valmar's Moon, 3)
0x1070
bit 3
Golden Potion (Valmar's Moon, 3)
0x1070
bit 4
2 000 Gold (Valmar's Moon, 3)
0x1070
bit 5
2 000 Gold (Valmar's Moon, 3)
0x1070
bit 6
6 000 Gold (Valmar's Moon, 3)
0x1070
bit 7
Treasure Chest (Birthplace of the Gods, 1)
0x1074
bit 6
Hero's Cuirass (Birthplace of the Gods, 1)
0x1074
bit 7
Flame Stone (Birthplace of the Gods, 1)
0x1074
bit 8
2 500 Gold (Birthplace of the Gods, 1)
0x1075
bit 1
Sun Robe (Birthplace of the Gods, 2)
0x1075
bit 2
Holy Crown (Birthplace of the Gods, 2)
0x1075
bit 3
Illusion Bandana (Birthplace of the Gods, 2)
0x1075
bit 4
Hyper Mogay Bomb (Birthplace of the Gods, 2)
0x1075
bit 5
Quake Stone (Birthplace of the Gods, 2)
0x1075
bit 6
Hero's Elixir (Birthplace of the Gods, 2)
0x1075
bit 7
Scarlet Potion (Birthplace of the Gods, 2)
0x1075
bit 8
Treasure Chest (Birthplace of the Gods, 3)
0x1076
bit 2
Valkyrie Dress (Birthplace of the Gods, 3)
0x1076
bit 3
Angel's Ring (Birthplace of the Gods, 3)
0x1076
bit 4
Panacea (Birthplace of the Gods, 3)
0x1076
bit 5
2 500 Gold (Birthplace of the Gods, 3)
0x1076
bit 6
Missanga (Cyrum Kingdom, South)
0x1076
bit 7
7 500 Gold (Birthplace of the Gods, 1)
0x1076
bit 8
Mystic Potion (Birthplace of the Gods, 2)
0x1077
bit 1
Gold Feather (Birthplace of the Gods, 2)
0x1077
bit 2
Indigo Potion (Birthplace of the Gods, 3)
0x1077
bit 3
Gale Stone (Birthplace of the Gods, 3)
0x1077
bit 4
Data - Collected Items (5 of 5)
Refer to section named "Data - Collected Items (1 of 5)" for more details.
Treasure Chest (New Valmar, 1)
0x107A
bit 8
Dirk (New Valmar, 1)
0x107B
bit 1
Potion of Azure (New Valmar, 1)
0x107B
bit 2
All-Around Seed (New Valmar, 1)
0x107B
bit 3
3 000 Gold (New Valmar, 1)
0x107B
bit 4
God of War Helm (New Valmar, 2)
0x107B
bit 5
Holy Ghost Staff (New Valmar, 2)
0x107B
bit 6
Holy Sword Armor (New Valmar, 2)
0x107B
bit 7
Yomi's Elixir (New Valmar, 2)
0x107B
bit 8
Mystic Potion (New Valmar, 2)
0x107C
bit 1
Indigo Potion (New Valmar, 2)
0x107C
bit 2
Scattering Stone (New Valmar, 2)
0x107C
bit 3
3 000 Gold (New Valmar, 2)
0x107C
bit 4
9 000 Gold (New Valmar, 2)
0x107C
bit 5
Treasure Chest (New Valmar, 3)
0x107C
bit 6
Treasure Chest (New Valmar, 3)
0x107C
bit 7
Golden Potion (New Valmar, 3)
0x107C
bit 8
Omnipotent Seed (New Valmar, 3)
0x107D
bit 1
Yomi's Elixir (New Valmar, 2)
0x107D
bit 2
Mystic Potion (New Valmar, 3)
0x107D
bit 3
Zero Broadsword (Raul Hills, 1 - Revisit)
0x1081
bit 2
Useless Staff (Raul Hills, 1 - Revisit)
0x1081
bit 3
Dull Knife (Raul Hills, 1 - Revisit)
0x1081
bit 4
Rusty Hoop (Raul Hills, 1 - Revisit)
0x1081
bit 5
Sonic Belt (Raul Hills, 1 - Death Maze)
0x1081
bit 6
Energy Charm (Raul Hills, 1 - Death Maze)
0x1081
bit 7
Demon Necklace (Raul Hills, 1 - Death Maze)
0x1081
bit 8
Fairy Egg (Raul Hills, 1 - Death Maze)
0x1082
bit 1
Astral Miracle (Raul Hills, 1 - Death Maze)
0x1082
bit 2
Soul of a Hero (Raul Hills, 1 - Death Maze)
0x1082
bit 3
Platinum Feather (Raul Hills, 1 - Death Maze)
0x1082
bit 4
Lore of Magic (Raul Hills, 1 - Death Maze)
0x1082
bit 5
Data - Bosses
Similarly to other bit fields, these entries control which boss you have fought. You'll have to initiate these fights by walking near the boss. There are more bosses, but they are plot related.

Leck Guarder (Demon's Law)
0x10CD
bit 5
2x Naga Queen (Demon's Law)
0x10CD
bit 6
Valmar Fly (Valmar's Moon, Surface)
0x10CE
bit 3
Valmar Young (Valmar's Moon, Surface)
0x10CE
bit 4
2x Valmar Young (Valmar's Moon, Surface)
0x10CE
bit 5
2x Guardian (Birthplace of the Gods, 2)
0x10CE
bit 6
2x Dual Fist (Birthplace of the Gods, 3)
0x10CF
bit 7
Valmar Magna (New Valmar, 1)
0x10CF
bit 8
2x Valmar Magna (New Valmar, 3)
0x10CF
bit 1
Approached Crimson Tails (Ceceile Reef, 2)
0x10CF
bit 6
Approached Valmar,s Tongue (New Valmar, Room of Chaos)
0x10D0
bit 8
Approached Valmar's Eye (New Valmar, Room of Chaos)
0x10D0
bit 1
Valmar's Tongue (New Valmar, Room of Chaos)
0x10D0
bit 5
Valmar's Eye (New Valmar, Room of Chaos)
0x10D0
bit 6
Valmar's Heart (New Valmar, Room of Chaos)
0x10D1
bit 7
6 Comments
no_idea_for_a_name 13 Apr @ 6:56am 
@Cofeiini: Thank you for the hexpat file! It's extremely useful!
mstrbubbles 28 Feb, 2024 @ 11:27am 
The hex stuff confuses me, so maybe I should look for a save file before there instead?

I did find some on this site https://www.bucanero.com.ar/dreamcast/vmu/grandia2/

and put them into my save folder but not working....

I'm just missing 3 achievements and mainly want to get the Melfice one. meh. lol

Thanks for responding!
Cofeiini  [author] 28 Feb, 2024 @ 6:54am 
@mstrbubbles
I think so, but haven't tested it myself. You might need to change the location and plot events to be able to trigger the fight.
mstrbubbles 27 Feb, 2024 @ 5:10pm 
Could I use this to change my location to the area where you would fight Mefice so I can get the achievment?
Cofeiini  [author] 9 Jan, 2021 @ 3:21am 
@martinfiebich
I'm not sure about modifying the game files. The data might be also hard-coded, so changing the files might have no effect. You can try to change those values to something you can easily verify. Keep in mind that the values are most likely one byte in size, so the range would be from 0 to 255.
martinfiebich 7 Jan, 2021 @ 11:54am 
I have a question to you. If you go under Grandia 2 HD Remastered Ordner in:

content / data / afs / enemy

can be opened with the hex editor (e.g. the file d01_0.dat where you can find the monster data where HP / VIT / AGI / SPD / MEN are given, as well as how much EXP / SP / MC you get if you defeat this opponent.)

My question is where do you find the values ​​for the resistances (ice / earth / explo / fire / nature / lightning / water / wind) It is possible to change the items that these monsters drop or improve the rate of the items. This can be found immediately below with the end name (number that is above, e.g. for the monster above) d01_0b.dat & d01_1.dat.

Is it possible to change the values ​​of items like weapons / accessories / helmets / shoes / armor?

I am a complete beginner with the Hex Editor so if changes are possible I could only do simple things.

Please help

Thanks