nathanielcutajar

ItemJoin Config

Mar 4th, 2022
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.98 KB | None | 0 0
  1. # +----------------------------------------------------------------------------------------------+ #
  2. # |                        _____                      _____                                      | #
  3. # |                       |_   _|_                   |_   _|     _                               | #
  4. # |                         | | | |                    | |      (_)                              | #
  5. # |                         | | | |_ ___  _ __ ___     | | ____  _ ____                          | #
  6. # |                         | | | __/ _ \| '_ ` _ \ _  | |/ _  \| |  _ \                         | #
  7. # |                        _| |_| ||  __/| | | | | | |_| | (_|  | | | | |                        | #
  8. # |                       |_____|\__\___||_|_| |_|_|\____/\____/|_|_| |_|                        | #
  9. # |                                                                                              | #
  10. # |                      ItemJoin's Configuration Settings, by RockinChaos                       | #
  11. # |                                                                                              | #
  12. # |     Source Code:     https://github.com/RockinChaos/ItemJoin                                 | #
  13. # |     Bug Reports:     https://github.com/RockinChaos/ItemJoin/issues                          | #
  14. # |     Wiki (Docs):     https://github.com/RockinChaos/ItemJoin/wiki                            | #
  15. # |     Discord Support: https://discord.gg/D5FnJ7C                                              | #
  16. # |                                                                                              | #
  17. # +----------------------------------------------------------------------------------------------+ #
  18.  
  19. # Modifying the Version will cause this file to break and regenerate.
  20. config-Version: 8
  21.  
  22. # At the moment, the available language translations are; English, Russian, French, Dutch, Spanish, Chinese, Traditional Chinese.
  23. # If you want to contribute to a language translation please create a pull request; https://github.com/RockinChaos/ItemJoin/tree/master/files/locales
  24. Language: 'English'
  25.  
  26. # These are typically general maintenance settings that do not affect functionality.
  27. General:
  28.   CheckforUpdates: true
  29.   Metrics-Logging: true
  30.   Log-Commands: true
  31.   Debugging: false
  32.  
  33. # These settings are optional as a database file is generated by default or you can setup MySQL database connections.
  34. Database:
  35.   MySQL: false
  36.   database: 'database_name'
  37.   prefix: 'ij_'
  38.   host: 127.0.0.1
  39.   port: 3306
  40.   user: 'root'
  41.   pass: 'password'
  42.  
  43. # These settings will take effect globally throughout the plugins system.
  44. Settings:
  45.   HeldItem-Slot: NONE
  46.   HeldItem-Triggers: JOIN, WORLD-SWITCH
  47.   HeldItem-Animations: true
  48.   Default-Triggers: JOIN
  49.   DataTags: true
  50.  
  51. # These permissions if enabled, determine whether the permission(s) is/are applied to certain players.
  52. Permissions:
  53.   Obtain-Items: false
  54.   Obtain-Items-OP: false
  55.   Commands-Get: false
  56.   Commands-OP: false
  57.   Movement-Bypass: false
  58.  
  59. # If enabled this will clear items from their inventory upon performing the specified action for the specified type.
  60. # The available types(s) are ALL for all items or ITEMJOIN for only the ItemJoin items.
  61. Clear-Items:
  62.   Type: ALL
  63.   Delay-Tick: 1
  64.   Join: true
  65.   Quit: false
  66.   World-Switch: false
  67.   Region-Enter: false
  68.   Options: PROTECT
  69.   Blacklist: ''
  70.  
  71. # This is the command(s) executed upon the player performing the defined trigger(s), for the specified world(s).
  72. Active-Commands:
  73.   commands:
  74.    - 'itemjoin get <item> <player>'
  75.     - 'first-join: say This is a command only executed once per world, per player.'
  76.   commands-sequence: SEQUENTIAL
  77.   triggers: JOIN
  78.   enabled-worlds: DISABLED
  79.  
  80. # This determines if the action is allowed for all items in the specified worlds.
  81. # To disable an action, simply set the action to true for all worlds or list each world separated by a comma.
  82. Prevent:
  83.   Pickups: false
  84.   itemMovement: false
  85.   Self-Drops: false
  86.   Death-Drops: false
  87.   Bypass: CREATIVE, OP
Advertisement
Add Comment
Please, Sign In to add comment