> For the complete documentation index, see [llms.txt](https://wiki.flrp.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.flrp.dev/free/economobs/tutorials/managing-multiplier-groups.md).

# Managing Multiplier Groups

## Understanding the Format

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

```yaml
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.&#x20;

**MULTIPLIER** is the multiplier an entity, weapon, or world provides within that group.&#x20;

## Using the Format

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

```yaml
 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.

```yaml
 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.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wiki.flrp.dev/free/economobs/tutorials/managing-multiplier-groups.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
