Kuro's Economy Docs
  • Kuro's Economy Mod
  • Basic Contents
    • Blocks
    • Items
  • Commands
  • PayDay System
    • PayDay
    • Jobs
  • Contracts
  • Taxes and Interest
  • Server Owners
    • Server Storage
Powered by GitBook
On this page
  • Commands
  • Config
  1. PayDay System

Jobs

Players can be assigend jobs. On a players PayDay, the salary defined in the economy_jobs.json will be paid out to them.

Commands

/setjob

Give a player a job. Make sure to match the string defined in economy_jobs.json . This value is not case sensitive.

/reloadjobs

Reload jobs while in-game in case you made adjustments to the config.

Config

These are default values. You can add and edit as many jobs as you want, just copy one of the entries and make it your own. Special characters are not allowed.

economy_jobs.json
{
  "jobs": [
    {
      "name": "farmer",
      "salary": 50
    },
    {
      "name": "miner",
      "salary": 75
    },
    {
      "name": "hunter",
      "salary": 60
    }
  ]
}

Make sure that there is no comma after the last entrie's curly bracket.

PreviousPayDayNextContracts

Last updated 4 days ago