flrp's plugins
  • Hub
  • Free
    • Tracker
      • Installation & Dependencies
      • Permissions & Commands
      • Files
    • Economobs
      • Installation & Dependencies
      • Permissions, Commands, & Placeholders
      • Files
      • Tutorials
        • Understanding Loot and Loot Tables
        • Assigning Loot Tables
        • Loot Table Conditionals and Overrides
        • Managing Multiplier Groups
        • 1.0.0 Tutorials
          • Managing Rewards & Drop Weight
    • Econoblocks
      • Installation & Dependencies
      • Permissions & Commands
      • Files
      • Frequently Asked Questions
      • Tutorials
        • Understanding Loot and Loot Tables
        • Assigning Loot Tables
        • Loot Table Conditionals and Overrides
        • Managing Multiplier Groups
        • 1.0.0 Tutorials
          • Managing Rewards & Drop Weight
  • Premium
    • TrackerPlus
      • Installation & Dependencies
      • Permissions & Commands
      • Files
      • Frequently Asked Questions
      • Tutorials
        • Creating a Reward
    • Challenges
Powered by GitBook
On this page
  • Understanding the Format
  • Using the Format
  • Dealing With Multiple Groups

Was this helpful?

  1. Free
  2. Economobs
  3. Tutorials

Managing Multiplier Groups

Understanding the Format

To start off, here's the format for group multipliers.

multipliers:
  GROUP_NAME:
    weight: NUMBER
    mobs:
      - ENTITY MULTIPLIER # Decimals are supported.
    weapons:
      - MATERIAL MULTIPLIER
    worlds:
      - WORLD_NAME MULTIPLIER

GROUP_NAME is the name of the group. This will be used in the permission node economobs.groups<group_name>.

WEIGHT is the weight of that group. The higher the number, the higher priority of that group.

MULTIPLIER is the multiplier an entity, weapon, or world provides within that group.

Using the Format

When you fill this out, it should look something like this:

 multipliers:
   legendary:
    weight: 5
    mobs:
      - PIG 1.1
    weapons:
      - DIAMOND_SWORD 1.2
    worlds:
      - real_world 1.2

Not all tags are required, you may remove any section if you don't wish to use it. For example, you can remove the "worlds" section from the group if you have no world-based multipliers.

 multipliers:
   weight: 5
   legendary:
    mobs:
      - PIG 1.1
    weapons:
      - DIAMOND_SWORD 1.2

Dealing With Multiple Groups

When you assign multiple ranks to a user, the plugin depends on the weights you have set to your groups. The higher the number the higher priority for the group over others.

By determining weight, such as the default being 0, and for example - legendary being 5; legendary has higher priority than default.

PreviousLoot Table Conditionals and OverridesNext1.0.0 Tutorials

Last updated 1 year ago

Was this helpful?