Advertisement
sora200507

Untitled

Aug 10th, 2017
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. # The general configuration for the jobs plugin mostly includes how often the plugin
  2. # saves user data (when the user is in the game), the storage method, whether
  3. # to broadcast a message to the server when a user goes up a skill level.
  4. # It also allows admins to set the maximum number of jobs a player can have at
  5. # any one time.
  6.  
  7. # Default language. Use your languages two digit ISO 639-1 code, and optionally followed by the ISO-3166-1 country code.
  8. # Example: jp, jp_JP
  9. locale-language: jp
  10. # storage method, can be MySQL, sqlite
  11. storage-method: sqlite
  12. # Requires Mysql.
  13. mysql-username: root
  14. mysql-password: ''
  15. mysql-hostname: localhost:3306
  16. mysql-database: minecraft
  17. mysql-table-prefix: jobs_
  18. # How often in minutes you want it to save. This must be a non-zero number
  19. save-period: 10
  20. # Should player data be saved on disconnect?
  21. # Player data is always periodically auto-saved and autosaved during a clean shutdown.
  22. # Only enable this if you have a multi-server setup, or have a really good reason for enabling this.
  23. # Turning this on will decrease database performance.
  24. save-on-disconnect: false
  25. # Do all players get a message when somone goes up a skill level?
  26. broadcast-on-skill-up: false
  27. # Do all players get a message when somone goes up a level?
  28. broadcast-on-level-up: false
  29. # Maximum number of jobs a player can join.
  30. # Use 0 for no maximum
  31. max-jobs: 50
  32. # Hide jobs from player if they lack the permission to join the job
  33. hide-jobs-without-permission: false
  34. # option to allow payment to be made when killing mobs from a spawner
  35. enable-pay-near-spawner: false
  36. # option to allow payment to be made in creative mode
  37. enable-pay-creative: false
  38. # Adds the Jobs xp recieved to the player's Minecraft XP bar
  39. add-xp-player: false
  40. # Modifys chat to add chat titles. If you're using a chat manager, you may add the tag {jobs} to your chat format and disable this.
  41. modify-chat: true
  42. # Changes how often, in seconds, players are paid out. Default is 5 seconds.
  43. # Setting this too low may cause tick lag. Increase this to improve economy performance (at the cost of delays in payment)
  44. economy-batch-delay: 5
  45. # Enable async economy calls.
  46. # Only enable if your economy plugin is thread safe, use with EXTREME caution.
  47. economy-async: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement