Rewards

You can configure your Rewards in: plugins/PlayerVIP/reward.yml This is very easy to configure. So lets show to the first group:

VIP:
  XP: '0X'
  Money: 0.0
  Items:
  - '1:1'
  - '2:1'
  - '3:1'

In the first Line we see "VIP". To add or modify rewards use this as your Groupname. This must be the same name like in your Permissions Plugin (Case-Sensitive: vip is not VIP but VIP is VIP)

At first we can configure how much Levels or XP the player gets, if he get the Group through PlayerVIP. Use this format

  • XP: '0X1L' => This will give the Player 0 XP and 1 Level.
  • XP: '2X' => This will give the Player 2 XP and 0 Level
  • XP: '3L' => This will give the Player 0 XP and 3 Levels

Next we can configure how much money the players receive.

  • Money: 0.0 => The Player will not receive any money
  • Money: 10.0 => The Player receive 10 Money-Units

At last we can configure the Items a player will receive:

Items:
- '1:1' => The Player will get Item with ID = 1 (Amount: 1)
- '2:1' => The Player will get Item with ID = 2 (Amount: 1)
- 10:3' => The Player will get Item with ID = 10 (Amount: 3)

Items-Format: 'ItemID:Amount'