PiggiesGoSqueal

JobsMC Config

Aug 5th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.18 KB | None | 0 0
  1. pay_cycle:
  2.  # What should the maximum pay be per cycle? Put -1 for no maximum pay.
  3.   max_pay: 4000
  4.  
  5.   # How often in minutes should it pay the player for performing their job?
  6.   cycle_length: 5
  7.  
  8.   # Every cycle should it tell the player in the action bar
  9.   # how much they made in the last 5 minutes?
  10.   show_pay: true
  11.  
  12.   # If show_pay is set to true, what should the message be?
  13.   cycle_pay_message: &aYou have made &e${amount} &ain the last &e{cycle_length} &aminutes.
  14.  
  15. max_jobs:
  16. # What is the maximum amount of jobs a player should have?
  17. # Use the group names in a permission like so: jobsmc.maxjobs.default
  18. # groupName: amount
  19.   default: 1
  20.   vip: 2
  21.  
  22. backend:
  23.   type: file # May use either "file" or "mysql"
  24.   user: user
  25.   pass: password
  26.   database: jobsmc_
  27.   host: localhost
  28.   port: 3306
  29.  
  30. advanced:
  31.  # Should the plugin require permissions to use?
  32.   usePerms: false
  33.  
  34.   # Should mobs killed from spawners pay money (for jobs that kill mobs)?
  35.   pay_spawners: false
  36.  
  37.   # Should the plugin remove inactive player files?
  38.   prune: false
  39.     # If prune is set to true, how many days should pass before
  40.     # a player's stored data is removed?
  41.     prune_length_days: 90
Add Comment
Please, Sign In to add comment