Guest User

Untitled

a guest
Sep 2nd, 2022
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. --Welcome!
  2. --This is the configuration file for the Modern Warfare series of gamemodes
  3. --Here you can configure the operators players can use, the weapons, and the equipment they will have
  4. --For the playermodels you will have to use the models, not their names. You can get that by right-clicking any playermodel and pressing Copy
  5. --For the weapons and equipment you do the same
  6. --Oh yeah and same for the whitelisted SWEPs
  7. --Good luck, and have fun!
  8.  
  9. --Don't touch this
  10. MW = {}
  11.  
  12. --Team setup. Change colors and names here
  13. MW.Team1Name = "Counter-Coalition"
  14. MW.Team2Name = "Terrolegiance"
  15. MW.Team1Color = Color(98, 173, 219)
  16. MW.Team2Color = Color(204, 99, 81)
  17. MW.Team1Operators = {
  18. "models/player/riot.mdl",
  19. "models/player/swat.mdl",
  20. "models/player/urban.mdl",
  21. "models/player/gasmask.mdl"
  22. }
  23. MW.Team2Operators = {
  24. "models/player/phoenix.mdl",
  25. "models/player/leet.mdl",
  26. "models/player/guerilla.mdl",
  27. "models/player/arctic.mdl"
  28. }
  29.  
  30. --Loadout setup is below
  31. MW.Primaries = {
  32. "tmbwbec_mp5",
  33. "tmbwbec_aug",
  34. "tmbwbec_ak47",
  35. "tmbwbec_m4a1",
  36. "tmbwbec_g3sg1",
  37. "tmbwbec_krieg550",
  38. "tmbwbec_krieg552",
  39. "tmbwbec_m3",
  40. "tmbwbec_xm1014",
  41. "tmbwbec_m249",
  42. "tmbwbec_tmp",
  43. "tmbwbec_galil",
  44. "tmbwbec_ump45",
  45. "tmbwbec_awp",
  46. "tmbwbec_scout",
  47. "tmbwbec_mac10",
  48. "tmbwbec_p90",
  49. "tmbwbec_famas",
  50. "tmbwbec_smg1",
  51. "tmbwbec_shotgun"
  52. }
  53.  
  54. MW.Pistols = {
  55. "tmbwbec_fiveseven",
  56. "tmbwbec_deagle",
  57. "tmbwbec_glock18",
  58. "tmbwbec_p228",
  59. "tmbwbec_usp",
  60. "tmbwbec_elite",
  61. "tmbwbec_357"
  62. }
  63.  
  64. MW.JuggernautOperator = "models/player/combine_soldier_prisonguard.mdl"
  65. MW.JuggernautWeapon = "tmbwbec_minigun"
  66.  
  67. MW.Lethals = {
  68. "tmbwbec_hegrenade"
  69. }
  70.  
  71. MW.Tacticals = {
  72. "tmbwbec_flashbang",
  73. "tmbwbec_smokegrenade",
  74. "weapon_medkit"
  75. }
  76.  
  77. MW.WhitelistedSweps = {
  78. "mw_tacticalnuke",
  79. "aact_weapact"
  80. }
  81.  
Advertisement
Add Comment
Please, Sign In to add comment