-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatures.sk
More file actions
36 lines (25 loc) · 1.6 KB
/
features.sk
File metadata and controls
36 lines (25 loc) · 1.6 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
#This file is for disabling features. Disabling features can only be done on start up, so you will need to restart (reload also probably works) for disabling a feature.
#If you wish to disable a feature, get one of it's FULL patterns or the Class Name of the feature.
#This is if you want Skript to send a console message if a feature is disabled. Default is false.
DEBUG: false
#Add a node in the format of <ClassName>: <Pattern> to disable that feature.
#If you don't know the Class Name you should make the <ClassName> to Feature<number>. Remember don't put the same Feature<number>.
#If you know the Class Name you don't need the pattern, so you should set the <Pattern> to "null"
#Take note that you can only disable Expressions, Effects, Conditions or Events. You can't disable Classinfos and similar.
#If you need more info. Ask me (Mirreducki not Njol) about anything on this, or make an issue report at https://github.com/SkriptLang/Skript/issues
features:
#Examples
#ExprChatRecipients: null
#Feature1: [chat][( |-)]recipients
#Feature2: [the] (attacked|damaged|victim) [<(.+)>]
#ExprChatRecipients: [chat][( |-)]recipients
ExampleWhatever: null
#You can also alter a pattern if put inside "alterSyntax:"
#It should be put in the following format: <Pattern to alter>: <Altered Pattern>
alterSyntax:
#This pattern: "inventory of %inventorytype%" conflicts with Skript's pattern "inventor(y|ies) of %inventoryholder%".
#So we want to alter it instead of disabling the whole feature.
#inventory of %inventorytype%: new inventory of %inventorytype%
ExampleASDSADSAD: ExampleLOL
#Never alter this.
Version: V8