๐ค FAQ โ
More frequent bugs and issues are documented on this MythicLib wiki page, please consider checking it as well.
Is there an installation guide โ
An installation guide is available here.
Is MySQL supported? โ
Yes, you can enable MySQL in the main plugin config file. Look for the following lines:
mysql:
enabled: false
host: localhost
port: 3306
database: minecraft
user: mmolover
pass: ILoveAria
....How do I make it open when I press E? โ
You can do this using MythicKeys which requires a client mod. You cannot do this without a client mod as there are NO ways (in vanilla Spigot) of checking if a player has his crafting inventory open, as it is all client side. A client mod allows to send the right packets for the server to detect when a player opens his inventory.
This used to be possible under Spigot 1.12 using advancement packets but these were removed in non legacy builds.
What you can you is use another plugin to make the 2x2 crafting grid perform the /mmoinventory command when clicked which can be a nice vanilla alternative. Some other alternative is using an item you'd place in some static slot of your inventory that opens the inventory when right clicked (there's an option to do that in the main config file).
Does MMOInventory have auto-elytra equip? โ
In recent dev builds, yes!
Does MMOInventory auto use totems? โ
No.
MMOItems placed in their respective slots don't apply their stats. โ
Make sure the corresponding item type from MMOItems/item-types.yml has its subtype/parent set to ACCESSORY, which is mandatory to have MMOItems register stats from items placed in the custom inventory GUI. If you try equipping a catalyst item in a catalyst slot, you'll suceed but won't get ANY stat because catalysts don't apply their stats when equipping in custom inventory slots! This is a limitation with how MMOItems is made.
Similarily items with non met level restrictions can be equipped but won't apply their stats (unless you are using the milevel{} slot restriction).
Is there a backpack slot, or a mount slot? โ
No.
Is there a weapon slot? โ
No, because this feature gets glitchy really fast with other plugins like MMOItems. It used to be a thing in old inventory plugins such as RPGInventory but we decided not to implement it.
My GUI looks weird โ
This issue is no longer relevant as of 1.21.8 as the scale parameter can no longer be used to cover up the vanilla inventory grid pattern. Please refer to this wiki page for more details.
As explained on the main plugin resource page, the default MMOInventory resource pack uses custom textured diamond hoes to display gray filler items to fill in the Minecraft default inventory grid pattern. In order to hide that grid pattern you have to resize your items to approximately 110% but the required percentage can vary sometimes. Edit your resource pack and find the corresponding model which is (by default) located in /assets/minecraft/models/item/slots/fill.json.
Using the scale json section you can change it to something higher to hide that tiny 1-pixel-wide frame from the inventory grid pattern. Then tweak the 1.1 value so that the grid pattern fully hides. Be careful, if you set it too high the filler items will get past the item slot square.
{
"parent": "item/handheld",
"textures": {
"layer0": "items/slots/fill"
},
"display": {
"gui": {
"rotation": [ 0, 0, 0 ],
"translation": [ 0, 0, 0 ],
"scale": [ 1.1, 1.1, 1.1 ]
}
}
}Is it compatible with Oraxen, ItemsAdder, Nexo? โ
MMOInventory is fully compatible with Oraxen, ItemsAdder and Nexo. MMOInventory features a few additional built-in compatibility features with Oraxen.