Rewards

Guide to configure rewards for your levels

There are 8 built-in reward types currently. Money, Permission (requires LuckPerms), Command, and AuraSkills stat.

Command reward

This is probably the most basic reward, and it probably also has the highest flexibility. Only use this reward type if you can't do what you want with a more specialized one.

Syntax:

rewards:
  # You can name it as you want
  my_reward:
    type: command
    # Command to execute
    command: "[console] say {player} has levelled up! Yay!"
    # How should the reward look like in level-up messages and menus?
    display: "&8+&aShiny server message"

You can use multiple commands here at once like this:

command:
  - "[console] say {player} has levelled up! Yay!"
  - "[console] say {player} Congrats!"

Command prefixes

See Command dispatcher for more details.

Money reward

You can give money to the player using your preferred Economy provider (if the base Aurora plugin supports it). See the supported Economy providers

Syntax:

Formula placeholders

You can use every formula placeholder you defined in the main configuration inside the formula option. For display, you can use the calculated number with the {value} placeholder. You can use {value_int} for a non-decimal number or {value_formatted} (this is preferred over the others since it will format the number defined in the base Aurora plugin config file).

Permission reward

This reward is only usable if LuckPerms plugin is installed. You can give permissions as rewards. If you change your config, later on, new permissions will be automatically given to players who already reached the required levels. Formula placeholders can be used in the permission field.

Syntax:

You can use multiple permissions here at once like this:

Item reward

You can give items as rewards. It will be added to the player's inventory or if it doesn't fit there it will be dropped to the ground. To see what is possible here, please read Item config

Syntax:

AuraSkills Stat reward

This reward is only usable if AuraSkills plugin is installed. You can give stats as rewards. These stats will be auto-corrected for every player if you change your config later on.

Syntax:

Formula placeholders

You can use every formula placeholder you defined in the main configuration inside the formula option. For display, you can use the calculated number with the {value} placeholder. You can use {value_int} for a non-decimal number or {value_formatted} (this is preferred over the others since it will format the number defined in the base Aurora plugin config file).

AuraSkills skill XP reward

This reward is only usable if the AuraSkills plugin is installed. You can give skill XP as a reward. You can use the skill level as a placeholder in the formula.

Syntax:

Placeholders

For display, you can use the calculated number with the {value} placeholder. You can use {value_int} for a non-decimal number or {value_formatted} (this is preferred over the others since it will format the number defined in the base Aurora plugin config file).

MythicMobs Stat reward

This reward is only usable if MythicMobs plugin is installed. You can give stats as rewards. If you change your config later, these stats will be auto-corrected for every player. These are global player stats, that are always active once received. As far as I know, no other plugin besides the early alpha MythicRPG can do this.

Syntax:

Formula placeholders

You can use every formula placeholder you defined in the main configuration inside the formula option. For display, you can use the calculated number with the {value} placeholder. You can use {value_int} for a non-decimal number or {value_formatted} (this is preferred over the others since it will format the number defined in the base Aurora plugin config file).

MMOLib/MMOItems Stat reward (MythicLib)

This reward is only usable if MythicLib (formerly MMOLib) plugin is installed. You can give stats as rewards. If you change your config later, these stats will be auto-corrected for every player. These are global player stats, that are always active once received.

Syntax:

Formula placeholders

You can use every formula placeholder you defined in the main configuration inside the formula option. For display, you can use the calculated number with the {value} placeholder. You can use {value_int} for a non-decimal number or {value_formatted} (this is preferred over the others since it will format the number defined in the base Aurora plugin config file).

EcoSkills Stat reward

This reward is only usable if EcoSkills plugin is installed. You can give stats as rewards. These stats will be auto-corrected for every player if you change your config later on.

Syntax:

Formula placeholders

You can use every formula placeholder you defined in the main configuration inside the formula option. For display, you can use the calculated number with the {value} placeholder. You can use {value_int} for a non-decimal number or {value_formatted} (this is preferred over the others since it will format the number defined in the base Aurora plugin config file).

Last updated