This repository has been archived by the owner on Dec 3, 2018. It is now read-only.
forked from Azelphur-Servers/TF2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
surf.yaml
121 lines (118 loc) · 4.39 KB
/
surf.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
sourcemod:
# URL to grab SourceMod from, this allows us to change version or use a custom build.
url: http://www.sourcemod.net/smdrop/1.8/sourcemod-1.8.0-git5483-linux.tar.gz
# Only these files/folders will be copied from the sourcemod download into our server build
include:
- addons/sourcemod/bin
- addons/sourcemod/extensions
- addons/sourcemod/gamedata
- addons/sourcemod/translations
- addons/sourcemod/configs
- addons/metamod/sourcemod.vdf
# List of plugins to install, minus file extension (eg basechat but NOT basechat.smx)
# Plugins will be searched for in...
# Default sourcemod plugins, eg sourcemod/plugins/
# Disabled default sourcemod plugins, eg sourcemod/plugins/disabled
# .sp and folders in sourcemod_plugins.
plugins:
- admin-sql-prefetch
- sql-admin-manager
- adminhelp
- adminmenu
- antiflood
- basechat
- basecommands
- basetriggers
- basevotes
- clientprefs
- funcommands
- funvotes
- nextmap
- playercommands
- reservedslots
- sounds
- SourceIRC
- afk_manager
- SourcePunish
- sourceirc-ticket
- addcond
- advertisements
- buttons
- hlstats
- psyrtd
- TF2-Premium
- premium_thirdperson
- serverhop
- TF2_Respawn
- SprayManager
- spamlessslap
- backpack
- radio
- godmode-remove
- WebShortcuts
- motdgd_adverts
- preconnect_reserves
- screamer
- killer
- donor-users
- SMAC
# List of SourceMod config files
# These are config files that will reside in /addons/sourcemod/configs
# and NOT for configs that will reside in /cfg/
# Config files will be searched for in sourcemod_configs first
# then in sourcemod/configs if nothing exists.
# The syntax is source, destination. This allows us to have
# One config file shared between one or more servers.
configs: [
['geoip', 'geoip'],
['admin_groups.cfg', 'admin_groups.cfg'],
['admin_levels.cfg', 'admin_levels.cfg'],
['adminmenu_cfgs.txt', 'adminmenu_cfgs.txt'],
['adminmenu_custom.txt', 'adminmenu_custom.txt'],
['adminmenu_grouping.txt', 'adminmenu_grouping.txt'],
['adminmenu_sorting.cfg', 'adminmenu_sorting.cfg'],
['admin_overrides.cfg', 'admin_overrides.cfg'],
['admins.cfg', 'admins.cfg'],
['banreasons.txt', 'banreasons.txt'],
['core.cfg', 'core.cfg'],
['databases.cfg', 'databases.cfg'],
['languages.cfg', 'languages.cfg'],
['maplists.cfg', 'maplists.cfg'],
['sourceirc_surf.cfg', 'sourceirc.cfg'],
['sourcepunish_surf.cfg', 'sourcepunish.cfg'],
['advertisements_surf.txt', 'advertisements.txt'],
['serverhop.cfg', 'serverhop.cfg'],
['premium_surf.cfg', 'premium.cfg'],
['particles.cfg', 'particles.cfg'],
['Webshortcuts.txt', 'Webshortcuts.txt']
]
# List of SourceMod extensions
# These will be searched for in the sourcemod_extensions directory
# Note that all default SourceMod extensions are installed by default.
extensions:
- socket
- csteamid
- connect
metamod:
# URL to grab MetaMod from, this allows us to change version or use a custom build.
url: http://www.metamodsource.net/mmsdrop/1.11/mmsource-1.11.0-git985-linux.tar.gz
# Only these files/folders will be copied from the metamod download into our server build
include:
- addons/
maps:
- surf_legendary_lite_fix_v3.bsp
- surf_akai_f1n4l_doorfix.bsp
# List of config files
# These are config files that will reside in /cfg/
# and NOT for configs that will reside in /addons/sourcemod/configs/
# Config files will be searched for in the cfg folder
# The syntax is source, destination. This allows us to have
# One config file shared between one or more servers.
configs: [
['server_surf.cfg', 'server_surf.cfg'],
['sourcemod/afk_manager.cfg', 'sourcemod/afk_manager.cfg'],
['sourcemod/sourcemod.cfg', 'sourcemod/sourcemod.cfg'],
['sourcemod/plugin.radio.cfg', 'sourcemod/plugin.radio.cfg'],
['sourcemod/plugin.motdgd_adverts.cfg', 'sourcemod/plugin.motdgd_adverts.cfg'],
['sourcemod/radiostations.ini', 'sourcemod/radiostations.ini']
]