-
Notifications
You must be signed in to change notification settings - Fork 1
/
Titles.as
69 lines (64 loc) · 2.95 KB
/
Titles.as
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
// Please contact Miss on the Openplanet Discord if you would like
// your pack to be added to this list! I periodically add popular
// title packs as well. You may also submit a pull request on Github.
dictionary g_titles = {
#if TMNEXT
// Next only has 1 titlepack
{ "Trackmania", "default" }
#elif TURBO
// Turbo only has 1 titlepack
{ "TMTurbo@nadeolabs", "title_turbo" }
#else
// Official Nadeo titlepacks
{ "TMStadiumChase@nadeolabs", "title_stadiumchase" },
{ "SMStormBattle@nadeolabs", "title_smbattle" },
{ "SMStormCombo@nadeolabs", "title_smcombo" },
{ "SMStormElite@nadeolabs", "title_smelite" },
{ "SMStormJoust@nadeolabs", "title_smjoust" },
{ "SMStormRoyal@nadeolabs", "title_smroyal" },
{ "SMStormSiege@nadeolabs", "title_smsiege" },
{ "SMStormWarlords@nadeolabs", "title_smwarlords" },
// Custom titlepacks by players
{ "esl_comp@lt_forever", "title_esl_comp" },
{ "RPG@tmrpg", "title_rpg" },
{ "obstacle@smokegun", "title_obstacle" },
{ "Pursuit@domino54", "title_pursuit" },
{ "PursuitStadium@domino54", "title_pursuitstadium" },
{ "GalaxyTitles@domino54", "title_galaxy" },
{ "Infection@dmark", "title_infection" },
{ "TMPlus_Canyon@tipii", "title_tmplus" },
{ "Nimble@ansjh", "title_nimble" },
{ "SpeedBall@steeffeen", "title_speedball" },
{ "TM2UF@adamkooo", "title_tmuf" },
{ "TMAll@domino54", "title_tmall" },
{ "Endurance@thaumictom", "title_endurance" },
{ "Nadeo_Envimix@bigbang1112", "title_nadeoenvimix" },
{ "Countdown@torrent", "title_countdown" },
{ "GEs@guerro", "title_stormium" },
{ "Platform@adamkooo", "title_platform" },
// TM One has multiple pack owners
{ "TMOneAlpine@florenzius", "title_tmonealpine" },
{ "TMOneSpeed@florenzius", "title_tmonespeed" },
{ "TMOneBay@florenzius", "title_tmonebay" },
{ "TMOneAlpine@unbitn", "title_tmonealpine" },
{ "TMOneSpeed@unbitn", "title_tmonespeed" },
{ "TMOneBay@unbitn", "title_tmonebay" },
// StarTrack
{ "StarTrackStadium@arkes910", "title_startrack_stadium" },
{ "StarTrackValley@arkes910", "title_startrack_valley" },
{ "StarTrackLagoon@arkes910", "title_startrack_lagoon" },
{ "StarTrackCanyon@arkes910", "title_startrack_canyon" },
// Challenge
{ "Challenge@bigbang1112", "title_challenge" },
{ "Challenge_Stadium@bigbang1112", "title_challenge_stadium" },
{ "Challenge_Campaign@bigbang1112", "title_challenge_campaign" },
{ "Challenge_Stadium_Campaign@bigbang1112", "title_challenge_stadium_campaign" },
{ "Challenge_Maker@bigbang1112", "title_challenge_maker" },
{ "Challenge_Stadium_Maker@bigbang1112", "title_challenge_stadium_maker" },
// Packs in development
{ "TMOneMassif@unbitn", "title_dev" },
{ "TMOneIsland@unbitn", "title_dev" },
{ "TMOneCoast@unbitn", "title_dev" },
{ "TMOneRally@unbitn", "title_dev" }
#endif
};