Global effects

Global effects are located at config.yml. It allows you create (conditional) global effects for players

pageEffect

This is the default config which speeds up the fishing when there's a competition going on.

  global-effects:
    effect_1:
      type: conditional
      conditions:
        competition:
          ongoing: true
          id:
            - weekend_competition
      effects:
        effect_1:
          type: wait-time-multiplier
          value: 0.85

Here's an example about how to hook the plugin into Aureliums fishing skill bonus

Firstly register a custom placeholder for instance {skill-level}

  placeholder-register:
    '{record}': '%fishingstats_size-record_{loot}%'
    '{skill-level}': '%aureliumskills_fishing%'
pagePlaceholder

Then add a new section inside global-effects

  global-effects:
    skill_effect:
      type: multiple-loot
      value: '{skill-level} * 0.02'

Last updated