Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1.  
  2.  
  3. -- Chat commands
  4. SpecDM.Commands = {
  5. "!dm",
  6. "!deathmatch",
  7. "!specdm"
  8. }
  9.  
  10. -- Respawn time when ghosts die
  11. SpecDM.RespawnTime = 4
  12.  
  13. -- Set this to true if you have a custom scoreboard
  14. -- (a completely fresh one, not a modification like rank column, spykr's addons or logo change)
  15. SpecDM.IsScoreboardCustom = true
  16.  
  17. -- Force all players to join the specdm when they die?
  18. SpecDM.ForceDeathmatch = false
  19.  
  20. -- If SpecDM.ForceDeathmatch is disabled, open a small pop up asking them if they want to join deathmatch?
  21. SpecDM.PopUp = false
  22.  
  23. -- Display a chat message when a player dies to let him know he can deathmatch
  24. SpecDM.DisplayMessage = true
  25.  
  26. -- Enable join/leave messages
  27. SpecDM.EnableJoinMessages = true
  28.  
  29. -- Mute alive players by default when you join the specdm
  30. SpecDM.MuteAlive = false
  31.  
  32. -- F-Key to open the statistics menu
  33. SpecDM.StatsFKey = KEY_F7
  34.  
  35. -- Enable HP regeneration
  36. SpecDM.HP_Regen = true
  37.  
  38. -- list of weapons
  39. -- make sure you use the base weapon_ghost_base if you want to create your own one, but it must be a regular weapon
  40. SpecDM.Ghost_weapons = {
  41. secondary = {
  42. "weapon_ghost_glock",
  43. "weapon_ghost_pistol",
  44. "weapon_ghost_revolver",
  45. "weapon_ghost_magnum"
  46. },
  47. primary = {
  48. "weapon_ghost_ak47",
  49. "weapon_ghost_augbar",
  50. "weapon_ghost_awp",
  51. "weapon_ghost_famas",
  52. "weapon_ghost_galil",
  53. "weapon_ghost_sledge",
  54. "weapon_ghost_mac10",
  55. "weapon_ghost_hl2smg",
  56. "weapon_ghost_m16",
  57. "weapon_ghost_mp5",
  58. "weapon_ghost_p90",
  59. "weapon_ghost_sg550",
  60. "weapon_ghost_siltmp",
  61. "weapon_ghost_shotgun",
  62. "weapon_ghost_rifle",
  63. }
  64. }
  65.  
  66. -- Enabled the loadout and allow players to select their favorite weapons?
  67. SpecDM.LoadoutEnabled = true
  68.  
  69. -- Enable quake sounds
  70. SpecDM.QuakeSoundsEnabled = true
  71.  
  72. -- Icons on the F1 loadout if the loadout is enabled
  73. SpecDM.Loadout_Icons = {
  74. weapon_ghost_revolver = "VGUI/ttt/icon_deagle",
  75. weapon_ghost_glock = "VGUI/ttt/icon_glock",
  76. weapon_ghost_pistol = "VGUI/ttt/icon_pistol",
  77. weapon_ghost_magnum = "VGUI/spec_dm/icon_sdm_revolver",
  78. weapon_ghost_rifle = "VGUI/ttt/icon_scout",
  79. weapon_ghost_sg550 = "VGUI/spec_dm/icon_sdm_sg550",
  80. weapon_ghost_ak47 = "VGUI/spec_dm/icon_sdm_ak47",
  81. weapon_ghost_sledge = "VGUI/ttt/icon_m249",
  82. weapon_ghost_mac10 = "VGUI/ttt/icon_mac",
  83. weapon_ghost_augbar = "VGUI/spec_dm/icon_sdm_aug",
  84. weapon_ghost_m16 = "VGUI/ttt/icon_m16",
  85. weapon_ghost_hl2pistol = "VGUI/spec_dm/icon_sdm_pistol",
  86. weapon_ghost_hl2smg = "VGUI/spec_dm/icon_sdm_smg",
  87. weapon_ghost_shotgun = "VGUI/ttt/icon_shotgun",
  88. weapon_ghost_p90 = "VGUI/spec_dm/icon_sdm_p90",
  89. weapon_ghost_awp = "VGUI/spec_dm/icon_sdm_awp",
  90. weapon_ghost_galil = "VGUI/spec_dm/icon_sdm_galil",
  91. weapon_ghost_famas = "VGUI/spec_dm/icon_sdm_famas",
  92. weapon_ghost_mp5 = "VGUI/spec_dm/icon_sdm_mp5",
  93. weapon_ghost_siltmp = "VGUI/spec_dm/icon_sdm_stmp"
  94. }
  95.  
  96. -- If you're using _Undefined's pointshop you can enable this to give ghosts points when they kill other ghosts
  97. SpecDM.GivePointshopPoints = false
  98. SpecDM.PointshopPoints = 5
  99.  
  100. -- Whitelist
  101. SpecDM.RestrictCommand = false
  102.  
  103. -- List of allowed ranks if you enabled the whitelist
  104. SpecDM.AllowedGroups = {
  105. "admin",
  106. "superadmin"
  107. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement