Skip to content
This repository has been archived by the owner on Dec 16, 2018. It is now read-only.

Commit

Permalink
v0.04b
Browse files Browse the repository at this point in the history
- Added real MHXX Item, Equipment, Talisman Skills, Palico Skills/Actions, Kinsect IDs
  - Users can now select by names rather than manually inputting the IDs
- Fixed the actual offsets for appearence (again, sorry)
  • Loading branch information
mineminemine committed Aug 20, 2017
1 parent 96c4682 commit 00f162b
Show file tree
Hide file tree
Showing 6 changed files with 385 additions and 400 deletions.
2 changes: 1 addition & 1 deletion MHXXSaveEditor/Data/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
class Constants
{
public const string EDITOR_VERSION = "MHXX Save Editor v0.04";
public const string EDITOR_VERSION = "MHXX Save Editor v0.04b";

public const int SIZEOF_NAME = 32;

Expand Down
57 changes: 28 additions & 29 deletions MHXXSaveEditor/Data/GameConstants.cs

Large diffs are not rendered by default.

18 changes: 10 additions & 8 deletions MHXXSaveEditor/Data/Offsets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ class Offsets
public const int PLAY_TIME_OFFSET = 0x20; //Size 4
public const int FUNDS_OFFSET = 0x24; //Size 4 ;
public const int HUNTER_RANK_OFFSET = 0x28; //Size 2
public const int HUNTER_GENDER_OFFSET = 0x2A;
//public const int CHARACTER_HUNTING_STYLE_OFFSET = 0x0261; //Size 1
//public const int HUNTER_ART_1_OFFSET = 0x2C; //Size 2
//public const int HUNTER_ART_2_OFFSET = 0x2E; //Size 2
Expand All @@ -32,6 +31,7 @@ class Offsets
public const int CHARACTER_EYE_COLOR_OFFSET = 0x242; //Size 1
public const int CHARACTER_CLOTHING_OFFSET = 0x243; //Size 1
public const int CHARACTER_GENDER_OFFSET = 0x244; //Size 1
public const int CHARACTER_HUNTINGSTYLE_OFFSET = 0x245; //Size 1
public const int CHARACTER_HAIRSTYLE_OFFSET = 0x246; //Size 1
public const int CHARACTER_FACE_OFFSET = 0x247; //Size 1
public const int CHARACTER_FEATURES_OFFSET = 0x248; //Size 1
Expand Down Expand Up @@ -63,17 +63,19 @@ class Offsets
public const int CHARACTER_EYE_COLOR_OFFSET2 = 0x23B49; //Size 1
public const int CHARACTER_CLOTHING_OFFSET2 = 0x23B4A; //Size 1
public const int CHARACTER_GENDER_OFFSET2 = 0x23B4B; // Size 1
public const int CHARACTER_HUNTINGSTYLE_OFFSET2 = 0x23B4C; // Size 1
public const int CHARACTER_HAIRSTYLE_OFFSET2 = 0x23B4D; //Size 1
public const int CHARACTER_FACE_OFFSET2 = 0x23B4E; //Size 1
public const int CHARACTER_FEATURES_OFFSET2 = 0x23B4F; //Size 1

public const int CHARACTER_VOICE_OFFSET3 = 0XC71D7; //Size 1
public const int CHARACTER_EYE_COLOR_OFFSET3 = 0XC71D8; //Size 1
public const int CHARACTER_CLOTHING_OFFSET3 = 0XC71D9; //Size 1
public const int CHARACTER_GENDER_OFFSET3 = 0xC71DA; // Size 1
public const int CHARACTER_HAIRSTYLE_OFFSET3 = 0xC71DC; //Size 1
public const int CHARACTER_FACE_OFFSET3 = 0xC71DD; //Size 1
public const int CHARACTER_FEATURES_OFFSET3 = 0xC71DE; //Size 1
public const int CHARACTER_VOICE_OFFSET3 = 0XC71D6; //Size 1
public const int CHARACTER_EYE_COLOR_OFFSET3 = 0XC71D7; //Size 1
public const int CHARACTER_CLOTHING_OFFSET3 = 0XC71D8; //Size 1
public const int CHARACTER_GENDER_OFFSET3 = 0XC71D9; // Size 1
public const int CHARACTER_HUNTINGSTYLE_OFFSET3 = 0xC71DA; // Size 1
public const int CHARACTER_HAIRSTYLE_OFFSET3 = 0xC71DB; //Size 1
public const int CHARACTER_FACE_OFFSET3 = 0xC71DC; //Size 1
public const int CHARACTER_FEATURES_OFFSET3 = 0xC71DD; //Size 1

public const int CHARACTER_SKIN_COLOR_OFFSET2 = 0x23B67; //Size 4
public const int CHARACTER_HAIR_COLOR_OFFSET2 = 0X23B6B; //Size 4
Expand Down
2 changes: 1 addition & 1 deletion MHXXSaveEditor/Forms/EditKinsectDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

93 changes: 40 additions & 53 deletions MHXXSaveEditor/Forms/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 00f162b

Please sign in to comment.