Skip to content

Commit

Permalink
Update QuestStateType -- other quest state values
Browse files Browse the repository at this point in the history
  • Loading branch information
lastbattle committed Oct 21, 2024
1 parent afbc851 commit 7270b9e
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion MapleLib/WzLib/WzStructure/Data/QuestStructure/QuestStateType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,12 @@ namespace MapleLib.WzLib.WzStructure.Data.QuestStructure
/// </summary>
public enum QuestStateType
{
Not_Started = 0,
Impossible = -1,
Not_Started = 0, // or none
Started = 1,
Completed = 2,
PartyQuest = 3,
No = 4
}

public static class QuestStateTypeExtensions
Expand Down Expand Up @@ -61,3 +64,16 @@ public static QuestStateType ToEnum(this string name)
}
}
}

/* KMST1029
* 456
enum $DA91946C6F02C5F54B6F122F2BB1A13E
{
QUEST_STATE_IMPOSSIBLE = 0xFFFFFFFF,
QUEST_STATE_NONE = 0x0,
QUEST_STATE_PERFORM = 0x1,
QUEST_STATE_COMPLETE = 0x2,
QUEST_STATE_PARTYQUEST = 0x3,
QUEST_STATE_NO = 0x4,
};
*/

0 comments on commit 7270b9e

Please sign in to comment.