forked from metalted/RoomService
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
47 lines (46 loc) · 1.41 KB
/
Copy pathconfig.json
File metadata and controls
47 lines (46 loc) · 1.41 KB
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
{
"Parameters": [
"HOSTNAME:RS"
],
"Commands": [
"ClearTracker",
"ResetChampionshipPoints",
"BlockEveryoneFromSettingTime",
"UnblockEveryoneFromSettingTime",
"ResetPointsDistribution",
"SetPointsDistribution([1st,2nd,3rd,...];baseline;dnf)",
"SetPlayerChampionshipPoints(steamID, points, change)",
"AddPlayerChampionshipPoints(steamID, points)",
"BlockPlayerFromSettingTime(steamID)",
"UnblockPlayerFromSettingTime(steamID)",
"SendServerMessage(prefix, message)",
"SendPlayerMessage(prefix, message, steamID)",
"SetSmallLeaderboardSortingMethod(sortOnPoints)",
"SetPlayerTimeOnLeaderboard(steamID, time)",
"SetPlayerLeaderboardOverrides(steamID, time, name, position, points, pointsWon)",
"RemovePlayerFromLeaderboard(steamID)",
"SetServerMessage"
],
"OnLoad":
[
"SetPointsDistribution([10,9,8,7,6,5,4,3,2,1], 0, -10)",
"SendServerMessage({HOSTNAME},Loaded Configuration!)"
],
"OnPlayerJoined": [
"SendPlayerMessage({HOSTNAME},Welcome to the lobby named {ROOMNAME}!,{STEAMID})"
],
"OnPlayerLeft": [
],
"OnRoundStart": [
"SendServerMessage({HOSTNAME},Starting round on {LEVELNAME})"
],
"OnRoundEnd": [
"SendServerMessage({HOSTNAME},Starting round on {LEVELNAME})"
],
"OnPlayerImproved": [
"AddPlayerChampionshipPoints({STEAMID},5)"
],
"OnPlayerFinished": [
"AddPlayerChampionshipPoints({STEAMID},10)"
]
}