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
The best Dupe Plugin for your Dupe Server, it provides you with a user-friendly configuration with comments that help you understand what things mean in the YML, it will also make your survival life easier just by duplicating. Just send in chat "/dupe"!
4
+
The best duplication plugin for your Dupe Server. DupePlus provides you with a user-friendly configuration with comments that help you understand what each section means in the YML. It will also make your survival easier just by duplicating. Just send "/dupe" in chat!
5
5
6
6
## Setup Guide
7
7
@@ -19,34 +19,72 @@ If you ever manage to break the `config.yml` or accidentally emptied the config.
19
19
20
20
```yml
21
21
# DupePlus's Settings
22
-
# Message Variables
23
-
# %item_type% = The Duplicated item
24
-
# %item_name% = The Item's Display Name
25
-
# %old_item_count% = The Item Count before dupe
26
-
# %new_item_count% = The Item Count after dupe
27
-
# %item_count% = Item Count
28
-
# %prefix% = The default prefix or the prefix you set
29
-
# %max% = The maximum
30
-
# %min% = The minimum
22
+
# Message Variables:
23
+
# <item_type> = The Duplicated item
24
+
# <item_name> = The Item's Display Name
25
+
# <old_item_count> = The Item Count before dupe
26
+
# <new_item_count> = The Item Count after dupe
27
+
# <item_count> = Item Count
28
+
# <prefix> = The default prefix or the prefix you set
29
+
# <max> = The maximum
30
+
# <min> = The minimum
31
+
# <world> = The world name
32
+
# <link> = Where you can download the new version
33
+
# <currentversion> = The current version installed in the server.
34
+
# <newversion> = The new version
31
35
32
36
# Use this website to help you customize your messages
33
37
# https://webui.advntr.dev
38
+
39
+
# If you want to request a feature or notice any issues with the Plugin. Then create an issue in the GitHub Repository.
40
+
# https://github.com/meme20200/dupeplus/issues
34
41
dupe:
35
-
# The prefix for you to use
42
+
# The prefix that is added before each message.
36
43
prefix: "<green>DupePlus</green>"
37
44
45
+
# Settings to change the Dupe Command into a Custom command.
46
+
custom-command:
47
+
# Make it false to disable the custom command, make it true to enable it. (Default: false)
48
+
enabled: false
49
+
50
+
# The name used to create the custom command (Default: "dupe")
51
+
# /<name>
52
+
name: "dupe"
53
+
54
+
# Other ways of using /dupe
55
+
aliases: ["duplicate"]
56
+
57
+
# Settings to block or allow /dupe in specific worlds.
58
+
worlds:
59
+
# Make it false to disable this feature.
60
+
enabled: false
61
+
62
+
# Mode: whitelist, blacklist (Default:
63
+
# whitelist will block all worlds but only allow /dupe in the worlds list.
64
+
# blacklist will allow all worlds but block /dupe in the worlds list.
65
+
mode: blacklist
66
+
67
+
# If the player tries to dupe in a blocked world. (Default: "<prefix> <dark_gray>|</dark_gray> <red>The world is banned from using /dupe!</red>")
blocked-message: "<prefix> <dark_gray>|</dark_gray> <red>The world is banned from using /dupe!</red>"
71
+
72
+
# Add or remove worlds to either block (blacklist) or allow (whitelist) it from players in the world from duping.
73
+
worlds: []
74
+
75
+
38
76
# Make it false to let everyone allowed to use this command (Default: false)
39
77
# Permission: dupeplus.dupe
40
78
permission: false
41
79
42
80
43
-
# The message sent to the player when try to execute dupe or reloadconfig no permission (Only if the above is true) (Default: "%prefix% <dark_gray>|</dark_gray> <red>You are not allowed to use this command</red>")
81
+
# The message sent to the player when try to execute dupe or reloadconfig no permission (Only if the above is true) (Default: "<prefix> <dark_gray>|</dark_gray> <red>You are not allowed to use this command</red>")
44
82
# Leave blank for no message
45
-
permission-message: "%prefix% <dark_gray>|</dark_gray> <red>You are not allowed to use this command</red>"
83
+
permission-message: "<prefix> <dark_gray>|</dark_gray> <red>You are not allowed to use this command</red>"
46
84
47
-
# The message sent to the player when you duplicate an item. (Default: "%prefix% <dark_gray>|</dark_gray> <gray>Duped %item_name%</gray>")
# Make it false to make it "whitelist", make it true to make it "blacklist" (Default: true)
117
+
# whitelist will block all items but only allow item duplication .
118
+
# blacklist will allow all worlds but block /dupe in the worlds list.
119
+
# Enabled must be true
120
+
blacklist: true
121
+
122
+
# Checks Shulker Boxes when duplicating items (Default: true)
123
+
shulkerbox: true
124
+
125
+
# If the player tries to dupe an item that is in the blacklist or the item is not in the whitelist (Default: "<prefix> <dark_gray>|</dark_gray> <red>The item is blocked from being duped!</red>")
blocked-message: "%prefix% <dark_gray>|</dark_gray> <red>The item is blocked from being duped!</red>"
81
-
# Add or remove items to block them from being duped, also do not include spaces. (NO: "diamond block" YES: "diamond_block")
128
+
blocked-message: "<prefix> <dark_gray>|</dark_gray> <red>The item is blocked from being duped!</red>"
82
129
130
+
# Add or remove items to either block (blacklist) or allow (whitelist) them from being duped, also do not include spaces. (NO: "diamond block" YES: "diamond_block")
83
131
# Begin the item's id with minecraft: to check the item's type only, it will ignore if the item is part of a custom plugin. (Default: - minecraft:barrier)
84
132
# Begin the item's id with itemsadder: if you want to check if the item's itemsadder id, it will not check for the namespace.
133
+
134
+
135
+
# You can use itemsadder:* to block all ItemsAdder items from being duplicated
85
136
items:
86
137
- minecraft:barrier
87
138
139
+
140
+
# Add or remove specific itemsadder namespaces to either block (blacklist) or allow (whitelist) any items that is under those namespaces from being duplicated
141
+
itemsadder-namespaces:
142
+
- replace_me
143
+
144
+
88
145
# Settings for the cooldown of /dupe
89
146
cooldown:
90
147
# Make it false to disable the cooldown, make it true to enable it. (Default: false)
@@ -93,10 +150,10 @@ dupe:
93
150
# How many seconds for the cooldowns to be. (Default: 3)
94
151
seconds: 3
95
152
96
-
# If the player tries to dupe while the cooldown is set. (Default: "%prefix% <dark_gray>|</dark_gray> <red>Please wait %duration%.</red>")
97
-
# Allowed message variable: %prefix%, %duration%
153
+
# If the player tries to dupe while the cooldown is set. (Default: "<prefix> <dark_gray>|</dark_gray> <red>Please wait <duration>.</red>")
# Make it true if you want players with the permission to ignore the cooldown, make it false if you want everyone to have cooldown. (Default: false)
102
159
# Permission: dupeplus.cooldown
@@ -116,21 +173,21 @@ dupe:
116
173
pro: 10
117
174
vip: 8
118
175
default: 5# Default permission or players without the permission who are using the dupe times.
119
-
120
-
# If the player puts the value above the maximum then what's the message? (Default: "%prefix% <dark_gray>|</dark_gray> <red>This is higher than maximum! Do something lower than %max%</red>")
# If the player puts the value above the maximum then what's the message? (Default: "<prefix> <dark_gray>|</dark_gray> <red>This is higher than maximum! Do something lower than <max></red>")
max-message: "%prefix% <dark_gray>|</dark_gray> <red>This is higher than maximum! Do something lower than %max%</red>"
180
+
max-message: "<prefix> <dark_gray>|</dark_gray> <red>This is higher than maximum! Do something lower than <max></red>"
124
181
125
182
# 0 for no minimum amount of times the player can run (Default: 0) (Recommended: 0)
126
183
# Permission to let a player/group have no minimum regardless of this option: dupeplus.times.min.unlimited
127
184
# It is recommended to just keep this at 0
128
185
min: 0
129
186
130
-
# If the player puts the value below the minimum (Default: "%prefix% <dark_gray>|</dark_gray> <red>This is lower than minimum! Do something higher than %min%</red>")
# If the player puts the value below the minimum (Default: "<prefix> <dark_gray>|</dark_gray> <red>This is lower than minimum! Do something higher than <min></red>")
# Checks for updates using the set API (Modrinth or SpigotMC),
161
224
updates:
162
225
# Checks on startup for updates, disable if you do not wish to update DupePlus.
@@ -170,22 +233,22 @@ updates:
170
233
notify:
171
234
# Notify players with the permission to update the plugin to the latest version.
172
235
player-notify: true
173
-
# The message sent to everyone who has the permission (Default: "%prefix% <dark_gray>|</dark_gray> <white><green>DupePlus</green> is outdated, please update at: <blue>%link%</blue>")
236
+
# The message sent to everyone who has the permission (Default: "<prefix> <dark_gray>|</dark_gray> <white><green>DupePlus</green> is outdated, please update at: <blue><link></blue>")
0 commit comments