Skip to content

๐Ÿน MMOItems โ€‹

MMOCore is built to be used with MMOItems (Polymart / Spigot) although it is not a dependency. MMOCore features a lot of compatibility options for MMOItems, here is the detailed list.

Extra MMOItems Stats โ€‹

When using both MMOCore and MMOItems, extra item stats will automatically enable and will be added to the MMOItems item edition GUI.

StatDescription
Max ManaDefault stat, but it does support MMOCore
Max StaminaGives extra MMOCore stamina.
Max StelliumGives extra MMOCore stellium.
Resource* RegenerationIncreases flat resource* regen.
Max Resource* RegenerationRegens a % of max resource* every second.
Additional ExperienceIncreases exp earned.
Skill Cooldown ReductionDefault stat, but it does support MMOCore

*Resource stands for either health, mana, stamina or stellium.

Quest Objectives & Triggers โ€‹

MMOItems add new quest objectives to MMOCore quests, where players have to get an item and give it to a specific Citizen NPC. You can also setup quest triggers which give an MMOItem when a specific quest objective is completed.

MMOCore Drop Tables โ€‹

You may add items from MI to MMOCore drop tables.

Item Restrictions, Mana โ€‹

MMOItems features item restrictions, including level and class restrictions which do work with MMOCore. MMOItems abilities wand weapons may also use mana or stamina/stellium which is also supported by MMOCore.

Extra features for MMOItems Crafting โ€‹

In MMOItems, some recipes have specific conditions which must be met for the player to be able to use the crafting recipe. MMOCore adds profession level crafting restrictions i.e players must be at least Lvl X in some profession like smithing or mining, in order to use the recipes. More info on MMOItems recipe conditions in the MMOItems wiki.

Recipe example, where the player must be at least Lvl 5 in Smithing.

    steel-sword:
        output:
            type: SWORD
            id: STEEL_SWORD
        conditions:
        - 'profession{profession=smithing,level=5}'
        ingredients:
        - 'vanilla{type=STICK,amount=2}'
        - 'mmoitem{type=MATERIAL,id=STEEL_INGOT,amount=4}'

MMOCore also adds a new type of crafting trigger (actions made when a recipe is used), which can be used to give experience to a player (either main experience, or experience in a specific profession). More information on MMOItems recipe triggers in the MMOItems wiki.

Same example, which grants 10 Smithing EXP when used

    steel-sword:
        output:
            type: SWORD
            id: STEEL_SWORD
        ...
        triggers:
        - 'exp{profession=smithing,amount=10}'

Powered by VitePress