I've been messing around with this plugin for a few hours and I'm loving it so far! I've created this sort of demo/concept of player profiles for my RP server. I'd like to know what method I should use if I want these to be unique and editable/customizeable for my players (as well as viewable by other players), I'm guessing it's something to do with Placeholders? I'm still pretty new to coding so any advice is welcome!
#Player Profiles - Need Advice!
1 messages · Page 1 of 1 (latest)
Oh and also any advice on how I'd do the achievements/badges section since they'd have to be based on if x player has earned that badge
DeluxeMenus lets you set requirements for each item. Requirements for viewing the item, requirements for left clicking, right clicking, shift left clicking, and any other clicking.
It also allows you to set requirements for opening the menu.
You can find all the requirement types here: https://wiki.helpch.at/clips-plugins/deluxemenus/options-and-configurations/requirements#requirement-types.
You'll also find how you need to format them in your menu config file. What you'll want to use for achievements is view_requirement.
Now for the displaying of stats, you'll want to get familiar with PlaceholderAPI if you're not yet familiar with it.
The plugin works as some sort of middle man between plugins.
Pretty much a plugin says "I want information, here's a key", and PlaceholderAPI get that key, will see what plugin has that information and get that information from that plugin.
There's also plugins that say "I want to let other plugins get specific information" and provides a key for other plugins to use to get that information.
That keys are also called placeholders.
There's also placeholders that don't come from plugins and rather they just provide information provided by the server such as: count of players online, the player's name, the world the player is in, etc.
If you want to read more on all of this, I suggest the PlaceholderAPI wiki:
https://github.com/PlaceholderAPI/PlaceholderAPI/wiki/FAQ
https://github.com/PlaceholderAPI/PlaceholderAPI/wiki/Expansion-cloud
https://github.com/PlaceholderAPI/PlaceholderAPI/wiki/Placeholders