Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.71 KB | None | 0 0
  1. CMV.Config = CMV.Config or {}
  2. local cfg = CMV.Config
  3.  
  4. cfg.AutoPrefix = true -- Grab prefixes for gamemodes automatically
  5. cfg.Prefixes = { -- If enabled, prefixes will be grabbed from the table.  Do not enable at the same time as AutoPrefix
  6.     "ttt"
  7. }
  8.  
  9. cfg.BlacklistMaps = { -- Maps with the proper prefix that are not wanted in the pool
  10.     "de_dust",
  11.     "cs_assault",
  12.     "cs_compund",
  13.     "cs_italy",
  14.     "cs_militia",
  15.     "cs_office",
  16.     "de_aztec",
  17.     "de_cbble",
  18.     "de_chateau",
  19.     "de_dust2",
  20.     "de_inferno",
  21.     "de_nuke",
  22.     "de_piranesi",
  23.     "de_port",
  24.     "de_prodigy",
  25.     "de_tides",
  26.     "de_train",
  27.     "test_hardware",
  28.     "test_speakers"
  29. }
  30.  
  31. cfg.ExtraMaps = { -- Maps with different prefixes that are wanted in the map pool
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement