BobmacU

Bobmac’s Gmod animation dump

Dec 14th, 2024 (edited)
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | Software | 0 0
  1. Bobmac’s Gmod animation dump
  2.  
  3. • What’s $includemodel lines?
  4.  
  5. They’re animation bases packed with animations.They’re used on different usages.. (weapon animations , NPC animations and others..)
  6.  
  7. 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.
  8.  
  9. • How can i use them?
  10.  
  11. Go into any model’s Qc. And put the lines shown below to your desired usage.
  12.  
  13. 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..
  14.  
  15. So, If your model is T-pose in PM , NPC or want the model to use another animations like Alyx , Kleiner etc.
  16.  
  17. Use these lines shown below.!
  18.  
  19. ////////////////////////////////////////-Playermodel Animation-////////////////////////////////////////////
  20.  
  21. //Male
  22. $includemodel "m_anm.mdl"
  23. $includemodel "m_gst.mdl"
  24. $includemodel "m_pst.mdl"
  25. $includemodel "m_shd.mdl"
  26. $includemodel "m_ss.mdl"
  27.  
  28. //Female
  29. $includemodel "f_anm.mdl"
  30. $includemodel "f_gst.mdl"
  31. $includemodel "f_pst.mdl"
  32. $includemodel "f_shd.mdl"
  33. $includemodel "f_ss.mdl"
  34.  
  35.  
  36. //////////////////////////////////////////-NPC Animation-//////////////////////////////////////////////////
  37.  
  38. //Hostile Combine
  39. $includemodel "combine_soldier_anims.mdl"
  40. $includemodel "humans/male_shared.mdl"
  41.  
  42. //Hostile Metrocop
  43. $includemodel "Police_animations.mdl"
  44. $includemodel "Police_ss.mdl"
  45. $includemodel "humans/male_shared.mdl"
  46.  
  47. //Zombie
  48. $IncludeModel "zombie\zmanims.mdl"
  49.  
  50. //Friendly Male
  51. $includemodel "humans/male_shared.mdl"
  52. $includemodel "humans/male_ss.mdl"
  53. $includemodel "humans/male_gestures.mdl"
  54. $includemodel "humans/male_postures.mdl"
  55.  
  56. //Friendly Female
  57. $includemodel "humans/female_gestures.mdl"
  58. $includemodel "humans/female_postures.mdl"
  59. $includemodel "humans/female_shared.mdl"
  60. $includemodel "humans/female_ss.mdl"
  61.  
  62. //Kleiner
  63. $includemodel "Kleiner_animations.mdl"
  64. $includemodel "humans/male_shared.mdl"
  65. $includemodel "Kleiner_postures.mdl"
  66. $includemodel "Kleiner_gestures.mdl"
  67.  
  68. //Alyx
  69. $IncludeModel "alyx_animations.mdl"
  70. $IncludeModel "alyx_postures.mdl"
  71. $IncludeModel "alyx_gestures.mdl"
  72. $IncludeModel "humans/female_shared.mdl"
  73. $IncludeModel "humans/female_ss.mdl"
  74.  
Advertisement
Add Comment
Please, Sign In to add comment