Posts: 224
Threads: 54
Joined: Mar 2011
Reputation:
2
Hi
before i say i searched in Google but i can not find all map list (also with dlc list).
i need mw3 full map list with all dlc map list with this format:
mp_carbon = carbon
pleas if possible can someone give me all map list.
Thank you
Posts: 5,320
Threads: 300
Joined: Feb 2011
Reputation:
149
09-01-2012, 20:08
(This post was last modified: 09-01-2012, 20:08 by JariZ.)
CSHARP Code
public static string[] Maps = new string[] { "mp_alpha", "mp_bootleg", "mp_bravo", "mp_carbon", "mp_dome", "mp_exchange", "mp_hardhat", "mp_interchange", "mp_lambeth", "mp_mogadishu", "mp_paris", "mp_plaza2", "mp_radar", "mp_seatown", "mp_underground", "mp_village", "mp_aground_ss", "mp_aqueduct_ss", "mp_terminal_cls", "mp_cement", "mp_hillside_ss", "mp_italy", "mp_meteora", "mp_morningwood", "mp_overwatch", "mp_park", "mp_qadeem", "mp_restrepo_ss" }; public static string[] MapNames = new string[] { "Lockdown", "Bootleg", "Mission", "Carbon", "Dome", "Downturn", "Hardhat", "Interchange", "Fallen", "Bakaara", "Resistance", "Arkaden", "Outpost", "Seatown", "Underground", "Village", "Aground", "Erosion", "Terminal", "Foundation", "Getaway", "Piazza", "Sanctuary", "Black Box", "Overwatch", "Liberation", "Oasis", "Lookout"};
Posts: 1,519
Threads: 107
Joined: Dec 2011
Reputation:
48
(09-01-2012, 20:08)JariZ Wrote: CSHARP Code
public static string[] Maps = new string[] { "mp_alpha", "mp_bootleg", "mp_bravo", "mp_carbon", "mp_dome", "mp_exchange", "mp_hardhat", "mp_interchange", "mp_lambeth", "mp_mogadishu", "mp_paris", "mp_plaza2", "mp_radar", "mp_seatown", "mp_underground", "mp_village", "mp_aground_ss", "mp_aqueduct_ss", "mp_terminal_cls", "mp_cement", "mp_hillside_ss", "mp_italy", "mp_meteora", "mp_morningwood", "mp_overwatch", "mp_park", "mp_qadeem", "mp_restrepo_ss" }; public static string[] MapNames = new string[] { "Lockdown", "Bootleg", "Mission", "Carbon", "Dome", "Downturn", "Hardhat", "Interchange", "Fallen", "Bakaara", "Resistance", "Arkaden", "Outpost", "Seatown", "Underground", "Village", "Aground", "Erosion", "Terminal", "Foundation", "Getaway", "Piazza", "Sanctuary", "Black Box", "Overwatch", "Liberation", "Oasis", "Lookout"};
mp_dome?
Posts: 5,135
Threads: 241
Joined: Nov 2010
Reputation:
100
Posts: 1,519
Threads: 107
Joined: Dec 2011
Reputation:
48
oh i just confused it with sky names
Posts: 28
Threads: 4
Joined: Jan 2013
Reputation:
0
06-18-2013, 19:50
(This post was last modified: 06-18-2013, 19:56 by mn_acer1.)
I had also this question and thanks to Jariz
but there is no map named: mp_aqueduct_ss
and Erosion Map file name is: mp_courtyard_ss
All maps till now are 34:
CSHARP Code
List <string> Maps = new List <string> { "mp_alpha", "mp_bootleg", "mp_bravo", "mp_carbon", "mp_dome", "mp_exchange", "mp_hardhat", "mp_interchange", "mp_lambeth", "mp_mogadishu", "mp_paris", "mp_plaza2", "mp_radar", "mp_seatown", "mp_underground", "mp_village", "mp_aground_ss", "mp_terminal_cls", "mp_cement", "mp_hillside_ss", "mp_italy", "mp_meteora", "mp_morningwood", "mp_overwatch", "mp_park", "mp_qadeem", "mp_restrepo_ss", "mp_six_ss", "mp_shipbreaker", "mp_roughneck", "mp_nola", "mp_crosswalk_ss", "mp_courtyard_ss", "mp_burn_ss" };List <string> MapNmaes = new List <string> { "lockdown", "bootleg", "mission", "carbon", "dome", "downturn", "dardhat", "interchange", "fallen", "bakaara", "resistance", "arkaden", "outpost", "seatown", "underground", "village", "aground", "terminal", "foundation", "getaway", "piazza", "sanctuary", "blackbox", "overwatch", "liberation", "oasis", "lookout", "vortex", "shipbreaker", "roughneck", "parish", "intersection", "erosion", "u-turn" };
You Can You use this function to get the map file name:
CSHARP Code
public string getmapname(string MapName) { MapName = MapName.ToLower(); mapnamegt = Maps[MapNmaes.IndexOf(MapName)]; return mapnamegt; }
For Example:
MapName = "Vortex"
mapnamegt will be = mp_six_ss
|