-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.yml
106 lines (86 loc) · 4.11 KB
/
config.yml
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
####################################################################
#//////////////////////////////////////////////////////////////////#
#////////////////////ModReq Configuration File/////////////////////#
#//////////////////////////////////////////////////////////////////#
####################################################################
####################################################################
# Introduction #
#------------------------------------------------------------------#
# Welcome to the configuration file of ModReq. This time in a #
# fresh new look. With Every configuration I will try to make sure #
# that is is easy to follow and hard to understand. Examples will #
# be given in this file and they can be rocognised by the # in #
# front of them. Sometimes the file will say DO NOT EDIT. in that #
# case it will break the plugin if you try to edit it. #
# If something is not clear you should not wait, but you shoud go #
# to my bukkit dev and just ask. #
# ModReq bukkit dev page: http://dev.bukkit.org/server-mods/modreq #
####################################################################
####################################################################
# DO NOT EDIT #
####################################################################
#The config File version. DO NOT CHANGE YOURSELF
version: 2.4
####################################################################
# Configurations #
####################################################################
#Use this to specify the maximum amount of open/closed tickets a
#player may have.
maximum-open-tickets: 5
#The Update feature
#NOTE: as of version 2.3 ModReq does no longer spam console saying:
#checking for updates and comparing to current version :D
#Change this to false if you do not want modreq
#to check for updates. The host of the jar file is bukkit dev. I
#however host a cache on http://website.shadowblox.com/ to reduce
#trafic to the bukkit servers. The files downloaded checked every
#hour are: Version number of modreq, Latest download link. Once you
#do /updatemodreq the jar file and the changelog are downloaded to
#a folder inside the plugin folder.
check-updates: false
#use metrics. This sends anonymous data to mcstats.org to analize.
#This is NO HARM for your server
metrics: false
#If you change this to true, a staff member can claim multiple
#tickets at the same time
may-claim-multiple: false
#Use this to display the Nickname of the submitter when he is
#online
use-nickname: false
#Change this to true if you want claimed ticket to appear in the
#/check list.
show-claimed-tickets-in-open-list: false
#If you do not want pending tickets to appear in the /check list for
#people with enough permissions, set this to false
show-pending-tickets-in-open-list: true
#Specify the TimeZone used for the Date here
timezone: GMT
#Use this to change the time format using SimpleDateFormat. If you
#don't know how SimpleDateFormat is used you can check out this link:
#http://docs.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html
timeformat: 'HH:mm'
#Change this to true if you want the staff to be notified about
#open tickets uppon login
notify-on-login: true
#change this to true if you want the staff to be notified every
#few minutes about open tickets and specify the time in minutes
notify-on-time: true
time-period: 5
#use this to limit the amount of comments someone can add in a row
comment-limit: 3
#change this to use mySQL or not
use-mysql: false
#specify mySQL server information here. The example does noet work
#The format for the ip is domain:port/database
#You can also specify the tables used to store the tickets.
mysql:
tables:
tickets: 'requests'
comments: 'comments'
ip: localhost/mctickets
user: dazza
pass: removed
#How many days to give as a grace period
days-grace: 7
#How many tickets as quota?
ticket-quota: 15