· 6 years ago · Dec 10, 2019, 03:26 AM
1#Do not change unless you know what you are doing...
2
3CPAS:
4 #Api URL for CPAS
5 apiUrl: "EMPTY"
6
7 #Api KEY for CPAS
8 apiKey: "EMPTY"
9
10 #Minecraft Server IP
11 serverIP: "EMPTY"
12
13 #Minecraft Server Port
14 port: "EMPTY"
15
16 #Groups prefix text
17 groupsPrefix: "groups."
18
19
20 #Do we use primary groups? Should this plugin assign the player's primary group?
21 usePrimaryGroups: true
22
23 #Define groups to assign. Using format: <cpasRank>: <inGameGroupName>. Case sensitive
24 primaryGroups:
25 10: "member"
26 20: "mod"
27 30: "admin"
28 60: "leadership"
29 70: "founder"
30
31 #Apply a default group (set below) to players who aren't members (defined above)?
32 useNoGroup: true
33
34 #If the above setting (useNoGroup) is set to true, a non-member will be assigned the following rank:
35 noGroupGroup: "default"
36
37 #Should this plugin assign player's division groups?
38 useDivisionGroups: true
39
40 #Set the group corresponding to MAUL's division group. Format: <cpasDivisionTag>: <inGameGroupName>
41 divisionGroups:
42 mc: "mc"
43 bf: "bf"
44 dod: "dod"
45 gmod: "gmod"
46 ow: "ow"
47 tf: "tf2"
48
49 #Should this plugin assign secondary groups (Such as EC, RC, and AT)?
50 useSecondaryGroups: true
51
52 #If useSecondaryGroups is set to true, you can define those groups here. Format: <cpasRank>: <inGameGroupName>
53 secondaryGroups:
54 31: "recruiter"
55 25: "trainer"
56
57 #Should this plugin handle giving player's their DS rank if applicable?
58 #Warning; If you have this enabled, and then disable it, you may have to manually check DS
59 useDsGroup: true
60
61 #Define the group DS retrieves
62 dsGroup: "ds"
63
64 #Here you define the minimum admin level required to be put in the admin array
65 adminLevel:
66 name: "mod"
67 rank: 20
68
69
70commands:
71 #Should this plugin override other plugin's ban command? If enabled, use /[pluginName]:ban to execute another plugin's ban
72 #For example, an essentials ban could be: /essentials:ban [player] [duration] [reason]
73 #and Minecraft's ban would be: /minecraft:ban [player]
74 #This is recommended to be true, as otherwise no real point in this plugin!
75 overrideBanCommand: true
76
77 #This is the number of bans to display using /cpas banhistory [player] command
78 #If player has less then given number, all of their bans will be displayed
79 banHistoryCount: 5
80
81 #What rank can only be banned from that rank and above? Uses value from <cpasRank>
82 banRankThreshold: 60