You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+51-29Lines changed: 51 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,38 +10,60 @@ If you find errors, you can contact me in any way convenient for you, but if you
10
10
Also, if you have ideas for adding something new, write there
11
11
# Configs
12
12
```yaml
13
+
effect_display:
13
14
# will the plugin be active?
14
-
is_enabled: false
15
-
# will information be displayed for the developer, will help when errors are detected
16
-
debug: false
17
-
# will a database be used
18
-
is_database_use: true
19
-
# these lines will be displayed for each effect type separately, allowing you to customize them
20
-
effect_line:
21
-
Mixed: <size=12>%effect% is <color=\"purple\">Mixed</color> end after %time%|%duration%
22
-
Positive: <size=12>%effect% is <color=\"green\">Positive</color> end after %time%|%duration%
23
-
Negative: <size=12>%effect% is <color=\"red\">Negative</color> end after %time%|%duration%
24
-
# decomposes the text on the screen to change only to what is processed by align
25
-
hint_location: '<align=left>'
26
-
# defines a list of effects that the player will not see (the effects of the technical process are automatically hidden)
27
-
black_list:
28
-
- CardiacArrest
29
-
- InsufficientLighting
30
-
# https://discord.com/channels/656673194693885975/1172647045237067788/1172647045237067788 determines the name of the effect from the existing list to the one you specify
31
-
effect_translation:
32
-
Bleeding: Blinded
33
-
# defines the database name in the path (required at the end of .db)
# defines a list of effects that the player will not see (the effects of the technical process are hidden)
30
+
black_list:
31
+
- InsufficientLighting
32
+
- SoundtrackMute
33
+
# https://discord.com/channels/656673194693885975/1172647045237067788/1172647045237067788 determines the name of the effect from the existing list to the one you specify
34
+
effect_translation:
35
+
None: UnkownEffect
36
+
# defines the database name in the path (required at the end of .db)
# List of roles for which the effects display will not be displayed (the roles of the dead are ignored without configs sets)
41
+
ignored_roles:
40
42
- None
43
+
- Spectator
44
+
# Standard settings for displaying information, used in the absence of any supported Hint providers
45
+
native_hint_settings:
46
+
# Text size
47
+
font_size: 12
48
+
# Text aligment
49
+
aligment: 'Left'
50
+
# If you use MeowHintService for Exiled then these settings will be useful for customizing the display
51
+
meow_hint_settings:
52
+
# Text size
53
+
font_size: 16
54
+
# Position Y Horizontal coordinate 0 -> 1080
55
+
y_coordinate: 900
56
+
# Position X Vertical coordinate -1200 -> 1200
57
+
x_coordinate: -1200
58
+
# Hint aligment (Left, Right, Center)
59
+
aligment: 'Left'
60
+
# Hint vertical aligment (Top, Bottom, Middle)
61
+
vertical_aligment: 'Bottom'
41
62
```
42
63
## How edit
43
64
| effect_line | description |
44
65
| ------------ | ----- |
45
-
| %duration% | when specified in the line, it is replaced by the duration of the effect issued |
46
-
| %time% | when specified in the line, it is replaced by the time after which the effect will end |
47
-
| %effect% | when specified in a line, it is replaced with the name of the effect that is specified in `effect_translation` or its standard value |
66
+
| %duration% | Replaces the line with the maximum duration of the effect (I personally noticed a problem when using an item that gives effects more than 2 times, the duration is summed up and the effect time remains the same) |
67
+
| %time% | Replaces the string with the remaining time until the end of the effect |
68
+
| %effect% | Replaces with the effect name specified in the configuration or its standard form |
69
+
| %intensity% | Replaces the effect strength which is calculated in game `byte`, that is from 0 to 255 |
0 commit comments