Why are my player models T-Pose?

Post Reply
Oneleg
Staff
Staff
Posts: 225
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Sat Apr 05, 2014 10:48 pm

Why are my player models T-Pose?

Post by Oneleg »

If you have an issue where the playermodels are all in a T-Pose, the issue may be the models are using the ragdolls, and not the source specified playermodels. This is common in gamemodes that require you to set up models yourself instead of providing this pre-configured for you.

For example, if you need to set something with Doctor Kleiner's model, you'll want to use his playermodel instead of his ragdoll. You'll want to enter this:

Code: Select all

models/player/kleiner.mdl
instead of

Code: Select all

models/Kleiner.mdl
All HL2 and CSS default playermodels will be located in the player directory, however this can not be said for all playermodels downloaded off the Steam Workshop or other public sources that offer custom playermodel downloads.

If you have downloaded a custom playermodel, and are unsure how to find the directory for the custom model; you can do this easily by navigating to the lua/autorun directory within the addon. Normally there will be a file in there that adds the model to the game, which will look something like this.

Code: Select all

player_manager.AddValidModel( "PLAYER MODEL NAME", 		"models/custom/model/here.mdl" );
For reference, here is a compiled list with all of the default models for Garry's Mod:

Half Life 2

Code: Select all

models/player/alyx.mdl
models/player/barney.mdl
models/player/breen.mdl
models/player/combine_soldier.mdl
models/player/combine_soldier_prisonguard.mdl
models/player/combine_super_soldier.mdl
models/player/corpse1.mdl
models/player/eli.mdl
models/player/gman_high.mdl
models/player/kleiner.mdl
models/player/magnusson.mdl
models/player/monk.mdl
models/player/mossman.mdl
models/player/mossman_arctic.mdl
models/player/odessa.mdl
models/player/police.mdl
models/player/police_fem.mdl
models/player/charple.mdl
models/player/soldier_stripped.mdl
models/player/zombie_classic.mdl
models/player/zombie_fast.mdl
models/player/zombie_soldier.mdl
Half Life 2 Citizens

Code: Select all

models/player/group01/female_01.mdl
models/player/group01/female_02.mdl
models/player/group01/female_03.mdl
models/player/group01/female_04.mdl
models/player/group01/female_05.mdl
models/player/group01/female_06.mdl
models/player/group01/male_01.mdl
models/player/group01/male_02.mdl
models/player/group01/male_03.mdl
models/player/group01/male_04.mdl
models/player/group01/male_05.mdl
models/player/group01/male_06.mdl
models/player/group01/male_07.mdl
models/player/group01/male_08.mdl
models/player/group01/male_09.mdl
Half Life 2 Rebels

Code: Select all

models/player/group03/female_01.mdl
models/player/group03/female_02.mdl
models/player/group03/female_03.mdl
models/player/group03/female_04.mdl
models/player/group03/female_05.mdl
models/player/group03/female_06.mdl
models/player/group03/male_01.mdl
models/player/group03/male_02.mdl
models/player/group03/male_03.mdl
models/player/group03/male_04.mdl
models/player/group03/male_05.mdl
models/player/group03/male_06.mdl
models/player/group03/male_07.mdl
models/player/group03/male_08.mdl
models/player/group03/male_09.mdl
Half Life 2 Refugees

Code: Select all

models/player/group02/male_02.mdl
models/player/group02/male_04.mdl
models/player/group02/male_06.mdl
models/player/group02/male_08.mdl
Half Life 2 Medics

Code: Select all

models/player/group03m/female_01.mdl
models/player/group03m/female_02.mdl
models/player/group03m/female_03.mdl
models/player/group03m/female_04.mdl
models/player/group03m/female_05.mdl
models/player/group03m/female_06.mdl
models/player/group03m/male_01.mdl
models/player/group03m/male_02.mdl
models/player/group03m/male_03.mdl
models/player/group03m/male_04.mdl
models/player/group03m/male_05.mdl
models/player/group03m/male_06.mdl
models/player/group03m/male_07.mdl
models/player/group03m/male_08.mdl
models/player/group03m/male_09.mdl
Counter Strike: Source

Code: Select all

models/player/riot.mdl
models/player/gasmask.mdl
models/player/urban.mdl
models/player/swat.mdl
models/player/phoenix.mdl
models/player/arctic.mdl
models/player/guerilla.mdl
models/player/leet.mdl
models/player/hostage/hostage_01.mdl
models/player/hostage/hostage_02.mdl
models/player/hostage/hostage_03.mdl
models/player/hostage/hostage_04.mdl
Day Of Defeat: Source

Code: Select all

models/player/dod_american.mdl
models/player/dod_german.mdl
Post Reply