# XP & Income Bonus

XP and Income bonus are the main passive advantages of the leveling system.

Default bonus values:

  • Primary Jobs: Permanent +1% Income per level and +5% XP for each 5 levels.
  • Secondary Jobs: Permanent -60% Income and -30% XP deboost.

You can change XP and Income Bonus for a job by editing bonus modifiers in the job's settings.yml config file under the Bonus section:

Bonus:
  XP:
    Primary: # XP Bonus for Primary job.
      Base: 0.0
      Per_Level: 0.01
      Step: 5.0
      Action: ADD
    Secondary: # XP Bonus for Secondary job.
      Base: -0.3
      Per_Level: 0.0
      Step: 1.0
      Action: ADD
  Income:
    Primary: # Income Bonus for Primary job.
      Base: 0.0
      Per_Level: 0.01
      Step: 1.0
      Action: ADD
    Secondary: # Income Bonus for Secondary job.
      Base: -0.6
      Per_Level: 0.0
      Step: 1.0
      Action: ADD