Call of Duty 5: Players Model: Difference between revisions
mNo edit summary |
|||
(11 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{Note|This article is to help you select the Player Models for your maps.}} | |||
== Player Model Teams == | == Player Model Teams == | ||
Line 18: | Line 18: | ||
German Wehrmacht | German Wehrmacht | ||
Just as in COD4, with the SAS vs Spatsnez team problem, there is a problem with the default _teams.gsc file - it assumes that a custom map is listed in mapsTable.csv, and will default you to using Marines (Americans) and Japanese. | |||
Extreme/ACE/AWE and a few other mods already have a fixed '''_teams.gsc''' so its best to use those mod while testing your Level; | |||
{{Warning|This is not for Mappers!! Mappers SHOULD NOT include the fixed file in their map release!}} | |||
The best solution to fix this being the [[Call of Duty 5: Players_Model#MAPSTABLE.CSV|Mapstable]] Solution on the end of this tutorial. | |||
== Player Model Classes == | == Player Model Classes == | ||
Line 45: | Line 37: | ||
{{Info|For the modders, here are the Script Classes for each:}} | |||
* Rifleman > ASSAULT | * Rifleman > ASSAULT | ||
Line 60: | Line 52: | ||
* | *{{Color|US Marines vs.Japanese Imperial Army|blue}} | ||
< | <syntaxhighlight lang="cpp"> | ||
game["allies"] = "marines"; | game["allies"] = "marines"; | ||
game["axis"] = "japanese"; | game["axis"] = "japanese"; | ||
Line 69: | Line 61: | ||
game["allies_soldiertype"] = "pacific"; | game["allies_soldiertype"] = "pacific"; | ||
game["axis_soldiertype"] = "pacific"; | game["axis_soldiertype"] = "pacific"; | ||
</ | </syntaxhighlight> | ||
* | *{{Color|Russian Red Army vs. German Wehrmacht|blue}} | ||
< | <syntaxhighlight lang="cpp"> | ||
game["allies"] = "russian"; | game["allies"] = "russian"; | ||
game["axis"] = "german"; | game["axis"] = "german"; | ||
Line 80: | Line 72: | ||
game["allies_soldiertype"] = "german"; | game["allies_soldiertype"] = "german"; | ||
game["axis_soldiertype"] = "german"; | game["axis_soldiertype"] = "german"; | ||
</ | </syntaxhighlight> | ||
* | *{{Color|US Marines vs. German Wehrmacht|blue}} | ||
< | <syntaxhighlight lang="cpp"> | ||
game["allies"] = "marines"; | game["allies"] = "marines"; | ||
game["axis"] = "german"; | game["axis"] = "german"; | ||
Line 91: | Line 83: | ||
game["allies_soldiertype"] = "pacific"; | game["allies_soldiertype"] = "pacific"; | ||
game["axis_soldiertype"] = "german"; | game["axis_soldiertype"] = "german"; | ||
</ | </syntaxhighlight> | ||
* | *{{Color|Russian Red Army vs. Japanese Imperial Army|blue}} | ||
< | <syntaxhighlight lang="cpp"> | ||
game["allies"] = "russian"; | game["allies"] = "russian"; | ||
game["axis"] = "japanese"; | game["axis"] = "japanese"; | ||
Line 102: | Line 94: | ||
game["allies_soldiertype"] = "german"; | game["allies_soldiertype"] = "german"; | ||
game["axis_soldiertype"] = "pacific"; | game["axis_soldiertype"] = "pacific"; | ||
</ | </syntaxhighlight> | ||
{{Warning|'''Note that the last 2 examples aren't historically correct in terms of the Uniforms or Events.'''|black}} | |||
Line 126: | Line 118: | ||
Treyarch didnt't include the mptypes CSV files with the RAW dump, so I created them for you to download: | Treyarch didnt't include the mptypes CSV files with the RAW dump, so I created them for you to download: | ||
{{Download|http://wiki.modsrepository.com/codww_files/codww_mptypes.zip|LOCAL Mirror}} | |||
* This download also bring you '''Marines VS Wehrmacht''' and '''Russians VS Japanese''' | |||
{{Warning|'''ONLY ALWAYS USE ONE include,mptypes_' LINE IN YOUR ZONE FILE!'''|black}} | |||
== Player Models Pictures == | == Player Models Pictures == | ||
{{Color|The order is always as follow:|blue}} | |||
Rifleman | Rifleman | ||
Line 158: | Line 153: | ||
[[Image:mptype_ger_hnrgrd_assault.png|150px]] [[Image:mptype_ger_hnrgrd_smg.png|150px]] [[Image:mptype_ger_hnrgrd_lmg.png|150px]] | [[Image:mptype_ger_hnrgrd_assault.png|150px]] [[Image:mptype_ger_hnrgrd_smg.png|150px]] [[Image:mptype_ger_hnrgrd_lmg.png|150px]] | ||
[[Image:mptype_ger_hnrgrd_cqb.png|150px]] [[Image:mptype_ger_hnrgrd_rifle.png|150px]] | [[Image:mptype_ger_hnrgrd_cqb.png|150px]] [[Image:mptype_ger_hnrgrd_rifle.png|150px]] | ||
==MAPSTABLE.CSV== | ==MAPSTABLE.CSV== | ||
{{Note|if a map uses a custom mapstable.csv, this get's over all the problems that the stock _teams.gsc file causes: '''no more "gun in the face" problem.'''}} | |||
*The game reads the custom mapstable.csv file, and gets its character models from that: | *The game reads the custom mapstable.csv file, and gets its character models from that: | ||
Line 171: | Line 165: | ||
a0,b1,c2,d3,e4,f5,g6,h7,i8,j9,k10 | a0,b1,c2,d3,e4,f5,g6,h7,i8,j9,k10 | ||
maxnum_map,1,,,,,,,,, | maxnum_map,1,,,,,,,,, | ||
#mapname, | #mapname,#allies characters,#axis characters,#mapname,#mapimage,#index,#description,#mapoverlay,#map size description,#vehicles,#splitscreen | ||
mp_campdavid,german,german,CUSTOM_CAMPDAVID,loadscreen_mp_campdavid,0,CUSTOM_DESC_MAP_CAMPDAVID, | mp_campdavid,german,german,CUSTOM_CAMPDAVID,loadscreen_mp_campdavid,0,CUSTOM_DESC_MAP_CAMPDAVID,compass_overlay_map_airfield,MEDIUM,NO,NO | ||
</pre> | </pre> | ||
Line 188: | Line 182: | ||
</pre> | </pre> | ||
{{Info|If every mapper did this, there would be no need for a modded _teams.gsc file being included in a map's IWD file.}} | |||
--[[User:Zaphax|Zaphax.]] 20:37, 10 November 2008 (UTC) | |||
[[Category:Call of Duty 5]] | [[Category:Call of Duty 5]] | ||
Line 194: | Line 191: | ||
[[Category:Mapping]] | [[Category:Mapping]] | ||
[[Category:Technical Reference]] | [[Category:Technical Reference]] | ||
Latest revision as of 14:49, 16 December 2010
Player Model Teams
Like any other Call Of Duty Game, COD:WW uses the usual team split:
- Allies
- Axis
In Allies you have:
US Marines Russian Red Army
In Axis you have:
Japanese Imperial Army German Wehrmacht
Just as in COD4, with the SAS vs Spatsnez team problem, there is a problem with the default _teams.gsc file - it assumes that a custom map is listed in mapsTable.csv, and will default you to using Marines (Americans) and Japanese.
Extreme/ACE/AWE and a few other mods already have a fixed _teams.gsc so its best to use those mod while testing your Level;
The best solution to fix this being the Mapstable Solution on the end of this tutorial.
Player Model Classes
Again, as in COD4:MW, COD:WW is re-using the class system:
- Rifleman
- Light Gunner
- Heavy Gunner
- Close Assault
- Sniper
- Rifleman > ASSAULT
- Light Gunner > SPECOPS
- Heavy Gunner > SUPPORT
- Close Assault > RECON
- Sniper > SNIPER
MAP GSC Syntax
There are 4 combiantion possible for your MP Levels in regards to Player Models:
- US Marines vs.Japanese Imperial Army
game["allies"] = "marines";
game["axis"] = "japanese";
game["attackers"] = "allies";
game["defenders"] = "axis";
game["allies_soldiertype"] = "pacific";
game["axis_soldiertype"] = "pacific";
- Russian Red Army vs. German Wehrmacht
game["allies"] = "russian";
game["axis"] = "german";
game["attackers"] = "axis";
game["defenders"] = "allies";
game["allies_soldiertype"] = "german";
game["axis_soldiertype"] = "german";
- US Marines vs. German Wehrmacht
game["allies"] = "marines";
game["axis"] = "german";
game["attackers"] = "axis";
game["defenders"] = "allies";
game["allies_soldiertype"] = "pacific";
game["axis_soldiertype"] = "german";
- Russian Red Army vs. Japanese Imperial Army
game["allies"] = "russian";
game["axis"] = "japanese";
game["attackers"] = "allies";
game["defenders"] = "axis";
game["allies_soldiertype"] = "german";
game["axis_soldiertype"] = "pacific";
In your Map GSC simply place the relevant section from your choice.
Compiling Player Model Factions/SoldierTypes
To get the right models compiled into your map, just as in COD4, you use an #include, and reference a relevant .CSV file for that faction:
include,mptypes_german
This is for both German (Wehrmacht) and Russians, as the Russians are actually classed as a "german" soldiertype
include,mptypes_pacific
This is for both the Marines (American) and Imperial Army (Japanese)
Place these includes in your map's zone .CSV file, just as you did for COD4
Treyarch didnt't include the mptypes CSV files with the RAW dump, so I created them for you to download:
- This download also bring you Marines VS Wehrmacht and Russians VS Japanese
Player Models Pictures
The order is always as follow:
Rifleman Light Gunner Heavy Gunner Close Assault Sniper
US Marines
Japanese Imperial Army
Russian Red Army
German Wehrmacht
MAPSTABLE.CSV
- The game reads the custom mapstable.csv file, and gets its character models from that:
# Map Data Table,,,,,,,,,, a0,b1,c2,d3,e4,f5,g6,h7,i8,j9,k10 maxnum_map,1,,,,,,,,, #mapname,#allies characters,#axis characters,#mapname,#mapimage,#index,#description,#mapoverlay,#map size description,#vehicles,#splitscreen mp_campdavid,german,german,CUSTOM_CAMPDAVID,loadscreen_mp_campdavid,0,CUSTOM_DESC_MAP_CAMPDAVID,compass_overlay_map_airfield,MEDIUM,NO,NO
- This satisfies what _teams.gsc looks for:
alliesCharSet = tableLookup( "mp/mapsTable.csv", 0, getDvar( "mapname" ), 1 ); axisCharSet = tableLookup( "mp/mapsTable.csv", 0, getDvar( "mapname" ), 2 );
- To add the custom map table to your map, Add this line to your Zone Source file map_mapname.csv
stringtable,mp/mapstable.csv
--Zaphax. 20:37, 10 November 2008 (UTC)