Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Bobmac’s Gmod animation dump
- • What’s $includemodel lines?
- They’re animation bases packed with animations.They’re used on different usages.. (weapon animations , NPC animations and others..)
- As example, A model without “$includemodel m/f_anm.mdl” will not work as PM in Garry’s Mod and it’ll be T-pose.
- • How can i use them?
- Go into any model’s Qc. And put the lines shown below to your desired usage.
- If you want friendly NPC for the model, Just copy the lines from //Friendly Male/Female and paste them between $animation lines and $collisionjoints line.. bcuz that’s the best place for them..
- So, If your model is T-pose in PM , NPC or want the model to use another animations like Alyx , Kleiner etc.
- Use these lines shown below.!
- ////////////////////////////////////////-Playermodel Animation-////////////////////////////////////////////
- //Male
- $includemodel "m_anm.mdl"
- $includemodel "m_gst.mdl"
- $includemodel "m_pst.mdl"
- $includemodel "m_shd.mdl"
- $includemodel "m_ss.mdl"
- //Female
- $includemodel "f_anm.mdl"
- $includemodel "f_gst.mdl"
- $includemodel "f_pst.mdl"
- $includemodel "f_shd.mdl"
- $includemodel "f_ss.mdl"
- //////////////////////////////////////////-NPC Animation-//////////////////////////////////////////////////
- //Hostile Combine
- $includemodel "combine_soldier_anims.mdl"
- $includemodel "humans/male_shared.mdl"
- //Hostile Metrocop
- $includemodel "Police_animations.mdl"
- $includemodel "Police_ss.mdl"
- $includemodel "humans/male_shared.mdl"
- //Zombie
- $IncludeModel "zombie\zmanims.mdl"
- //Friendly Male
- $includemodel "humans/male_shared.mdl"
- $includemodel "humans/male_ss.mdl"
- $includemodel "humans/male_gestures.mdl"
- $includemodel "humans/male_postures.mdl"
- //Friendly Female
- $includemodel "humans/female_gestures.mdl"
- $includemodel "humans/female_postures.mdl"
- $includemodel "humans/female_shared.mdl"
- $includemodel "humans/female_ss.mdl"
- //Kleiner
- $includemodel "Kleiner_animations.mdl"
- $includemodel "humans/male_shared.mdl"
- $includemodel "Kleiner_postures.mdl"
- $includemodel "Kleiner_gestures.mdl"
- //Alyx
- $IncludeModel "alyx_animations.mdl"
- $IncludeModel "alyx_postures.mdl"
- $IncludeModel "alyx_gestures.mdl"
- $IncludeModel "humans/female_shared.mdl"
- $IncludeModel "humans/female_ss.mdl"
Advertisement
Add Comment
Please, Sign In to add comment