# Daily Limits

In ExcellentJobs you can limit how much of the XP and Income players can receive on daily basis.

Daily Limits settings located in the job's settings.yml config file under the Daily_Limits section:

Daily_Limits:
  Currency:
    vault: # no limit for the Vault's economy.
      Base: -1.0
      Per_Level: 0.0
      Step: 0.0
      Action: ADD
    coinsengine_coins: # 10 (+1 per level) coins daily limit.
      Base: 10.0
      Per_Level: 1.0
      Step: 1.0
      Action: ADD
  XP: # no XP limit.
    Base: -1.0
    Per_Level: 0.0
    Step: 0.0
    Action: ADD

Limits defined using the Modifiers. The final modifier value is the daily limit. By default there are no XP and Income limits for all jobs.

Income limits goes under the Currency section, where you can specify individual limit for each supported currency. You can use the default keyword to apply limit on all currencies that are not listed here.

XP limit goes under the XP section.