Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion Maple2.Model/Enum/GameEventUserValueType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ public enum GameEventUserValueType {
// Attendance Event
AttendanceActive = 100, //?? maybe. String is "True"
AttendanceCompletedTimestamp = 101,
AttendanceRewardsClaimed = 102,
AttendanceRewardsClaimed = 102, // Also used for Cash Attendance and DT Attendance
AttendanceEarlyParticipationRemaining = 103,
AttendanceNear = 105,
AttendanceAccumulatedTime = 106,

// ReturnUser
ReturnUser = 320, // IsReturnUser

// DTReward
DTRewardStartTime = 700, // start time
DTRewardCurrentTime = 701, // current item accumulated time
Expand All @@ -25,10 +29,22 @@ public enum GameEventUserValueType {
GalleryCardFlipCount = 1600,
GalleryClaimReward = 1601,

// Snowman Event
SnowflakeCount = 1700,
DailyCompleteCount = 1701,
AccumCompleteCount = 1702,
AccumCompleteRewardReceived = 1703,

// Rock Paper Scissors Event
RPSDailyMatches = 1800,
RPSRewardsClaimed = 1801,

// Couple Dance
CoupleDanceBannerOpen = 2100,
CoupleDanceRewardState = 2101, // completed/bonus/received flags

CollectItemGroup = 2200, // Meta Badge event. Serves as a flag for tiers

// Bingo - TODO: These are not the actual confirmed values. Just using it as a way to store this data for now.
BingoUid = 4000,
BingoRewardsClaimed = 4001,
Expand Down
Loading