Advertisement
Guest User

Untitled

a guest
Jun 19th, 2024
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1. Version: 1.11.0
  2.  
  3. pluginPrefix: '&8[&3TownyFlight&8] '
  4.  
  5. ####################
  6. # Language Strings #
  7. ####################
  8. language:
  9.  
  10. # Message shown when flight activated.
  11. flightOnMsg: 'Flight Activated. '
  12.  
  13. # Message shown when flight de-activated.
  14. flightOffMsg: 'Flight De-Activated. '
  15.  
  16. # Message shown when player lacks a town.
  17. noTownMsg: 'Flight cannot be activated, you don''t belong to a town. '
  18.  
  19. # Message shown when flight cannot be turned on.
  20. notInTownMsg: 'Flight cannot be activated, return to your town and try again. '
  21.  
  22. # Message shown when a player has flight taken away.
  23. flightDeactivatedMsg: 'Left town boundaries. '
  24.  
  25. # Message shown when a player has flight taken away because of PVP.
  26. flightDeactivatedPVPMsg: 'Entering PVP combat. '
  27.  
  28. # Message shown when a player has flight taken away by console.
  29. flightDeactivatedConsoleMsg: 'Flight priviledges removed. '
  30.  
  31. # Message shown when a player has flight taken away because their tempflight ran out.
  32. flightDeactivatedTimeMsg: 'You ran out of flight time. '
  33.  
  34. # Message shown when a player lacks a permission node.
  35. noPermission: 'You do not have permission for this command%s. '
  36.  
  37. # Message attached to noPermission when options.show_Permission_After_No_Permission_Message is true
  38. missingNode: ', missing %s'
  39.  
  40. # Message shown when war is active and flight is disallowed.
  41. notDuringWar: 'You cannot use flight while Towny war is active. '
  42.  
  43. # Message telling a player to return to an allowed flight area.
  44. returnToAllowedArea: 'You have %s seconds to return to an allowed flight area. '
  45.  
  46. # Message when a town cannot be found by the name.
  47. noTownFound: 'TownyFlight cannot find a town by the name %s. '
  48.  
  49. # Message when a town has free flight enabled or disabled.
  50. townWideFlight: 'Free flight has been %s in %s. '
  51.  
  52. # The word disabled.
  53. disabled: disabled
  54.  
  55. # The world enabled.
  56. enabled: enabled
  57.  
  58. # The component shown on towns' status screens when they have free flight enabled.
  59. statusScreenComponent: Free Flight
  60.  
  61. # The hover text shown on the free flight status screen component.
  62. statusScreenComponentHover: Flight enabled for everyone within this town's borders.
  63.  
  64. # The message shown to the admin/console when temp flight is given to a player.
  65. tempFlightGrantedToPlayer: '%s has had tempflight granted for %s.'
  66.  
  67. # The message shown to the player when they receive temp flight.
  68. youHaveReceivedTempFlight: You have been given %s of tempflight priviledges.
  69.  
  70. # The message shown to the player when they run out of temp flight.
  71. yourTempFlightHasExpired: Your tempflight priviledges have expired.
  72.  
  73. #################
  74. # Options #
  75. #################
  76. options:
  77.  
  78. # If set to true, players entering their town will have flight auto-enabled.
  79. # When set to true, the plugin will use slightly more resources due to the EnterTown listener.
  80. auto_Enable_Flight: 'true'
  81.  
  82. # If set to true, players entering their town will have flight auto-enabled without being notified in chat.
  83. auto_Enable_Silent: 'true'
  84.  
  85. # If set to false, players can still fly in their town while war is active.
  86. disable_During_Wartime: 'true'
  87.  
  88. # If set to false, TownyFlight will not prevent combat of flying people.
  89. disable_Combat_Prevention: 'true'
  90.  
  91. # If set to false, the language.noPermission message will not display the permission node.
  92. show_Permission_After_No_Permission_Message: 'true'
  93.  
  94. # Number of seconds after leaving an allowed flight area before flight is taken away.
  95. # Set to 0 to take flight away immediately.
  96. flight_Disable_Timer: '3'
  97.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement