This repository was archived by the owner on Sep 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathActivityModeType.cs
More file actions
83 lines (83 loc) · 2.07 KB
/
Copy pathActivityModeType.cs
File metadata and controls
83 lines (83 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
namespace Destiny2
{
public enum ActivityModeType
{
None = 0,
Story = 2,
Strike = 3,
Raid = 4,
AllPvP = 5,
Patrol = 6,
AllPvE = 7,
Reserved9 = 9,
Control = 10,
Reserved11 = 11,
Clash = 12,
Reserved13 = 13,
CrimsonDoubles = 15,
Nightfall = 16,
HeroicNightfall = 17,
AllStrikes = 18,
IronBanner = 19,
Reserved20 = 20,
Reserved21 = 21,
Reserved22 = 22,
Reserved24 = 24,
AllMayhem = 25,
Reserved26 = 26,
Reserved27 = 27,
Reserved28 = 28,
Reserved29 = 29,
Reserved30 = 30,
Supremacy = 31,
PrivateMatchesAll = 32,
Survival = 37,
Countdown = 38,
TrialsOfTheNine = 39,
Social = 40,
TrialsCountdown = 41,
TrialsSurvival = 42,
IronBannerControl = 43,
IronBannerClash = 44,
IronBannerSupremacy = 45,
ScoredNightfall = 46,
ScoredHeroicNightfall = 47,
Rumble = 48,
AllDoubles = 49,
Doubles = 50,
PrivateMatchesClash = 51,
PrivateMatchesControl = 52,
PrivateMatchesSupremacy = 53,
PrivateMatchesCountdown = 54,
PrivateMatchesSurvival = 55,
PrivateMatchesMayhem = 56,
PrivateMatchesRumble = 57,
HeroicAdventure = 58,
Showdown = 59,
Lockdown = 60,
Scorched = 61,
ScorchedTeam = 62,
Gambit = 63,
AllPvECompetitive = 64,
Breakthrough = 65,
BlackArmoryRun = 66,
Salvage = 67,
IronBannerSalvage = 68,
PvPCompetitive = 69,
PvPQuickplay = 70,
ClashQuickplay = 71,
ClashCompetitive = 72,
ControlQuickplay = 73,
ControlCompetitive = 74,
GambitPrime = 75,
Reckoning = 76,
Menagerie = 77,
VexOffensive = 78,
NightmareHunt = 79,
Elimination = 80,
Momentum = 81,
Dungeon = 82,
Sundial = 83,
TrialsOfOsiris = 84,
}
}