File tree 2 files changed +4
-12
lines changed
G2DataGUI/UI/Views/Content
G2DataGUI.Common/Data/Maps/MapDialogueOpcodes
2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -8,17 +8,15 @@ public class Unknown09Opcode : IMapDialogueOpcode
8
8
public DialogueOpcode Opcode { get ; set ; } = DialogueOpcode . Unknown09 ;
9
9
public byte Unknown1 { get ; set ; }
10
10
public byte Unknown2 { get ; set ; }
11
- public byte Unknown3 { get ; set ; }
12
- public byte Unknown4 { get ; set ; }
11
+ public short StoryFlag { get ; set ; }
13
12
14
13
public static IMapDialogueOpcode ReadOpcode ( Stream reader )
15
14
{
16
15
return new Unknown09Opcode ( )
17
16
{
18
17
Unknown1 = reader . ReadRawByte ( ) ,
19
18
Unknown2 = reader . ReadRawByte ( ) ,
20
- Unknown3 = reader . ReadRawByte ( ) ,
21
- Unknown4 = reader . ReadRawByte ( ) ,
19
+ StoryFlag = reader . ReadRawShort ( ) ,
22
20
} ;
23
21
}
24
22
}
Original file line number Diff line number Diff line change 688
688
<ColumnDefinition Width =" Auto" />
689
689
<ColumnDefinition Width =" Auto" />
690
690
<ColumnDefinition Width =" Auto" />
691
- <ColumnDefinition Width =" Auto" />
692
691
</Grid .ColumnDefinitions>
693
692
<StackPanel Grid.Column=" 0"
694
693
Margin=" 5,0" >
702
701
</StackPanel >
703
702
<StackPanel Grid.Column=" 2"
704
703
Margin=" 5,0" >
705
- <TextBlock Text =" Unknown #3:" />
706
- <TextBox Text =" {Binding Unknown3}" />
707
- </StackPanel >
708
- <StackPanel Grid.Column=" 3"
709
- Margin=" 5,0" >
710
- <TextBlock Text =" Unknown #4:" />
711
- <TextBox Text =" {Binding Unknown4}" />
704
+ <TextBlock Text =" Story Flag:" />
705
+ <TextBox Text =" {Binding StoryFlag}" />
712
706
</StackPanel >
713
707
</Grid >
714
708
</StackPanel >
You can’t perform that action at this time.
0 commit comments