Or you can use a little script for easy switching whenever you're up for a match. This is what I have:
Code: Select all
// quick model change
alias male "cl_playermodel models/humans/Group03/Male_01.mdl; alias change_rebel female"
alias female "cl_playermodel models/humans/Group03/Female_03.mdl; alias change_rebel male"
alias change_rebel female
alias police "cl_playermodel "models/police.mdl; alias change_combine dark"
alias dark "cl_playermodel models/combine_soldier.mdl; alias change_combine bright"
alias bright "exec supersoldier.cfg; alias change_combine police"
alias change_combine police
//bind j change_rebel -> cycles between a dark male and female
//bind k change_combine -> cycles between the dark soldier, the bright super soldier and the police
For some reason the supersoldier didn't work at first, so I had to make a separate config file called supersoldier.cfg:
Code: Select all
cl_playermodel "models/combine_super_soldier.mdl"
Either you use the keys to get what you want, or you can simply type, e.g., police in the console if you want to be sure what you got without checking with your team mates (or by dying).