GTA:DLCs
Jump to navigation
Jump to search
List
The Release dates are using the format YYYY.MM.DD and PC release dates are preferred.
Name | Release Date |
---|---|
mpbeach | 2013.11.20 |
spupgrade | |
mppatchesng | |
mpchristmas | 2013.12.24 |
patchday1ng | |
mpvalentines | 2014.02.13 |
patchday2ng | |
mpbusiness | 2014.03.04 |
patchday2bng | |
mpbusiness2 | 2014.05.12 |
patchday3ng | |
mphipster | 2014.06.17 |
patchday4ng | |
mpindependence | 2014.07.01 |
patchday5ng | |
mppilot | 2014.08.19 |
patchday6ng | |
mplts | 2014.08.02 |
patchday7ng | |
mpchristmas2 | 2014.12.18 |
patchday8ng | |
mpheist | 2015.03.10 |
mpluxe | 2015.06.10 |
patchday9ng | |
mpluxe2 | 2015.07.08 |
patchday10ng | |
mpreplay | 2015.09.10 |
patchday11ng | |
mplowrider | 2015.10.20 |
patchday12ng | |
mphalloween | 2015.10.29 |
patchday13ng | |
patchday14ng | |
mpapartment | 2015.12.15 |
patchday15ng | |
mpxmas_604490 | 2015.12.21 |
patchday16ng | |
mpjanuary2016 | 2016.01.28 |
patchday17ng | |
mpvalentines2 | 2016.02.10 |
patchday18ng | |
mplowrider2 | 2016.03.15 |
patchday19ng | |
mpexecutive | 2016.06.07 |
patchday20ng | |
mpstunt | 2016.07.12 |
patchday21ng | |
mpbiker | 2016.10.04 |
patchday22ng | |
mpimportexport | 2016.12.13 |
mpspecialraces | 2017.03.14 |
mpgunrunning | 2017.06.13 |
mpairraces | |
mpsmuggler | 2017.08.29 |
mpchristmas2017 | 2017.12.12 |
mpassault | 2018.03.20 |
mpbattle | 2018.07.24 |
mpchristmas2018 | 2018.12.11 |
mpvinewood | 2019.07.23 |
mpheist3 | 2019.12.12 |
mpsum | 2020.08.11 |
Useful Snippets
C#
public enum GtaDlc
{
mpbeach,
spupgrade,
mppatchesng,
mpchristmas,
patchday1ng,
mpvalentines,
patchday2ng,
mpbusiness,
patchday2bng,
mpbusiness2,
patchday3ng,
mphipster,
patchday4ng,
mpindependence,
patchday5ng,
mppilot,
patchday6ng,
mplts,
patchday7ng,
mpchristmas2,
patchday8ng,
mpheist,
mpluxe,
patchday9ng,
mpluxe2,
patchday10ng,
mpreplay,
patchday11ng,
mplowrider,
patchday12ng,
mphalloween,
patchday13ng,
patchday14ng,
mpapartment,
patchday15ng,
mpxmas_604490,
patchday16ng,
mpjanuary2016,
patchday17ng,
mpvalentines2,
patchday18ng,
mplowrider2,
patchday19ng,
mpexecutive,
patchday20ng,
mpstunt,
patchday21ng,
mpbiker,
patchday22ng,
mpimportexport,
mpspecialraces,
mpgunrunning,
mpairraces,
mpsmuggler,
mpchristmas2017,
mpassault,
mpbattle,
mpchristmas2018,
mpvinewood,
mpheist3,
mpsum
}
Java Script
let GtaDlcList =
[
"mpbeach",
"spupgrade",
"mppatchesng",
"mpchristmas",
"patchday1ng",
"mpvalentines",
"patchday2ng",
"mpbusiness",
"patchday2bng",
"mpbusiness2",
"patchday3ng",
"mphipster",
"patchday4ng",
"mpindependence",
"patchday5ng",
"mppilot",
"patchday6ng",
"mplts",
"patchday7ng",
"mpchristmas2",
"patchday8ng",
"mpheist",
"mpluxe",
"patchday9ng",
"mpluxe2",
"patchday10ng",
"mpreplay",
"patchday11ng",
"mplowrider",
"patchday12ng",
"mphalloween",
"patchday13ng",
"patchday14ng",
"mpapartment",
"patchday15ng",
"mpxmas_604490",
"patchday16ng",
"mpjanuary2016",
"patchday17ng",
"mpvalentines2",
"patchday18ng",
"mplowrider2",
"patchday19ng",
"mpexecutive",
"patchday20ng",
"mpstunt",
"patchday21ng",
"mpbiker",
"patchday22ng",
"mpimportexport",
"mpspecialraces",
"mpgunrunning",
"mpairraces",
"mpsmuggler",
"mpchristmas2017",
"mpassault",
"mpbattle",
"mpchristmas2018",
"mpvinewood",
"mpheist3",
"mpsum"
];