#general-plugins
1 messages · Page 632 of 1

does anyone know how to change schematic to blueprint?
I was wondering how can I set a custom texture for a GUI
how to i only reset playtime
I want to show the green concrete if they aren't in the brewer job, shouldn't this work?
view_requirement: '%jobsr_user_isin_Brewer%.equalsIgnoreCase("False")'
Registration is currently locked. If you feel it is necessary to create an account, please join our discord and get in touch with us.
send funnycube#0001 an email and username @formal tulip
Okey
When setting an item as a DeluxeMenu material is there a way to remove 'sneak for more info'? Setting displayname and lore does not help me there
Could you send a photo of it?
why does it shows like this? https://prnt.sc/QeIDDrdjeeGg
and it only shows on that item and 1 next to taht
in that GUI
'3':
material: SIGN
slot: 16
display_name: '&4&lServer Statistics'
lore:
- "&7Informative item"
- ""
- "&4Description:"
- "&c&l● &7General server statistics regarding the job system,"
- "&c&l● &7such as total employees in all positions and more.."
- ""
- "&4Statistics:"
- "&c&l● &7Total Employees: &c%jobsr_total_workers%"
- "&c&l● &7Max jobs per player: &c%jobsr_maxjobs%"
What is your version?
1.10.5
And server?
https://postimg.cc/9wVdRskn
Green text is the displayname, white text is the lore and the gray part inbetween is the part I'd like to get rid of (it is a modded item if that matters)
1.8.8 Paper
Using § instead of & should hopefully solve it
Well that matters, hybrid servers aren't supported, you would have to modify that mod to solve it
yay fixed it <3
Almost guessed so but thought maybe there would be a way I am not aware of
Sadly there isn't, it's something that's caused by one of your mods, DM can't do anything about it
I do have another issue though that should be easier to solve though. How would I need to modify my view_requirement here to make it work? Wiki unfortunately just said expression that is a bit unclear. Looking through the history here I found something similar and tried using that but it does not work either. I only get the "rtp_down" displayed
'rtp_down':
priority: 0
view_requirement:
requirements:
rtp_used:
type: javascript
permission: '"%luckperms_has_permission_rtp.used%" == "yes"'
slot: 43
...
'rtp_up':
priority: 1
slot: 43
...
You don't have to use JavaScript for that, can be easily done with this
https://wiki.helpch.at/clips-plugins/deluxemenus/options-and-configurations/requirements#string-equals
indeed it is not maintained anymore.
That's invalid. if you want to use the javascript type, you need to also have expression:. change permission to that. like this: yml view_requirement: requirements: rtp_used: type: javascript expression: '"%luckperms_has_permission_rtp.used%" == "yes"' but as 1ntent1on said, just use the has permission requirement. might be easier
view_requirement:
requirements:
rtp_used:
type: has permission
permission: 'rtp.used%'```
no. requirements are a bit more complex than that. it should look something like this: yml view_requirement: requirements: injob: type: string equals ignorecase input: '%jobsr_user_isin_Brewer%' output: 'False'
Playtime is stored in the world folder. I believe in the world/stats/ folder. You'd have to manually go to each player's file and set the paly_time to 0.
I believe how its done is using custom fonts. Minecraft allows you to replace characters with images in fonts. And then you set the title of the menu to that character that will be replaced with the image. I don't have a good tutorial on this I'm afraid.
that's not a valid placeholder tho. maybe dynamic_amount: '%SEP_inqueuecount_nodebuff%'?
Take a look at: https://wiki.helpch.at/clips-plugins/deluxemenus/options-and-configurations/item#update and https://wiki.helpch.at/clips-plugins/deluxemenus/options-and-configurations/gui#update-interval. You basically add update_interval: # (replace # with a number. that will be every how many seconds it updates) to the menu options and then update: true to the item you want to be updated.
Not really. At least not from deluxetags. you'd need to make a different plugin for this that hooks into deluxetags.
Interestingly it does work with the javascript expression but not with the permission one. Not sure why that might be but I guess I'll just stick with the javascript expression then
ah its because I have a % at the end
so its looking for the wrong permission rtp.used%
even without the %
DeluxeTags showing in essentials chat:
1. Stop the server.
2. Turn off the papi_chat option in the DeluxeTags config. deluxe_chat in older versions.
3. Turn off the format_chat option in the DeluxeTags config.
4. Put {deluxetags_tag} in your EssentialsChat chat format. (In essentials config)
5. For Versions Below 1.8.2: Replace all the placeholders in the DeluxeTags config
%placeholder% to {placeholder} (Ex: %deluxetags_tag% to {deluxetags_tag}).
6. Start the server.
follow the steps sent by the bot above.
'World':
material: PAPER
slot: 10
nbt_int: CustomModelData:1345
priority: 1
display_name: ''
lore: ''
left_click_commands:
- '[player] warp resourceworld'```
custom modeldata not working in deluxe menus
shows correctly in /oraxen inv
server version and deluxemenus version?
1.19 DeluxeMenus-1.13.5
use deluxemenus version from #1-20
ty worked
'%SEP_inqueuecount_nodebuff%' can use anywhere,
Please respect the rules, be patient and don't ping staff members!
but can use in dynamic_amount
dynamic_amount: '%SEP_infightcount_nodebuff%'
it doesn't work,too
anyone?
are you sure that's an actual PlaceholderAPI placeholder?
execute /papi parse me %sep_infightcount_nodebuff%.
and send a screenshot of the output
Have anyone had the issue where your server just dies? No logs, no warnings, just nothing
And there is nothing in the logs
only the startup after it died but there are no warnings or anything in that either
the problem is probably the fact that it returns 0
you can't have 0 items in an item stack
hmm?
thanks
how many items do you see in the inventory?
2 2
oh it works now. I see. yeah the problem was most likely because the return of the placeholder was 0
Hi, I'm looking for a way with Deluxe Menus to let a command me executed by the player and ignore the permission node.
Current action: [player] lottery buy 1
Can't run command in console. No, I don't want to add the permission node.
Any suggestions? Thanks!
Also tried "[console] dm execute %player_name% [player] lottery buy 1" but still run as player and checking permission. I want it to ignore checking permission.
Should have been something as [runasoperator]
Hello how to add numbers in a variable by clicking on an object ?
this is not possible. we're not adding an [op] actions. You can do something like this instead:
- '[console] lp user %player_name% permission set permission.needed.to.execute'
- '[player] execute command <delay=1>'
- '[console] lp user %player_name% permission unset permission.needed.to.execute<delay=2>'```
this is the closest thing and safest (not extremely safe but safer than op) thing you'll get to what you want
not sure what this means? what plugin are we talking about here?
a variable of placeholder
Oh okay, that's what I tried first but it wasn't really a good option.
Thanks anyways
I would like to modify it
the [op] action would literally have to internaly op the player, make the player execute the command then deop. so its not any more safer
just because its hidden
I understand, never thought about it that way. Citizens have -o which let the player open the GUI with "op" I think. So do you not recommend doing that either?
well so far there haven't been any reports of it being broken and for the most part it should be safe but my main concern is server crashing in the same tick as the player getting op or something weird like that and they remaining OP. I know this is very very unlikely but clip made it clear he won't risk it at all.
Thank you blitz it all works nfor that!
Would you know why one single player cant switch to any other tag besides DeluxeTags tho ? (the example one) he's the only one, even if people have the same perms and rank as him
possibly negated permissions?
can you tell me the name of another tag that they can't access
Like they see all the tags in their gui but if they change it it says it changed but they revert to example, but its for all and weve checked perms
that's strange. I've never seen this before
this was back on 1.8.1 from yesterday tho, ill give another message if its still weird after updating!
[DeluxeMenus] Could not setup a NMS hook for your server version! ??
server version?
1.19 and the versions plugins is 1.19
the one from #1-20 ?
yes
try reinstalling. just in case.
👍
I have another problem when I open a menu that used to work normally and now I can take what's in the menu and put it in my inventory so its a bit annoying if you have any solutions
sounds like an issue that can be provoked by another plugin you have. I'd recommend you remove your plugins 2 by 2 or so until it stops happening to find which plugin is causing this
ok
Is there perhaps something to continue to show the balance from the shop
Blitz that fixed the issue. Thx m8.
no problem
can someone remind me for deluxemenus
item1:
- priority: 0
item2:
- priority: 1
which one has greater priority?
item2?
item1
what are some good shop plugins
ShopGui+ is decent
would you say its better than economyshop gui premium or do you not have experience witht that
no experience with ESGUI
NoFlyZone Support 1.19?
maybe? the plugin is not updated/tested by us anymore. so you'll have to test it
Hi! I was just wondering if anyone have any video i can use as refence if i want to make a custom gui with images
( ps. im really new at everything so please bear with me )
uhmm... im confused
🔨 A user has been banished from the island for using wrongly distributed software, the island has spoken.
Hello! uh material: head-sus for example doesn't show player head-
it's just a steve
click_requirement:
requirements:
item:
type: has item
material: IRON_HOE
lore:
- 'test'
name_ignorecase: true
enchantments:
- efficiency;5
amount: 1
help. spell check
https://paste.helpch.at/migifimito.bash I have this for my open requirement, but I'm holding nothing and it still lets me open it
what could I be doing wrong?
How to use custom heads in DeluxeMenus:
a) A player name material: head-extended_clip
b) The player's head material: head-%player_name%
c) The base64 code of a head material: basehead-<code>:
- Go to https://minecraft-heads.com and find a head.
- Copy the head Value code (from the page bottom)
d) The minecraft texture url material: texture-<id>
- Only put what's after https://textures.minecraft.net/texture/
e) HeadDatabase material: hdb-<id>:
- Require https://www.spigotmc.org/resources/14280/
is that for me?
no
oh ok
sus has no skin
?paste
Paste Services
When asking for help with a config/menu/code issue please use our paste bin:
(we prefer it over pastebin.com)
• HelpChat Paste - How To Use
use only taken usernames
checking for an enchanted item. help. sample
yeah uh tried other username 'nobmob' and still doesn't work
(that's my friend account he has mc premium etc)
also tried https://paste.helpch.at/akinisobiy.bash doesnt work either
what did he send?
stays private 🙂
what MC version & deluxemenus version
1.13.5 on 1.19 purpur (latest)
@proper oxide any idea? heads not rendering
what is weird that when using placeholder for example %player_name% that works just fine
weird
just makin sure you arent addin `
Hi, I have tried it now and now the green concrete isn't showing up in the menu
priority: 2
view_requirement:
requirements:
injob:
type: string equals
input: '%jobsr_user_isin_Brewer%'
output: 'False'
and this is for the other if it is true
priority: 1
view_requirement:
requirements:
injob:
type: string equals
input: '%jobsr_user_isin_Brewer%'
output: 'True'
no error in console
still lets me open it while holding nothing
and your past had =, I set it to !=, same issue
nah im not adding `
best I recommend is upload that skin to minecraft-heads then using the value
you oped?
fixed, the output has color 👀
yea im opped
op = bypass
ah ok
oke thx for help
np
[DeluxeMenus]: Error in requirement javascript syntax - %player_item_in_hand% = AIR
giving me these errors when trying to open it
ah
==
nope
same issue
!= also has the same error
== "AIR"
kk thanks
[DeluxeMenus]: Error in requirement javascript syntax - %player_item_in_hand% != "AIR"
oh and wrap the placeholder in ""
no idea.
Hello can some1 help me? if i have a custom head in my hand that i would like to put inside my custom menu, how do i add that head to the menu? ^^
ugh. you don't know anything about the head? name, base64, texture link?
ive never really messed with them i just know how to do 'basehead-'
i cant figure out how to add it as a material using
you might be able to get the base64 value by holding the head in hand and executing /data get entity YOURNAME-HERE SelectedItem
im on webbrowser lookin
oh. the base64 is at the bottom of the page
thanks
btw anyway to make a certain thing purchasble only once?
like a quantity
trying do it for a rank, i made it so they cant buy the same rank but they can buy the rank lower again, so trying to fix that
Does deluxemenus allow you to hide the dyed text in an item? I've tried
hide_attributes: true hide_effects: true hide_enchantments: true
in newer versions of spigot you can use ```yml
item_flags:
- 'HIDE_DYED'```
https://paste.helpch.at/otizemusav.sql it kinda ignores my priority 2 item for some reason
any1 know if holo displays is 1.19 yet?
@proper oxide Ah thank you. I'm trying to get it to work am I doing anything wrong?
items: default: material: LEATHER_HELMET rgb: 255,255,255 item_flags: - 'HIDE_DYED'
Please respect the rules, be patient and don't ping staff members!
Plugin version?
DeluxeMenus 1.13.4-Release
It is HIDE_DYE
Ah
To get help with that premium plugin you'll need to first link your spigot account:
• See #spigot-linking for more info.
they are def hard to find, I'm still just trying to find one that shows someones stats by hovering their name in chat
Please respect the rules, be patient and don't ping staff members!
oop my bad
Carbon or ChatChat
Chat chat is out?
hello, the custom nbt item does not work, i use 1.19 and the latest dev version (deluxemenus)
@stone nest, hey. Can you DM me, please? I I want to report a vulnerability in PlaceholderAPI.
my pm’s are open
Hey there, would anyone know how I can have a meta that is a different integer per item in hand?
Is there any possible way to update the menu item or is not possible?
like if I were to click the green concrete it turns into red concrete
You can use permissions and multiple items for that.
can you give me an example?
for the actual code or like configuration?
Just use decent hologram
Here is a great example of how to use priorities and permissions -> https://www.spigotmc.org/wiki/deluxemenus-ranks-example/ it is for ranks, however, though if you look through it you should be able to figure out how it works. I’m on mobile so it’s a bit difficult to type out a example sorry.
?paste
Paste Services
When asking for help with a config/menu/code issue please use our paste bin:
(we prefer it over pastebin.com)
• HelpChat Paste - How To Use
Alr
Ya actual code would be nice to see how I can use it in my menus
Thanks I’ll check it out
well in ur listener wherever youre putting what happens when you click the block you also are going to set the same slot as a red concrete block
i dont remember the syntax at all
but its pretty simple
How come litebans keeps saying I don't have permission to execute a command even though I've given myself the permission. The litebans is on my proxy ONLY and is connected to a mysql database. Anyone help?
Do you have luckperms installed on your proxy?
yes
Do /lpb and add the permissions to yourself that way
Using priorities
/lpb
??????
That's not solving anything
And where is your credentials (I ask bc u gave useless advice and all of your advice never worked for me and u tried to give me cracked jars)
I think the problem is beyond giving myself the permission
I came here because that didn't work
@sinful relic try creating a owner group and doing /lpb editor and then adding the permissions to that group. Then from there assign the group to yourself.
Lmk if that works
I already have an owner group
If you guys researched into litebans you will realize this problem is not about if I have a damn permission or not becauise I DO
I think adding a meta data tag to the group and then using the meta data tag luckperms placeholder works
it's about how litebans handles permissions
they have articles about it and how you setup your bungee/velocity
Don't give me basic advice, I have my rank here above all of you because I know the basic advice
I gave it and more
Please know the plugin before trying to help bc ur just wasting my time with these pings
Umm well I’m just trying to help lol. I have the litebans plug-in as well and having two groups via luckperms bungee and the normal luckperms plug-in via that server seems to work good for me🙂
Tried already 
Haven’t had any permissions errors
Ah gotcha, lemme look into that because I believe I had a system similar to how you want it but I don’t have the direct answer on the top of my head
Feel free to dm 😉
Will do!
just let him be. He knows the basics advises but cant help himself out of a basic situation
can anyone compare esgui prem vs shopgui+, like what do you think is better and why
Hello! I wanted to create a gui with DeluxeMenus and I asked myself something. Since in my server I want that putting the vip costs with the money whit XConomy, I wanted to ask if it was possible to put this function that you could buy.
Thanks in advance.
its possible yes using placeholders + requiremenets
What is requirements?
like click/view_requirements
requirements_menu.yml?
those have examples you can use
expression: '%vault_eco_balance% >= 100'``` example using vault
Np
Yo, does anybody know a good plugin that kinda restricts creative mode? 1.17 please 🤝
1.16
im using 1.17
I had some errors with this thats why
maybe some type of plugins that adds armor when in /gmc?
@velvet cloak read the title of that plugin says 1.17+
yes, it's display
doesn't show anything
how many slots does your menu have?
wait
'Test':
material: RED_DYE
update: true
slot: 50
display_name: '&fTest'
lore:
use this
no
it doesnt work??
'Test':
material: RED_DYE
update: true
slot: 50
display_name: '&fTest'
lore:
- '&aFREE DIAMOND! [1/day]'
- ''
- '&7Click to get 1 free &bdiamond&7!'
material: RED_DYE no
what does it say
unknown command
are u using essentials?
what material and data??
For example, pufferfish, he is material: cook_fish, and data: 3
You need that only if you are at older version (below 1.13 iirc)
what should i do then?
remove data
or red_dye
I want to allow the player to left-click the menu by binding whether the permission is available, but after I click on the judgment requesting the permission to use here, he cannot detect that the permission cannot be used in it? left_click_requirement:
requirements:
fishing2:
type: 'has permission'
permission: 'yueka.30'
fishing3:
type: 'has permission'
permission: 'yueka.24'
deny_commands:
- '[console] titlemsg %player_name% &b『&cInsufficient balance&b』'
- '[close]'
view_requirement:
requirements:
fishing1:
type: 'has permission'
permission: 'yueka.30'
我想通过绑定权限是否有而让玩家可以左键菜单,但是我在点击要求这里使用权限的判断后他无法检测出来是在这里面无法使用权限持有的吗? left_click_requirement:
requirements:*fishing2:*type: 'has permission'*permission: 'yueka.30'*fishing3:*type: 'has permission'*permission: 'yueka.24'*deny_commands:*- '[console] titlemsg %player_name% &b『&c余额不足&b』'*- '[close]'*- view_requirement:*
requirements:*fishing1:*type: 'has permission'*permission: 'yueka.30'*
type: javascript
expression: 'EXPRESSION'
Is the correct detection permission yueka.30 == true? Or can anyone else tell me
正确的检测权限是 yueka.30 == true?还是其他有人能告知一下吗
is ActionAnnouncer good for use on 1.19 servers?
well, it should work
Startup Log Location
Your latest startup log can be found in the logs folder of your
server directory, labeled as latest.log.
Please copy the contents and paste them to a paste service.
Type ?paste for more information.
@dire torrent
How should javascript correctly detect whether lp=true in the click condition?
在点击条件里javascript 正确的检测lp是否=true应该怎么写?
type: javascript
expression: '"%luckperms_has_permission_PERMISSION.HERE%" == "yes"'```
After I tested it, I found that the click condition was still not implemented to detect specific permissions.
我测试后发现还是没有实现点击条件里面检测持有特定权限
I asked since the plugin page doesn't have it as tested but it redirects to this Discord.
How i can create a new gui file to Deluxemenus
you declare it in config.yml and then do /dm reload
it will automatically create it
fishing3:
type: javascript
expression: '"%luckperms_has_permission_yueka.24%" == "yes" 'This condition can be used but he can't detect that when this permission is not held, he seems to hold it by default?
fishing3:
type: javascript*expression: '"%luckperms_has_permission_yueka.24%" == "yes" '这个条件可以使用了但是他无法检测到当这个权限不持有的时候他默认好像都是持有的?*
one of my plugins is locking my villager jobs (automatically has trade level when given job) does anyone know what plugin does that
are they op or do they have the * permission maybe?
sorry i forgot i was op
抱歉我忘记我是op了
your best bet is the 50/50 method. remove half of your plugins, restart, see if it still happens. Now you know in which half it is. Repeat this with that half until you find the plugin causing it.
Hey anyone know why villagers aren't sleeping, il send plugins if needed
and why members aren't getting hourly claimblocks with griefprevention
can't get %playertime_time% to work 😦
rgb:
d
do you have the playertime plugin installed?
[Server thread/ERROR]: Could not load 'plugins/DeluxeMenus-1.13.5-Release.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.UnsupportedClassVersionError: com/extendedclip/deluxemenus/DeluxeMenus has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoaderMixin.java:149) ~[arclight:arclight-1.16.5-1.0.23-daa3c8bb]
at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:394) ~[arclight:arclight-1.16.5-1.0.23-daa3c8bb]
at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:301) ~[arclight:arclight-1.16.5-1.0.23-daa3c8bb]
at org.bukkit.craftbukkit.v1_16_R3.CraftServer.loadPlugins(CraftServerMixin.java:381) ~[arclight:arclight-1.16.5-1.0.23-daa3c8bb]
at net.minecraft.server.dedicated.DedicatedServer.handler$bbe000$arclight$loadPlugins(DedicatedServerMixin.java:637) ~[?:?]
at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServerMixin.java:160) ~[?:?]
at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServerMixin.java:1861) ~[?:?]
at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServerMixin.java:232) ~[?:?]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_292]
Caused by: java.lang.UnsupportedClassVersionError: com/extendedclip/deluxemenus/DeluxeMenus has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
at java.lang.ClassLoader.defineClass1(Native Method) ~[?:1.8.0_292]
at java.lang.ClassLoader.defineClass(ClassLoader.java:756) ~[?:1.8.0_292]
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) ~[?:1.8.0_292]
at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoaderMixin.java:644) ~[arclight:arclight-1.16.5-1.0.23-daa3c8bb]
at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[?:1.8.0_292]
at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoaderMixin.java:104) ~[arclight:arclight-1.16.5-1.0.23-daa3c8bb]
at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoaderMixin.java:99) ~[arclight:arclight-1.16.5-1.0.23-daa3c8bb]
at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[?:1.8.0_292]
at java.lang.Class.forName0(Native Method) ~[?:1.8.0_292]
at java.lang.Class.forName(Class.java:348) ~[?:1.8.0_292]
at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoaderMixin.java:67) ~[arclight:arclight-1.16.5-1.0.23-daa3c8bb]
at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoaderMixin.java:145) ~[arclight:arclight-1.16.5-1.0.23-daa3c8bb]
... 8 more
anyone know what the issue here is?
The plugin (or program) you are trying to use was compiled using a newer Java version than the one you using.
To find what version you need, start from 52 which is Java 8 and for example, 60 is Java 16. (8 + 8 = 16 => 52 + 8 = 60)
Im having trouble with setting up deluxetag with essentialschat
DeluxeTags showing in essentials chat:
1. Stop the server.
2. Turn off the papi_chat option in the DeluxeTags config. deluxe_chat in older versions.
3. Turn off the format_chat option in the DeluxeTags config.
4. Put {deluxetags_tag} in your EssentialsChat chat format. (In essentials config)
5. For Versions Below 1.8.2: Replace all the placeholders in the DeluxeTags config
%placeholder% to {placeholder} (Ex: %deluxetags_tag% to {deluxetags_tag}).
6. Start the server.
i've done those already
Having issues with DeluxeMenus.
This is my settings.yml
size: 27
menu_title: '&8&lSettings'
'toggletokenmsg':
material: STONE
data: 0
slot: 5
display_name: "&6Toggle Token Messages"
click_commands:
- "[player] tokenmessage"
lore:
- " "
- "&fWhen you earn Tokens, a message in chat appears."
- "&fIt can get annoying when you have a high level"
- "&ftokenator pickaxe"
- " "
- "&a&lClick to Toggle"
'togglegemmsg':
material: STONE
data: 0
slot: 6
display_name: "&aToggle Gem Messages"
click_commands:
- "[player] gemmessage"
lore:
- " "
- "&fWhen you earn Gems, a message in chat appears."
- "&fIt can get annoying when you have a high level"
- "&fgem finder pickaxe"
- " "
- "&a&lClick to Toggle"
'toggleprivatemsgsound':
material: STONE
data: 0
slot: 7
display_name: "&2Toggle Message Sounds"
click_commands:
- "[player] togglesounds"
lore:
- " "
- "&fToggle the sounds played when you receive a"
- "&fin-game message."
- " "
- "&a&lClick to Toggle"
'togglepms':
material: STONE
data: 0
slot: 8
display_name: "&cToggle Private Messages"
click_commands:
- "[player] togglepms"
lore:
- " "
- "&fToggle the ability for users to message you"
- "&fin-game."
- " "
- "&a&lClick to Toggle"
sweet: true
Im getting these errors in console https://mcpaste.io/dedbe4413b968acc
you're missing the items: line. https://paste.helpch.at/utofixayeh.http
yes. rgb: 255,255,85
what problems do you have then?
Ah must of made that mistake with copying files. Thanks!
any solution?
how do i send images?
You won't be able to upload images here directly to avoid spam, so please use https://imgur.com/upload to upload images/screenshots.
You can also use a screenshot service like gyazo or jinx and post those links here.
do you have PlaceholderAPI installed? if you do execute /papi dump and send the generated link here please
ah. there we go. you haven't followed all the steps @graceful crater
DeluxeTags showing in essentials chat:
1. Stop the server.
2. Turn off the papi_chat option in the DeluxeTags config. deluxe_chat in older versions.
3. Turn off the format_chat option in the DeluxeTags config.
4. Put {deluxetags_tag} in your EssentialsChat chat format. (In essentials config)
5. For Versions Below 1.8.2: Replace all the placeholders in the DeluxeTags config
%placeholder% to {placeholder} (Ex: %deluxetags_tag% to {deluxetags_tag}).
6. Start the server.
DeluxeTags showing in essentials chat:
1. Stop the server.
2. Turn off the papi_chat option in the DeluxeTags config. deluxe_chat in older versions.
3. Turn off the format_chat option in the DeluxeTags config.
4. Put {deluxetags_tag} in your EssentialsChat chat format. (In essentials config)
5. For Versions Below 1.8.2: Replace all the placeholders in the DeluxeTags config
%placeholder% to {placeholder} (Ex: %deluxetags_tag% to {deluxetags_tag}).
6. Start the server.
no problem
show your menu please
also what version of deluxemenus are you using?
where's the commas?
just copy paste what I gave you
I did and it started working randomly which was nice but now chat core isn't working :(
DeluxeMenus doesn't open most menus. It loads them and shows them through /dm list but won't open them. It can open only 3 menus out of 9
This is my config: https://paste.helpch.at/qotejipoxa.sql
Menu that I can open: https://paste.helpch.at/tizasugefu.bash
Menu that I can't open: https://paste.helpch.at/iqicesexiz.http
you have view requirements on all items. So most likely no item is being loaded bcz the requirements are not met and when the menu is empty, deluxemenus doesn't open it
if you add a random stone in the corner without a view requirement it will probably open and you'll see just the stone inside
Wrong channel prob
alr, I will try to add that glass pane that no one sees anyway
It worked! I also added - '[meta] set Page INTEGER 1' to the open-commands, but it won't display the "NEXT" or "BACK" arrows
what does /papi parse me %deluxemenus_meta_Page_INTEGER_1% return?
"%deluxemenus_meta_Page_INTEGER_1%"
server version and deluxemenus version?
update to deluxemenus version from #1-20
thanks, it works now
Its not a plugin but need help help with the execute command. Found this on google /execute as @a[nbt={Inventory:[{id:"minecraft:<item ID>",tag:{display:{Name:"{\"text\":\"<item name>\"}"}}}]}] I want the item with customtag: events to get deleted if its not in the event world. How do I set the command to check for custom tag instead of the display name
I know that clear lagg is bad as well as anything related to it so ive always avoided using it as much as possible
but
what about boats and minecarts, do they create lag in the server if someone spam places them?
does minecraft have a way of despawning them like it does with items
Hello I was wondering if someone could explain how I can make a certain rank only purchasable once from the menu.
Because currently a player can buy rank1 then rank2, then buy rank1 again
got it to work nvm 🙂
Out of curiosity how were you able to ?make a rank menu?
How do I make a gradient JSON message with DeluxeCommands?
https://paste.helpch.at/acilabobog.bash
doesn't show....
anyone?
Does DeluxeCommands not support rgb / gradients?
hey guys is that a correct chat to ask for help with deluxemenus ?
since plugin doesn't recognize a menu file for some reason
so I'd like to ask maybe something wrong in this menu file that I can't see
anyways there it is https://pastebin.com/fqMnAhSC
damn cool bot
okay I've figured it out had to add it in config
Hello, i am using deluxemenus and itemsadder i was wondering if there is any way to use custom items from itemsadder in the menus
I have seen there is a way to use NBT Tags / CustomModelData on the wiki but there isn't enough information on the wiki for me to understand how to use this feature. Does anybody have an example of it used?
why can I only add a certain amount of items on the deluxemenus gui. i start adding stuff and it just doesnt appear
what are placeholders for deluxe menus ?
so like if I wanted to run a command as a console to give something to someone
%player_name% from examples doesn't work
Here you can see where you can an cannot use placeholders
Don't take my word for it but i don't think you can use placeholders in commands
You can use vanilla target selectors
What command are you trying to execute?
Connected and Winner are on the same slot
Maybe that's the issue
yesss
thank you
How can i place a custom item model in a menu?
Is there a way to display the different types of "light" blocks in DeluxeMenus?
'1':
material: light
data: 0```
Doesn't work, just displays the default one (Light 15)
If i want to make a requirement where the player has to be at least a certain level to see something, how would i do that
i know its something along the lines of '%placeholder% > 1'
Experience level or permission level?
nbt_int: 'CustomModelData:10047'
under material
but change the numbers obvsiously
This should help you
What plugin are you using?
The CustomModelData doesn't work
Nothing happends
Can I get the menu to get the specified path? If I want to get the path in pokemon/sprite/time/, the same is true for the path?
我可以让菜单获取指定的路径吗?假如我想获取pokemon/sprite/time/里面的路径写法也同理路径?
Does anyone happen to know how to add an enchant to an item in a gui?
I'm just confused on where the put it
I want to give the player a title, I used the command /tags set <player> <tags> and it did not add it successfully, but it means that the player does not have any title
hey peeps, so im running on 1.19 and the newest deluxemenus dev update for 1.19 but the broadcast event doesnt register an colorcodes whether its regular legacy ones, minimessage or hexcolors. Is there any known reason for this?
I found DeluxeMenus v1.13.6-DEV-null - plugin is disabled but no reason why it was disabled!
Please put your startup log found in /logs/latest.log into a new paste.
There seems to be some invalid syntax in your config! You can paste it into https://yaml.helpch.at/ in order to find out where your issue is!
I found DeluxeMenus v1.13.6-DEV-null - plugin is disabled but no reason why it was disabled!
Please put your startup log found in /logs/latest.log into a new paste.
Hi, can you give me example for using [broadcastsound]? Because I don't understand why it doesn't work
I know that clear lagg is bad as well as anything related to it so ive always avoided using it as much as possible but
minecraft doesnt clear boats and minecarts by default right? do they create lag in the server if someone spam places them?
Please respect the rules, be patient and don't ping staff members!
hey guys i have a question i want to make it if you have a permission you cant use dm is there a option to do it and so yes how
There should be specific perms for each menu, just set it to false for that player
hello, why cant I use the deluxe menu's placeholder?
does the autosell plugin support 1.8?
To get help with that premium plugin you'll need to first link your spigot account:
• See #spigot-linking for more info.
i just need to know before i purchase >.>
1.8.8
1.12.2
1.13.2
1.14.4
1.15.2
1.16.5
1.17.1
1:18.1
v1.8.6-1.8-compat
v1.8.6
v1.9.3 - Latest
v1.9.3 - Latest
v1.9.3 - Latest
v1.10.0 - Dev Builds
v1.10.0 - Dev Builds
v1.10.0 - Dev Builds
oh. ty xD
hello 🙂 i have a question for DeluxeMenu, is possible to create gui with target commande ? like /profile <user> and show her profile ?
Hey can i get some help on making a "distance travelled scoreboard"
Do you already have a plugin installed that enables the scoreboard?
So I'm currently making a rank buy menu and so far it's working but there is an issue with people being able to buy the previous rank... How can I make it so they can't (I am using deluxe menus)
i have decent holograms since i dont need ajbscorboards
uhh im pretty sure just put the placeholder in anyway, if he has a clan it will show if not it shouldn't show. Thats what i think myself, i havent used that plugin before though
you could use the checkitem expansion.
what is that
yeah but he wants to add an extra space and a |
link
ahh ok
wait I meant the ChangeOutput expansion
yes thanks finally someone undestand me
its a PlaceholderAPI expansion that lets you show different outputs based on conditions
if your clan placeholder is empty, show nothing, otherwise show clan placeholder + | for example
niceee
omg you are the best
ok for chat format i'm using a my custom plugin
can you just send a example
yeah
%changeoutput_equals_input:{clans_clan_tag}_matcher:_ifmatch:_else:{clans_clan_tag} |%
here you go. try this one @gusty hull
thank you so much it worked
no problem
permissions. you can give permissions when they buy the ranks and then have a click requirement that says they can only buy the rank if they don't have the permission
how do i fix this,
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:178) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:154) ~[paper-api-1.19-R0.1-SNAPSHOT.jar:?]
at org.bukkit.craftbukkit.v1_19_R1.CraftServer.loadPlugins(CraftServer.java:421) ~[paper-1.19.jar:git-Paper-66]
at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:278) ~[paper-1.19.jar:git-Paper-66]
at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1121) ~[paper-1.19.jar:git-Paper-66]
at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:302) ~[paper-1.19.jar:git-Paper-66]
at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.io.FileNotFoundException: Jar does not contain plugin.yml
... 7 more```
WildChestsAPI is not a plugin
its an API. Its meant to be integrated into plugins
if i just take it out will wildchests work fine?
I mean, maybe?
the plugin should have the api built in
okay thank you
you need a leaderboard? then use PlaceholderAPI and AjLeaderboards to create the leaderboards
PlaceholderAPI has a placeholder called %statistic_cm_traveled% or something like that
you can use to create the leaderboards from
umm yes
ah ok
And why does my requirements just dont work?
It doesnt throw an error, it just.. ignores clicking?
can you show it please?
actually show the entire item
material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTZmMGM2YTZmNTUyNWQwODc2NzczNzY4ZTJhN2Y2YmQ0MzYwOGQ4YjE1ZjBlODc4MGY2NGQ1MTJmMjAifX19
slot: 19
display_name: "&e&lMenőzés"
lore:
- "&7Tárgyakkal, rangokkal, jogokkal"
- "&7való &emás játékosok idegesítése&7."
click_requirement:
requirements: '102 >= 100'
deny_commands:
- "[chat] uok?"
click_commands:
- '[meta] add heat INTEGER 20'
- '[meta] remove heat INTEGER 20<delay=50>'
- '[message] %deluxemenus_meta_heat_INTEGER_0%'
- '[message] %deluxemenus_meta_heat_INTEGER_0%<delay=60>'```
oh wait I figured something out
ugh. well that requirement is completely off
material: basehead-eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTZmMGM2YTZmNTUyNWQwODc2NzczNzY4ZTJhN2Y2YmQ0MzYwOGQ4YjE1ZjBlODc4MGY2NGQ1MTJmMjAifX19
slot: 19
display_name: "&e&lMenőzés"
lore:
- "&7Tárgyakkal, rangokkal, jogokkal"
- "&7való &emás játékosok idegesítése&7."
click_requirement:
requirements:
something:
type: '>='
input: '102'
output: '100'
deny_commands:
- "[chat] uok?"
click_commands:
- '[meta] add heat INTEGER 20'
- '[meta] remove heat INTEGER 20<delay=50>'
- '[message] %deluxemenus_meta_heat_INTEGER_0%'
- '[message] %deluxemenus_meta_heat_INTEGER_0%<delay=60>'```
10/10 support, take a 🍪
Ok thank you!
why the metas are not parsed
i updated to the latest and every meta i use
is not parsed
updated papi and dm to latest version
server version 1.19
and metas are not working at all
Hello im wondering is it possible to add a custom model into the menu?
i have the item in my hand but how do i add that to the menu?
i know how to add simple stuff like stone or something more normal, can any1 help me? ^^
So what am I doing wrong to keep getting cobblestone back?
https://paste.gg/p/anonymous/12cd1c5489934b33a92cc5969d199239
Please respect the rules, be patient and don't ping staff members!
i used that version
oke i just noticed when my friend joins my server his head is rendered normally but when he is not online it's steve / alex
Please respect the rules, be patient and don't ping staff members!
Are you OP?
execute /papi dump and send the generated link here please
how can I add The New Economy for placeholders?
I deoped Myself to get what normal people would see
How to fix dupe with auto clicker in DeluxeMenu?
dmenus version?
1-13-3-release
update deluxemenus. that's how you fix it
I know that clear lagg is bad as well as anything related to it so ive always avoided using it as much as possible but
minecraft doesnt clear boats and minecarts by default right? do they create lag in the server if someone spam places them?
They %100 will cause lag Especially when someone spam clicks them... There is no respawn rate to my knowledge
how can i tackle that, i dont wanna use clear lagg cuz i heard it harms performance significantly
Yess
Boats
Minecrats
Armorstands
And that item frame what it's called i forgot 💀
There may be a plugins that can remove them after a certain amount of time or paper, spigot, bucket may have something in the config that can help against it
Also yeah I hate ClearLagg
i might get clear lagg specifically for boats carts and armor stands
I will give you one setup i have for this specific thing
Once i am on my pc
Probably tommorow, it's midnight here.
aoght👍
That setup blocks redstone clocks, despawn unused boats, minecarts and limit amount of armor stands in a chunk.
nice
..
!!
Hi, is there any way to bind a key to open a menu?
not. client limitation
oh
Hi, so I have this "https://paste.helpch.at/oxigotoler.sql". The problem is that the item doesnt change instantly, you have to quit the menu and reopen it
Hey can i get easy help quick, how do i create a join message for NEW players and players who have already joined??
Good night. Is it possible to execute a command on behalf of "op player" if the player himself is a regular (by default)? This exists in "citizens" (npc command add -op <command>) or in chestcommands.
I'm talking about DeluxeMenus
can i use deluxe menus on 1.8?
Ok so, i've seen several smp updating to 1.19 without deleting the world.
Now my question is, how does those servers have the 1.19 biomes in chunks already created/modified by users?
first, make sure to run --forceUpgrade on both 1.18 and 1.19 (note that the flag makes some extra console output so you can make sure it's running)
Now to answer your question, the server can't have a 1.19 chunk if it was generated in 1.18
So, servers would have to delete the chunks in order to generate 1.19 ones
so you won't see a 1.19 cave with the warden and stuff below like the 1.18 spawn
Do you know what's Novylen?
no
and plus, upgrading the chunk to 1.19 would bring issues because if you placed a 1.19 cave but someone had like an underground base...
Tought to
It's a minecraft server from 2009 that's still active in 1.18 version and at the spawn you can find 1.18 biomes, the world never got deleted.
1.18 biomes near spawn?
Yup
since remember that new chunks will be updated
Same thing a guy from the server said to me
"Thons of backups..."
anyways, thank you!
👍
hello, how can i set at commandPanels custom heads from custom heads page
BLITZ FrozenJoin: If a player has multiple custom join message perms, can they be randomized which one appears when they join?
And will it be updated to 1.19 at some stage?
So im having an issue where im trying to use the [openguimenu] and im running into where it works fora few menus and it doesn't for some. What is [openguimenu] actually looking for? is it the <filename>.yml? or is it looking for it iin the external menus config..
iirc it's looking for the menu you that you specify in the config for each menu and the file associated with it.
ok
Does anyone know a plugin that auto replants crops and puts the harvested crops directly in to the inventory without a hoe or tool? It must work on 1.19
howdy, I got the DeluxeTags plugin correct? and Im wondering how you make the tags in like a nametag form so players only have to right click it to claim the tag
hi-
how do i use deluxemenus requirements?
i put view requirements to only allow my sponsors and elder to use a specific item
but it doesnt appear for them, why?
material: BEDROCK
slot: 20
display_name: '&#e6c387Cosmetics'
left_click_commands:
- '[player]cosmetics'
right_click_commands:
- '[player]cosmetics'
view_requirement:
minimum_requirements: 1
requirements:
vip:
type: 'has permission'
permission: group.vip
optional: true
elder:
type: 'has permission'
permission: group.elder
optional: true```
or is it a must to use a deluxemenus. for permission?
whats minimum_requirments: 1 for?
How many requirements need to be met in order for the item to shown
im not so familiar with this plugin but wouldnt you use true instead of 'has permission'
also what is optional: for
You’ll need to use priorities
Quite confused as you are as I don’t believe that’s a deluxemenus option.
You’ll need to you ‘has permission’ as that’s one of the Requirement Types deluxemenus supports
on the bottom it just says optional:
wtf is that
No idea
sus
For the guild plugin, is there a way for admins to edit the guilds of reg players? Keep in mind I haven’t purchased yet so I can’t test it
To get help with that premium plugin you'll need to first link your spigot account:
• See #spigot-linking for more info.
It seems to take the users in my server a very long time to load the server resource pack (about 20 seconds) anyone know how i could make this quicker?
Make sure you use a host for it, like dropbox
And it also depends on the size of the texture pack, player's PC, internet speed
If you use 3d models or json files in general, minimize them by removing spaces
Hey! im using the newest dev version of deluxemenu and paper 1.19. For some reason when i use /dm reload its not reloading the config / menus. I always need to restart the whole Server. Any idea?
this is literally the standard vault plugin that everyone uses
what
what is this "this vault"
? 😁
no. you cannot. and we'll not add it. you can most likely find tons of messages of us saying why in this channel
like this one #general-plugins message
Whats the use of it anyways?
execute commands as the player without checking for permissions
@opal schooner 
it is.
you might want to add stop_at_success: true as well.```yml
'menu_cosmetics':
material: BEDROCK
slot: 20
display_name: '&#e6c387Cosmetics'
left_click_commands:
- '[player]cosmetics'
right_click_commands:
- '[player]cosmetics'
view_requirement:
minimum_requirements: 1
stop_at_success: true
requirements:
vip:
type: 'has permission'
permission: group.vip
optional: true
elder:
type: 'has permission'
permission: group.elder
optional: true
Heyo, is this the latest dev build for DeluxeMenus? Looking for a 1.19 build if there is any available.
Hi all. I can't find the reason for this error. I will be grateful for help.
Caused by: while parsing a block mapping
in 'string', line 18, column 3:
'player':
^
expected <block end>, but found '<scalar>'
in 'string', line 115, column 4:
'book':
^
You'd need to use vouchers. DeluxeTags doesn't have any internal ways built that offers tags to players. The only way to offer tags to players is by giving them permissions
send the whole file in a paste bin please
Paste Services
When asking for help with a config/menu/code issue please use our paste bin:
(we prefer it over pastebin.com)
• HelpChat Paste - How To Use
BLITZ FrozenJoin: If a player has multiple custom join message perms, can they be randomized which one appears when they join?
And will it be updated to 1.19 at some stage?
no. but you can have formats that are of type RANDOM. These will chose at random what actions to execute.
A member of staff has requested I move your pastebin.com paste to our paste.helpch.at!
thankyou!
https://i.imgur.com/lssR86k.png line 107, you're missing a ' at the end. but also it seems like your requirements are not correct btw
you might want to fix that as well
oh, thanks.
Zzzzz, had it collapsed lol. Cheers
👍
what happened to chatinjector? it seems to have disappeared
its still on spigot tho?
both the 1.8-1.13 version and the 1.13+ versions. just not updated
Just curious- does the deluxemenu [broadcast] thing support colors?
Cuz em- it doesnt look like it
it should. we've had reports of them not working tho.
what version of deluxemenus are you using?
Doesnt alot change in the 1.19 version tho
Ahh okay- our servers run on 1.16.5 so
Colors
oh wait maybe its cuz im using & instead of that other weird thing
§ <<
this
nah. deluxemenus should parse colors with &
Doesnt work on the latest one
[Server thread/INFO]: &c&lALERT » &fCongratulations to Windowsx64 for buying a rank!
It just shows exactly how it does in console.
aka. full white
I guess that's a bug I have to figure out. you can use the section symbol for now I guess
oki-
[13:40:13 INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[13:40:13 INFO]: [PlaceholderAPI] Fetching available expansion information...
[13:40:13 ERROR]: [PlaceholderAPI] Failed to load class files of expansion.
java.util.concurrent.CompletionException: java.lang.NullPointerException: Cannot read field "plugin" because "loader" is null
at me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$findExpansionInFile$7(LocalExpansionManager.java:428) ~[?:?]
at me.clip.placeholderapi.expansion.manager.LocalExpansionManager$$Lambda$6549/0x00000000d0351720.get(Unknown Source) ~[?:?]
at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
at java.lang.Thread.run(Thread.java:884) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot read field "plugin" because "loader" is null
at org.bukkit.plugin.java.JavaPluginLoader.getClassByName(JavaPluginLoader.java:206) ~[forge:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:129) ~[forge:?]
at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:111) ~[forge:?]
at java.lang.ClassLoader.loadClassHelper(ClassLoader.java:1202) ~[?:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:1129) ~[?:?]
at java.lang.ClassLoader.loadClass(ClassLoader.java:1112) ~[?:?]
at me.clip.placeholderapi.util.FileUtil.findClass(FileUtil.java:62) ~[?:?]
at me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$findExpansionInFile$7(LocalExpansionManager.java:405) ~[?:?]
... 3 more```
what to do
Have you installed any plugin that will change the plugin load path?
Btw what version of server're u using?
Which version of PlaceholderAPI?
I support not to use the latest but try some older version like 2.11.0
any chance you use one of those hybrid servers?
2.11.2
what.
one of those servers that allow mods and plugins
It shouldn't be.You see there is no stacks which represents a modded plugoin server
ohh yes
im using Mohist
:)
Wait what?
Stop using that core and try the Arclight
That is core problem?
Mohist had changed some its basic code and may have some problem when working with plugins
mohist is very well known to break stuff
ugh I suffered with him for about a week, I don't want to again!
But I still want you to try out for Arclight,which is not as buggy as Mohist.
idk what that is to be honest
I usually don't recommend hybrid servers at all
they're all very iffy
Yes go ahead,there's a link in GitHub,you may search and get it
i downloaded Mohist bcs my hosting web panel supports it
Still, it will be the same, not directly supported by spigot plugins. If you want good hybrid server, then get a spongeforge
But a funny things is that we often recommend CatServer(for 1.12.2) or Arclight(1.16+) but not Mohist
Although it have a wide version support, it still have some problems that we will always discuss to...
Thanks I would also appreciate it.But take a look on it you will found it's good at least in developing.XD
Support is provided in #guilds after purchase usually. But if you look on the HelpChat wiki under the Guilds section there are admin commands to change certain features of existing Guilds. Personally I would suggest not to, as players don't usually like it when admins use thier power to edit their stuff.
they said its a pre purchase question that's why I pinged you btw
Should I try Magma
idk but you could
Yeah I figured but it sounded kinda support-ish. I still gave him what I know.
I don't know all the admin commands cause I don't use them, but they are there, and the wiki has them 😉.
Please respect the rules, be patient and don't ping staff members!
Please respect the rules, be patient and don't ping staff members!
What does this mean? https://imgur.com/a/RorodtP
the ip matches with my hub
it's a bungeecord server
using cloudflare
you should redirect your domain to the ip of the bungee server
Hello,
I'm looking for a plugin that would allow me to automate Faction events, for example factions have to collect 8.000 potatoes in a week and the first 3 are rewarded.
Does it already exist?
how do souls work for advanced enchantments
Hello, does anybody know a plugin for TheEnd? like respawn, custom structures and more (1.17+)
how i can make this type of menu with DeluxeMenus https://imgur.com/sVkKHSm ?
that's a hopper inventory
set inventory_type to HOPPER
Hello, I have server groups. Each server group has its own prefix. (plugin LuckyPerms)
players were given groups for a specific server.
but in the HUB server I want to display all the groups according to these modes
example:
Survival server - rank7 prefix "Creative"
Mini Games Server - Rank3 prefix "Super rank"
Lobby server:
placeholder: minigames rank - Super rank (prefix rank 3 minigames)
survival rank - Creative (prefix rank 7 survival)
How can I do that?
Simply speaking, how do I get a player prefix from another server?
provided that the group is issued on another server.
im assuming theres a bungeecord plugin for this
I have velocity
servers connected
I have a server
hub
survival
minigames
3 servers
7 groups of luckyperms
each of the server groups has its own individual prefix
Survival:
Default: user
rank1-7: Creative, etc
MiniGames
default: player
rank1-7: Super rank...
I want to make a display on the hub server that in Survival mode the player has the prefix "Creative" which is at rank 7
in MiniGames mode the player has the prefix "Super rank" which is at rank 3
At the same time, this player has rank 3 and rank 7 (according to the servers issued)
Anyone have experiences with inventories per world management?
Currently just using GamemodeInventories because all I needed was Survival/Creative inventories separate. But now we need per world inventories.
Looking at the MyWorlds plugin or Multiverse-Inventories. Any tips?
how do you hide tool/weapons damage in deluxemenu?
hide_attributes: true
thanks
deluxemenus throws err when i try to put a custom head as a material
someone can help me?
send the error
is there a way to make deluxe menus sell an item by clicking on it in your inv while in the menu
what version of deluxe menus its recommended for 1.8?
because when it throws err it goes off the plugin
like no working till restart server
1.8.8
1.12.2
1.16.5
1.17.1
1.18.2
v1.10.5
v1.13.5 - Latest
v1.13.5 - Latest
v1.13.5 - Latest
1.13.5 - Latest
They are like a currency for better enchantments, but that plugin is not very good, just be aware of it
is there a way to add a compass into the hotbar of the player to bring up the gui?
(For deluxemenus) Is there anyway to put a cooldown in the menu? Like if a player can only click something every certain amount of time
kinda like a cooldown
Example GUI menus - HelpChat Wiki
... a Kits menu that displays 3 different items for each kit, when the kit is available to claim, when it's on cooldown and when it's unavailable (Locked).
using master cooldowns
example here https://github.com/iGabyTM/mastercooldowns
how woulld i put this in a deluxemenu config
how would it know
that the player is on cooldown
check the example on the github
Hello, I would like to know if there is a way to change the claim to make it unlimited? (Guild Plugin)
Not currently, no.
Can someone show me how to use the type: string contains in deluxemenu so a range can see an item
@inner remnant
Please respect the rules, be patient and don't ping staff members!
please
asking on multiple channels at once won't get you anywhere
is there a way to make deluxe menus sell an item by clicking on it in your inv while in the menu
How do you add deluxemenu custom commands as valid commands in chat instead of always being red when you type it out even when it works?
add register_command: true to the menu options
are we able to make deluxetag tags gradient
Use ItemJoin plugin