Advertisement
Guest User

config.yml

a guest
Aug 2nd, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.22 KB | None | 0 0
  1. ################################################
  2. #                                              #
  3. #                  Timed Fly                   #
  4. #               Made by By_Jack                #
  5. #                                              #
  6. ################################################
  7.  
  8. # Use 'none' to disable
  9. Prefix: '&fFlying >>'
  10.  
  11. # Cooldown time to get more flight time,use s for seconds, m for minutes
  12. # and h for hours
  13. Cooldown: 1m
  14.  
  15. # Type: sqlite for flatfile or mysql for an external database.
  16. Type: 'sqlite'
  17. # Only edit if 'mysql' is set in Type
  18. MySQL:
  19.  # name of your database
  20.   Database: 'test'
  21.   # ip of you MySQL database
  22.   Host: 'localhost'
  23.   # port of you MySQL database, commonly is 3306
  24.   Port: 3306
  25.   # username of you MySQL database
  26.   Username: 'user'
  27.   # password of you MySQL database
  28.   Password: 'root'
  29.  
  30. # Custom command to open the Timed Fly menu, for multiple commands use ';' (example below)
  31. OpenMenuCommand: 'fly;flymenu'
  32.  
  33. Gui:
  34.   Enable: true
  35.   # Custom name of the inventory
  36.   DisplayName: TimedFly
  37.   # Rows of the inventory (must be multiple of 9, ex: 9, 18... etc)
  38.   Slots: 9
  39.  
  40. # If true the players time will be saved with the player leaves the server
  41. StopTimerOnLeave: true
  42.  
  43. # If true flight will be disabled for 10 seconds if the player attacks a mob/player.
  44. StopFlyOnAttack: true
  45.  
  46. # If true flight will be disabled if the player is on the ground.
  47. StopFlyOnGround: false
  48.  
  49. # If true the players time will be saved with the player enters one of the blacklisted worlds
  50. # Do not use if you are running the plugin with multiple servers liked via MySQL
  51. StopTimerOnBlackListedWorld: false
  52.  
  53. # Att: This is still on beta (currently not working)
  54. # If true a bossbar will appear when a player buys time (only servers v1.9 and above)
  55. BossBarTimer:
  56.   Enabled: false
  57.   Color: green
  58.   Style: SEGMENTED_6
  59.  
  60. # If true player will join flying if the have some time left
  61. JoinFlying:
  62.   Enabled: true
  63.   Height: 2
  64.  
  65. # Set to false if you are lazy and you are using spigot 1.8
  66. Sounds:
  67.   Enabled: true
  68.   Announcer: ENTITY_EXPERIENCE_ORB_PICKUP
  69.   FlightDisabled: ENTITY_WITHER_DEATH
  70.  
  71. # If true the currency used will be from TokenManager, balance placeholder: %tokens%
  72. UseTokenManager: false
  73.  
  74. # If true the currency used will be from Vault, balance placeholder: %balance%
  75. UseVault: true
  76.  
  77. # If true players will be charged from their exp levels
  78. UseLevelsCurrency: false
  79.  
  80. # If true players will be charged from their experience points
  81. UseExpCurrency: false
  82.  
  83. # If true players with timedfly.fly.onof will enable fly mode when using one of the custom cmds
  84. FlyModeIfHasPerm: false
  85.  
  86. # If set to true players will need a permission to use the command /fly
  87. UsePermission:
  88.   Use: false
  89.   Permission: 'timedfly.flygui'
  90.  
  91. # This is the limit amount of time a player can add to his fly time (in minutes)
  92. # bypass this with timedfly.limit.bypass.
  93. LimitMaxTime: 60
  94.  
  95. # Announce the time left chosen below to the player (time in seconds)
  96. Announcer:
  97.   Chat: false
  98.   Titles: true
  99.   Times:
  100.  - '120'
  101.   - '60'
  102.   - '10'
  103.   - '5'
  104.   - '4'
  105.   - '3'
  106.   - '2'
  107.   - '1'
  108.   - '0'
  109.  
  110. # Display some messages on Title/Actionbar.
  111. Messages:
  112.   Title: true
  113.   ActionBar: true
  114.  
  115. # If true it will execute a command when flight disables
  116. OnFlyDisableCommands:
  117.   Enabled: false
  118.   Commands:
  119.  - '[console] say %player% is using hacks D:'
  120.   - '[player] say i''m using hacks >:D'
  121.  
  122. # A list of world in which you want the plugin to be enabled.
  123. World-List:
  124.  # Available types:
  125.   # enabled: the plugin will work in worlds listed
  126.   # disabled: the plugin will not work in worlds listed
  127.   # all: the plugin will work in all worlds
  128.   Type: 'all'
  129.   Worlds:
  130.  - 'world'
  131.   - 'survival'
  132.  
  133. # If the server is running aSkyBlock and this is true players flight will be disabled when exiting the island
  134. ASkyblockIntegration: true
  135.  
  136. # The name says it...
  137. Check-For-Updates: true
  138. # Auto download new updates
  139. Auto-Download: false
  140.  
  141. # Choose your own message file (if file name is lang_en.yml use the work after lang_ in this case will be en
  142. # Current languages es, sp, hu, de, you can create your own and send it to me so I added for default.
  143. # Is not recommended to use the /tf reload command, some messages will not change.
  144. Lang: en
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement