Choosing Player Models
It is covered here for historical and technical reference.
- See KeyValues for the file format.
In Counter-Strike: Global Offensive, custom maps can be configured to use different player models, or a variety of player models, for the Terrorist and Counter-Terrorist teams. These models are specified in a <mapname>.kv
file that lives in the csgo/maps/
directory.
Contents
Creating a .kv file
"de_example" { "t_models" { "tm_anarchist" "" "tm_anarchist_variantA" "" "tm_anarchist_variantB" "" "tm_anarchist_variantC" "" "tm_anarchist_variantD" "" } "ct_models" { "ctm_swat" "" "ctm_swat_variantA" "" "ctm_swat_variantB" "" "ctm_swat_variantC" "" "ctm_swat_variantD" "" } }If this is the content of csgo/maps/de_example.kv , thende_example.bsp will use Anarchist and Swat player models.
|
The .kv file is simply a text file that shares a name with the map, with the .txt
extension changed to .kv
.
For example, if there were a custom map called de_example.bsp
in the Counter-Strike Global Offensive/csgo/maps/
folder, then there should be a file called de_example.kv
in the same folder.
The .kv file contains a list of key/value pairs formatted similarly to other text files used by the source engine, such as VMT files for materials.
As can be seen in the example on the right, it is possible to configure a map to use a variety of world player models for each team. Unlike in previous Counter-Strike games, the player's model is chosen randomly from this list, instead of allowing the player to choose.
Syntax
See the example on the right. The first word in quotes must be the map's filename.
The key of each KeyValue inside "t_models"
and/or "ct_models"
is supposed to be the path to a player model. If <model>
is such a key, then the game will try to use the first of the following models that exists:
csgo/models/player/custom_player/legacy/<model>.mdl
csgo/models/player/<model>.mdl
csgo/models/error.mdl
The value of each of these KeyValues is ignored, so it can be left empty.
Relation to Gamemodes.txt
The information of this file will to some extent be merged with csgo/gamemodes.txt
. The official maps don't have a csgo/maps/<mapname>.kv
file as their content is already in gamemodes.txt
. The map list in that file can be extended with gamemodes_server.txt
according to the following example.
csgo/maps/<mapname>.kv
file!
"GameModes_Server.txt" { "gameTypes" { // ... } "mapgroups" { // ... } "maps" { "<mapname1>" { "t_models" { "tm_professional""" // ... } "ct_models" { "ctm_fbi""" // ... } } "<mapname2>" { "t_models" { "tm_professional""" // ... } "ct_models" { "ctm_sas""" // ... } } // ... } } |
t_models
and ct_models
. Apparently, the nameID
determines the displayed map name in the loading screen, however this KV does not seem to work in <mapname>.kv
? So where is the map specific file <mapname>.kv
read in code? Ideas:
void GameTypes::AddMapKVs( KeyValues* pKVMaps, const char* curMap )
void GameTypes::CheckShouldSetDefaultGameModeAndType( const char* szMapNameFull )
gametypes.cpp
. In both cases it should actually be possible to ship more KVs with this file but apparently it isn't.[Why?]Model List
These excerpts are set up so that one block represents a commonly used group of models.
The other custom player models can also be used. In the lists below, they are named but commented out (//
) to retain a commonly used group of models.
Counter-Terrorist Models
|
Terrorist Models
|
Other Models
Heavy Phoenix | { "tm_phoenix_heavy""" } |
Heavy CT ( Co-op Strike) |
{ "ctm_heavy""" } |
Jumpsuit ( Danger Zone) |
{ "tm_jumpsuit_variantA""" "tm_jumpsuit_variantB""" "tm_jumpsuit_variantC""" } |
SEAL Frogman (Operation Riptide) |
{ "ctm_diver_variantA""" "ctm_diver_variantB""" "ctm_diver_variantC""" } |
Gendarmerie Nationale (Operation Riptide) |
{ "ctm_gendarmerie_variantA""" "ctm_gendarmerie_variantB""" "ctm_gendarmerie_variantC""" "ctm_gendarmerie_variantD""" "ctm_gendarmerie_variantE""" } |
Guerrilla Warfare (Operation Riptide) |
{ "tm_jungle_raider_variantA""" "tm_jungle_raider_variantB""" "tm_jungle_raider_variantB2""" "tm_jungle_raider_variantC""" "tm_jungle_raider_variantD""" "tm_jungle_raider_variantE""" "tm_jungle_raider_variantF""" "tm_jungle_raider_variantF2""" } |
Zombie | { "zombie""" } |
Georgian Riot Police (Obsolete) |
{ "ctm_georgian" } |
Military Police Special Services Company (Obsolete) |
{ "ctm_mpssc" } |
Yakuza (Obsolete) |
{ "tm_yakuza" } |
Heavy Riot (Obsolete) |
{ "tm_heavy_riot" } |
External links
KV File Writer: A gui tool that streamlines setting up and saving a CT vs T .kv
Web-based KV File Generator: A web-based utility that generates a .kv based on user input.