Advertisement
Guest User

general config.yml

a guest
Feb 3rd, 2012
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. # General configuration.
  2. #
  3. # The general configuration for the jobs plugin mostly includes how often the plugin
  4. # saves user data (when the user is in the game), the storage method, whether
  5. # to broadcast a message to the server when a user goes up a skill level.
  6. # It also allows admins to set the maximum number of jobs a player can have at
  7. # any one time.
  8.  
  9. # storage method, can be MySQL, h2
  10. storage-method: mysql
  11.  
  12. # Requires Mysql.
  13. mysql-username: ******
  14. mysql-password: ******
  15. mysql-database: ******
  16. mysql-url: jdbc:mysql://localhost:3306/
  17. #mysql-table-prefix:
  18.  
  19. # How often in minutes you want it to save, 0 disables periodic saving and
  20. # the system will only save on logout
  21. save-period: 10
  22.  
  23. # Do all players get a message when somone goes up a skill level?
  24. broadcast-on-skill-up: true
  25.  
  26. # Do all players get a message when somone goes up a job level?
  27. broadcast-on-level-up: false
  28.  
  29. # maximum number of jobs a player can join
  30. max-jobs: 2
  31.  
  32. # option to enable the stats and achievements plugin.
  33. #enable-stats: true
  34.  
  35. # option to allow payment to be made when near a spawner
  36. #enable-pay-near-spawner: true
  37.  
  38. # choose, which economy plugin should be used as default (optional)
  39. # if not set, will use iConomy first
  40. # available options: iConomy, BOSEconomy, Essentials
  41. #economy: iConomy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement