-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
144 lines (118 loc) · 2.73 KB
/
config.toml
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# INFO
name = "pique arena"
motd = [
"Welcome to %(server_name)s",
"Map: %(map_name)s by %(map_author)s",
"Game mode: %(game_mode)s",
"Server powered by piqueserver"
]
help = [
"Server name: %(server_name)s", "Map: %(map_name)s by %(map_author)s",
"Game mode: %(game_mode)s",
"/streak Shows how many kills in a row you got without dying",
"/intel Tells you who's got the enemy intel",
"/votekick Start a vote to temporarily ban a disruptive player",
"/time Remaining time until forced map reset"
]
rules = [
"Don't cheat. Have fun!"
]
tips = [
"You are playing %(game_mode)s on %(server_name)s",
"Type /help for info & commands"
]
tips_frequency = 5
# SERVER
master = false
max_players = 32
server_prefix = ""
max_connections_per_ip = 3
port = 8001
network_interface = ""
login_retries = 3
scripts = [
"piqueserver.scripts.votekick",
"piqueserver.scripts.map_extensions",
"piqueserver.scripts.disco",
"piqueserver.scripts.trusted",
"piqueserver.scripts.ratio",
"piqueserver.scripts.aimbot2",
"piqueserver.scripts.afk"
]
# MAP
rotation = [
"de_train",
"csitaly",
"de_dust",
"de_aztec",
"cs_assault",
"csoffice",
"cs_havana"
]
advance_on_win = true
# GAME
game_mode = "piqueserver.game_modes.arena"
cap_limit = 10
default_time_limit = 120
respawn_time = 16
respawn_waves = true
melee_damage = 80
fall_damage = true
friendly_fire = false
balanced_teams = 2
speedhack_detect = false
[team1]
name = "Blue"
color = [0, 0, 255]
[team2]
name = "Green"
color = [0, 255, 0]
[passwords]
admin = [ "changethis!" ]
moderator = []
guard = []
trusted = []
[bans]
default_duration = 1440
[rights]
# Rights allow you to specify the roles available and what permissions they have
moderator = [
"advancemap", "cancel", "dban", "fog",
"from", "hackinfo", "hban",
"invisible", "ip", "kick", "kickafk",
"kill", "map", "master", "move", "moves",
"mute", "resetgame", "switch", "teleport",
"teleport_other", "tpsilent", "togglebuild", "togglekill",
"togglevotekick", "trust", "undoban", "unmute",
"unstick", "where", "whowas"
]
guard = [
"cancel", "fog", "from",
"hackinfo", "hban", "ip", "kick",
"kickafk", "kill", "move", "moves", "mute",
"switch", "teleport", "teleport_other", "togglebuild",
"togglekill", "togglevotekick", "trust", "unmute",
"unstick", "where", "whowas"
]
[status_server]
enabled = true
port = 8002
logging = false
[irc]
enabled = false
nickname = "csarena"
username = "csarena"
realname = "csarena"
server = "chat.freenode.net"
port = 6667
channel = "#piquearena"
password = ""
# prefixes irc users must use for bot to process as command or to send to game chat
commandprefix = "!"
chatprefix = "."
[afk]
time_limit = 3.5
[votekick]
percentage = 35
ban_duration = 30
public_votes = true