Guest User

Untitled

a guest
Feb 20th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.04 KB | None | 0 0
  1. # SavageFactions by ProSavage
  2. # Report issues: https://github.com/ProSavage/SavageFactions/issues/new
  3. # Live support: https://discord.gg/W9dv9WP
  4. # Spigot Site: https://www.spigotmc.org/resources/savagefactions-factionsuuid-reimagined-1-7-1-12.52891/
  5. # Website: https://www.prosavage.net/
  6. # Jenkins: https://jenkins.prosavage.net/
  7.  
  8. # Made with love <3
  9.  
  10. # Debug
  11. # Turn this on if you are having issues with something and working on resolving them.
  12. # This will spam your console with information that is useful if you know how to read the source.
  13. # It's suggested that you only turn this on at the direction of a developer.
  14. debug: false
  15.  
  16.  
  17.  
  18. # Prevent find factions exploit
  19. # This will help limit how many times a player can be sent a map of factions.
  20. # Set this to the cooldown you want, in miliseconds, for a map to be shown to a player.
  21. # If you want to log when a player violates this (only happens on chunk enter so it shouldn't be too spammy),
  22. # set log to true and it will be logged to console as "player tried to show a faction map too soon and triggered exploit blocker."
  23. findfactionsexploit:
  24. cooldown: 2000 # in miliseconds. 2000 = 2 seconds.
  25. log: false
  26.  
  27. ### Hard Core Settings ###
  28. # Many of the features that are / are to come in this section have been requested by
  29. # people in relation to HCF servers. All settings are set to the normal Factions
  30. # behavior by default.
  31.  
  32. # Default Relation allows you to change the default relation for Factions.
  33. # Example usage would be so people can't leave then make a new Faction while Raiding
  34. # in order to be able to execute commands if the default relation is neutral.
  35. # This has always been neutral.
  36. default-relation: "neutral"
  37.  
  38. # Portal Creation
  39. # Do you want to limit portal creation?
  40. portals:
  41. limit: false # will disable the below check if set to false
  42.  
  43. # What should the minimum relation be to create a portal in territory?
  44. # Goes in the order of: ENEMY, NEUTRAL, ALLY, MEMBER.
  45. # Minimum relation allows that and all listed to the right to create portals.
  46. # Example: put ALLY to allow ALLY and MEMBER to be able to create portals.
  47. minimum-relation: MEMBER # If typed incorrectly, defaults to NEUTRAL.
  48.  
  49. ### Hard Core Settings ###
  50.  
  51. # Warps
  52. # What should be the max amount of warps that a Faction can set?
  53. max-warps: 2
  54.  
  55. # This is the cost section for warps.
  56. # It will charge them each time the command would be successful. (won't charge on erroneous /f warp attempts).
  57. # You can use decimal places here.
  58. # If enabled is set to false, it will ignore the values.
  59. warp-cost:
  60. enabled: false
  61. setwarp: 5
  62. delwarp: 5
  63. warp: 5
  64.  
  65. # Faction Fly
  66. # Enable Faction Fly:
  67. enable-faction-flight: true
  68. ffly:
  69. Particles:
  70. Enabled: false
  71. Enable-While-Vanished: false
  72. AutoEnable: false
  73. #If set to true, fly will automatically enable when walking into your own chunk.
  74.  
  75. # If a player leaves fly (out of territory or took damage)
  76. # how long should they not take fall damage for?
  77. # Set to 0 to have them always take fall damage.
  78. fly-falldamage-cooldown: 3
  79.  
  80. # Pistons
  81. # Should we disable pistons in Faction territory? This will prevent people from doing something like:
  82. # http://i.gyazo.com/6a1a31222e58a5d60ff341c13f6a8404.gif
  83. disable-pistons-in-territory: false
  84.  
  85. # ToolTips
  86. # This section is to configure tooltips for things like /f list
  87. tooltips:
  88.  
  89. # List
  90. # This shows up when someone does /f list for the top factions.
  91. # It will not sure up for factionless of course, just actual factions.
  92. # You can use color codes here.
  93. list:
  94. - "&6&l* &eLeader: &7{leader}"
  95. - "&6&l* &eClaims: &7{chunks}"
  96. - "&6&l* &ePower: &7{power}/{maxPower}"
  97. - "&6&l* &eMembers: &7{online}/{members}"
  98.  
  99. # Show
  100. # This shows up when someone does /f show.
  101. # It adds tooltips to each player in the list here, nothing else.
  102. # {group} will show the players primary group if you have vault installed.
  103. # {balance} will show their balance if you have vault installed.
  104. # {lastSeen} will show human readable info on when the player was last seen, or online.
  105. show:
  106. - "&6&l* &eUsername: &7{name}"
  107. - "&6&l* &eRank: &7{group}"
  108. - "&6&l* &eLast Seen:&7 {lastSeen}"
  109. - "&6&l* &ePower: &7{power}/{maxPower}"
  110.  
  111. # Configuration section for Scoreboards
  112. # This will allow you to completely customize how your scoreboards look.
  113. # Make sure that no lines are duplicates of each other otherwise only the first will display.
  114. # Use &0-9a-f for colors and include messages in "quotes"
  115. scoreboard:
  116.  
  117. # send faction change message as well when scoreboard is up?
  118. also-send-chat: true
  119. # How long do we want scoreboards to stay if set temporarily.
  120. expiration: 7
  121.  
  122. # FInfo scoreboard is displayed when a player walks into a new Faction's territory.
  123. # Scoreboard disappears after <expiration> seconds.
  124. # Things to be replaced in this:
  125. # {power} - faction's power. {chunks} - total claimed chunks. {members} - total members.
  126. # {online} - online members. {leader} - faction's leader. {open} - shows either true or false if open.
  127. # {raidable} - true if the faction can be claimed over, otherwise false.
  128. # {warps} - the number of warps that a faction has set.
  129. # The title of the scoreboard will be the Faction's tag and colored according to the relation with the player's Faction.
  130. # Commenting this section out will cause the info to appear in chat as the plugin originally did.
  131. finfo-enabled: false
  132.  
  133. # SUPPORTS PLACEHOLDERS
  134. finfo:
  135. - "&6Power"
  136. - "{power}"
  137. - "&3Members"
  138. - "{online}/{members}"
  139. - "&4Leader"
  140. - "{leader}"
  141. - "&bTerritory"
  142. - "{chunks}"
  143.  
  144. # Default board that will always show up if a player wants it to.
  145. # This can show any arbitrary text or you can use a lot of variables to replace things.
  146. # Replace {name} - player's name. {faction} - player's faction title, factionless if none.
  147. # {totalOnline} - total players on the server. {balance} - player's balance.
  148. # {maxPower} - player's max power.
  149. # {powerBoost} - player's powerboost.
  150.  
  151. default-enabled: false # Default to false to keep original functionality.
  152. default-title: "&cSavageFactions" # Can use any of the values from above but this won't update once it's set (so don't set {balance}).
  153. default-update-interval: 2 # in seconds.
  154.  
  155. # This will show faction prefixes colored based on relation on nametags and in the tab.
  156. # The scoreboard needs to be enabled for this to work.
  157. default-prefixes: true
  158.  
  159. # SUPPORTS PLACEHOLDERS
  160.  
  161. default:
  162. - "&7&m--------------------------"
  163. - "&4&lFaction Info &8»"
  164. - " &8> &cLeader&7: &f{leader}"
  165. - " &8> &cMembers&7: &f{online}&7/&f{members}"
  166. - " &8> &cPower&7: &f{power}&7/&f{maxPower}"
  167. - "&m"
  168. - "&4&lFaction Stats &8»"
  169. - " &8> &cKills&7: &f{faction-kills}"
  170. - " &8> &cDeaths&7: &f{faction-deaths}"
  171. - " &8> &cBalance&7: &f{faction-balance}"
  172. - ""
  173. - " &8> &cYour Balance&7: &f{balance}"
  174. - "&7&m---------------------------"
  175.  
  176. factionless-enabled: true
  177. factionless:
  178. - "&7&m--------------------------"
  179. - "&4&lInformation &8»"
  180. - " &8> &cPlayer&7: &f{name}"
  181. - " &8> &cRank&7: &f{group}"
  182. - " &8> &cBalance&7: &f${balance}"
  183. - "&m"
  184. - "&4&lServer Info &8» "
  185. - " &8» &cIFaction: &fN/A"
  186. - " &8» &cOnline Players&7: &f{total-online}"
  187. - "&7&m---------------------------"
  188.  
  189.  
  190. # Configration section for warmups.
  191. # Warmup times are in seconds - if a value of 0 is set, there is no warmup.
  192. warmups:
  193. # Delay for /f home
  194. f-home: 15
  195. # Delay for /f warp
  196. f-warp: 10
  197. # Delay for /f fly
  198. f-fly: 0
  199. #Delay for /f checkpoint's teleport
  200. f-checkpoint: 10
  201. #Delay for /f tpbanner
  202. f-banner: 10
  203.  
  204. ######################################################
  205. #################### HCF Features ####################
  206. ######################################################
  207. # These features were requested as part of Hardcore Factions or something.
  208. # All of them are disabled by default.
  209.  
  210. # Max Relation Types
  211. # Limits factions to having a max number of each relation.
  212. # Setting to 0 means none allowed. -1 for disabled.
  213. # This will have no effect on default or existing relations, only when relations are changed.
  214. # It is advised that you set the default relation to -1 so they can always go back to that.
  215. # Otherwise Factions could be stuck with not being able to unenemy other Factions.
  216. max-relations:
  217. enabled: true
  218. ally: 99
  219. truce: 0
  220. neutral: -1
  221. enemy: 99
  222.  
  223. # WorldBorder support
  224. # A buffer of 0 means faction claims can go right up to the border of the world.
  225. # The buffer is in chunks, so 1 as a buffer means an entire chunk of buffer between
  226. # the border of the world and what can be claimed to factions
  227. world-border:
  228. buffer: 1
  229.  
  230. # Raids
  231. # Allow a faction to be raided if they have more land than power.
  232. # This will make claimed territory lose all protections
  233. # allowing factions to open chests, break blocks, etc. if they
  234. # have claimed chunks >= power.
  235. hcf:
  236. raidable: true
  237.  
  238. # DTR (death til raidable) will be in /f show if enabled. Configure the message in the lang.yml
  239. dtr: false
  240.  
  241. # Should we allow Factions to over claim if they are raidable (above has no effect on this)?
  242. # This has always been true, allowing factions to over claim others.
  243. allow-overclaim: false
  244.  
  245. # Power Freeze
  246. # After a player dies, how long should the faction not be able to regen power?
  247. # This resets on each death but does not accumulate.
  248. # Set to 0 for no freeze. Time is in seconds.
  249. powerfreeze: 0
  250.  
  251. # Buffer Zone
  252. # Buffer Zone is an chunk area required between claims of different Factions.
  253. # This is default to 0 and has always been that way. Meaning Factions can have
  254. # claims that border each other.
  255. # If this is set to 3, then Factions need to have 3 chunks between their claim
  256. # and another Faction's claim.
  257. # It's recommended to keep this pretty low as the radius check could be a
  258. # heavy operation if set to a large number.
  259. # If this is set to 0, we won't even bother checking which is how Factions has
  260. # always been.
  261. buffer-zone: 1
  262.  
  263. stuck:
  264. delay: 30
  265. radius: 10
  266.  
  267. ############################################################
  268. # +------------------------------------------------------+ #
  269. # | Configurable /f show | #
  270. # +------------------------------------------------------+ #
  271. ############################################################
  272.  
  273. # You can use any variable here, including fancy messages. Color codes and or tags work fine.
  274. # Lines that arent defined wont be sent (home not set, faction not peaceful / permanent, dtr freeze)
  275.  
  276. # SUPPORTS PLACEHOLDERS
  277. show:
  278. # First line can be {header} for default header, or any string (we recommend &m for smooth lines ;plugin)
  279. - '&8&m--------------&7 &8<&e{faction}&8> &8&m--------------'
  280. - '&6 * &eOwner &7{leader}'
  281. - '&6 * &eDescription &7{description}'
  282. - '&6 * &eLand / Power / Max Power: &7{chunks} &8/ &7{power} &8/ &7{maxPower}'
  283. - '&6 * &eFounded &7{create-date}'
  284. - '&6 * &eAllies &c{allies-list}'
  285. - '&6 * &eEnemies &c{enemies-list}'
  286. - '&6 * &eOnline Members &8(&7{online}/{members}&8) &7{online-list}'
  287. - '&6 * &eOffline Members &8(&7{offline}/{members}&8) &7{offline-list}'
  288. - '&8&m----------------------------------------'
  289. # For a /f show that does not display fancy messages that are essentially empty, use minimal-show
  290. minimal-show: false
  291.  
  292. # Factions that should be exempt from /f show, case sensitive, useful for a
  293. # serverteam faction, since the command shows vanished players otherwise
  294. show-exempt:
  295. - Wilderness
  296.  
  297.  
  298. # THIS IS FOR /f map tool tips.
  299.  
  300. # You can use any variable here, including fancy messages. Color codes and or tags work fine.
  301. # Lines that arent defined wont be sent (home not set, faction not peaceful / permanent, dtr freeze)
  302. map:
  303. # First line can be {header} for default header, or any string (we recommend &m for smooth lines ;plugin)
  304. - '&6* &eFaction &7{faction}'
  305. - '&6* &eOwner &7{leader}'
  306. - '&6* &eLand / Power / Max Power: &7{chunks} &8/ &7{power} &8/ &7{maxPower}'
  307. - '&6* &eAllies &c{allies-list}'
  308. - '&6* &eEnemies &c{enemies-list}'
  309. - '&6* &eOnline Members &8(&7{online}/{members}&8) {online-list}'
  310. - '&6* &eOffline Members &7{offline-list}'
  311.  
  312. ############################################################
  313. # +------------------------------------------------------+ #
  314. # | Configurable /f list | #
  315. # +------------------------------------------------------+ #
  316. ############################################################
  317.  
  318. list:
  319. # You can only use {pagenumber} and {pagecount} in the header
  320. header: '&8&m-----------------&r &8< &eFaction List &8(&7{pagenumber}/{pagecount}&8) &8> &m-----------------'
  321. # You can use any variables here
  322. factionless: '&7&o(( There are currently &f{total-online} &7&oPlayers online right now! ))'
  323. # You can use any variable here
  324. entry: '{faction} &8(&7{online}/{members}&8) &eLand / Power / Max Power &f{chunks}&7/&f{power}&7/&f{maxPower}'
  325.  
  326. ############################################################
  327. # +------------------------------------------------------+ #
  328. # | Configurable /f help | #
  329. # +------------------------------------------------------+ #
  330. ############################################################
  331.  
  332. # set to true to use legacy factions help
  333. use-old-help: false
  334.  
  335. help:
  336.  
  337.  
  338. # You can change the page name to whatever you like
  339. # We use '1' to preserve default functionality of /f help 1
  340. '1':
  341. - '&7&m----------------------------------------------------'
  342. - '&6&lFactions Help &8- &f(1/2) '
  343. - '&7&m----------------------------------------------------'
  344. - '&e/f create &f<name> &8- &7Create your own faction.'
  345. - '&e/f who &f<name> &8- &7Show faction information.'
  346. - '&e/f tag &f<name> &8- &7Change your faction name.'
  347. - '&e/f join &f<name> &8- &7Join to the faction.'
  348. - '&e/f list &8- &7List all factions.'
  349. - '&e/f top &8- &7View the richest factions.'
  350. - '&e/f map &8- &7Map of the surrounding area, click chunks to claim.'
  351. - '&e/f sethome &8- &7Set your faction home.'
  352. - '&e/f home &8- &7Go to your faction home.'
  353. - '&e/f title &f<playername> <title> &8- &7Set a player''s title, color codes supported.'
  354. - '&e/f ban &8- &7Ban a member from your faction.'
  355. - '&e/f unban &8- &7Unban a member from your faction.'
  356. - '&e/f banlist &8- &7List banned players from your faction.'
  357. - '&e/f lowpower &8- &7List player with power under max from your faction.'
  358. - '&e/f coords &8- &7Broadcast your location to your faction.'
  359. - '&e/f showclaims &8- &7List all claims from your faction.'
  360. - '&7&m--------------------&r &e/f help 2 &7&m-----------------------'
  361. '2':
  362. - '&7&m----------------------------------------------------'
  363. - '&6&lFactions Help &8- &f(2/2) '
  364. - '&7&m----------------------------------------------------'
  365. - '&e/f leave &8- &7Leave your faction.'
  366. - '&e/f invite &f<playerName> &8- &7Invite a player to your faction.'
  367. - '&e/f deinvite &f<playerName> &8- &7Revoke invitation to player.'
  368. - '&e/f claim &8- &7Claim a land for your faction.'
  369. - '&e/f unclaim &8- &7Unclaim land from your faction.'
  370. - '&e/f kick &f<playerName> &8- &7Kick player from your faction.'
  371. - '&e/f mod &f<playerName> &8- &7Set player to mod role in faction.'
  372. - '&e/f coleader &f<playerName> &8- &7Set player to coleader role in faction.'
  373. - '&e/f leader &f<playerName> &8- &7Set player role to leader in faction.'
  374. - '&e/f chat &f<Faction | Ally | Public> &8- &7Switch to Faction/Ally/Public chat.'
  375. - '&e/f warp &8- &7Opens the warp menu.'
  376. - '&e/f setwarp &8- &7Set a warp.'
  377. - '&e/f perms &8- &7Change what players can do in your claims.'
  378. - '&e/f upgrades &8- &7Upgrade various perks in your faction.'
  379. - '&e/f checkpoint &8- &7Set a faction checkpoint.'
  380. - '&e/f tnt add/take &f<amount> &8- &7Faction Based TNT Bank.'
  381. - '&e/f tntfill &f<radius> <amount> &8- &7Tnt fill integrated into the tntbank!'
  382. - '&e/f chest &8- &7Open a virtual faction chest! '
  383. - '&e/f version &8- &7Display current faction version.'
  384. - '&7&m--------------------&r &e/f help 3 &7&m-----------------------'
  385. ############################################################
  386. # +------------------------------------------------------+ #
  387. # | F Permission GUI | #
  388. # +------------------------------------------------------+ #
  389. ############################################################
  390.  
  391. # This is the Faction permissions GUI, it consists of 2 inventories
  392. #
  393. # 1st: The Relation GUI, here you choose which relation you want to set the permission of
  394. # 2nd: The Action GUI, here you define the permission of the clicked Action using click types,
  395. # depending on the click type it will set the permission differently:
  396. # Left Click: ALLOW
  397. # Middle Click: UNDEFINED
  398. # Right Click: DENY
  399. #
  400. #
  401. # The GUI configuration is based off of item placeholders these have specific placeholders that are
  402. # replaced, for example {relation} will be replaced with the relation that the GUI/Item is based on.
  403. # There is also 2 other types of GUI items
  404. #
  405. # 1st: Special items, these include Back button (Has its own item below), and Relation Item
  406. # indicating the current relation (Uses relation item placeholder)
  407. # 2nd: Dummy items, these items server no other purpose than to look good, they have their own
  408. # items defined in dummy items, and can later be assigned to specific slots in the GUI's
  409. fperm-gui:
  410. relation:
  411. # GUI Name
  412. name: 'Faction Permissions'
  413. # Amount of inventory rows, No larger than 5
  414. rows: 4
  415.  
  416. # These are the slots where the relations are going to be placed on the first GUI
  417. # Note: Slots start at 0 and end at one less that GUI size
  418. #Setting a slot to -1 will disable it
  419. slots:
  420. recruit: 10
  421. normal: 12
  422. moderator: 14
  423. coleader: 16
  424. truce: 19
  425. ally: 21
  426. enemy: 23
  427. neutral: 25
  428. # Material to be displayed
  429. materials:
  430. recruit: WOOD_SWORD
  431. normal: GOLD_SWORD
  432. moderator: IRON_SWORD
  433. coleader: DIAMOND_SWORD
  434. truce: IRON_AXE
  435. ally: GOLD_AXE
  436. enemy: DIAMOND_AXE
  437. neutral: WOOD_AXE
  438. # Dummy items using the Items lower down
  439. dummy-items:
  440. '0':
  441. - 0
  442. - 1
  443. - 2
  444. - 3
  445. - 4
  446. - 5
  447. - 6
  448. - 7
  449. - 8
  450. - 9
  451. - 11
  452. - 13
  453. - 15
  454. - 17
  455. - 20
  456. - 22
  457. - 24
  458. - 26
  459. - 17
  460. - 18
  461. - 19
  462. - 26
  463. - 27
  464. - 28
  465. - 29
  466. - 30
  467. - 31
  468. - 32
  469. - 33
  470. - 34
  471. - 35
  472. # This is the item that all relation items are based off of
  473. # Replacing {relation} with relation name eg: Moderator, Ally
  474. # also replaces {relation-color} with relation color eg: Enemy;RED
  475. placeholder-item:
  476. name: '&8[{relation-color}{relation}&8]'
  477. lore:
  478. -
  479. action:
  480. name: 'Faction Permissions'
  481. rows: 6
  482. # If this field exists colorable materials will be updated
  483. # https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/DyeColor.html
  484. access:
  485. allow: LIME
  486. deny: RED
  487. undefined: CYAN
  488. slots:
  489. # Uses same format as above to inform the player of clicked relation
  490. relation: 4
  491. # Back button slot
  492. back: 0
  493. # Start action slots
  494. build: 10
  495. destroy: 11
  496. frost-walk: 12
  497. pain-build: 13
  498. door: 14
  499. button: 15
  500. lever: 16
  501. container: 19
  502. invite: 20
  503. kick: 21
  504. item: 22
  505. sethome: 23
  506. withdraw: 24
  507. territory: 25
  508. access: 28
  509. promote: 29
  510. setwarp: 30
  511. warp: 31
  512. ban: 32
  513. disband: 33
  514. fly: 34
  515. vault: 40
  516. tntbank: 39
  517. tntfill: 41
  518. chest: 42
  519. spawner: 38
  520. home: 49
  521. # Material to show, if the material is colorable eg: Wool, Stained Clay it will update with it's access color
  522. materials:
  523. build: STAINED_GLASS
  524. destroy: STAINED_GLASS
  525. frost-walk: STAINED_GLASS
  526. pain-build: STAINED_GLASS
  527. door: STAINED_GLASS
  528. button: STAINED_GLASS
  529. lever: STAINED_GLASS
  530. container: STAINED_GLASS
  531. invite: STAINED_GLASS
  532. kick: STAINED_GLASS
  533. item: STAINED_GLASS
  534. sethome: STAINED_GLASS
  535. withdraw: STAINED_GLASS
  536. territory: STAINED_GLASS
  537. access: STAINED_GLASS
  538. promote: STAINED_GLASS
  539. setwarp: STAINED_GLASS
  540. warp: STAINED_GLASS
  541. ban: STAINED_GLASS
  542. disband: STAINED_GLASS
  543. fly: STAINED_GLASS
  544. vault: STAINED_GLASS
  545. tntbank: STAINED_GLASS
  546. tntfill: STAINED_GLASS
  547. chest: STAINED_GLASS
  548. spawner: STAINED_GLASS
  549. home: STAINED_GLASS
  550. # Same dummy items format as above
  551. dummy-items:
  552. '0':
  553. - 1
  554. - 2
  555. - 3
  556. - 5
  557. - 6
  558. - 7
  559. - 8
  560. - 9
  561. - 10
  562. - 11
  563. - 12
  564. - 13
  565. - 14
  566. - 15
  567. - 16
  568. - 17
  569. - 18
  570. - 10
  571. - 20
  572. - 21
  573. - 22
  574. - 23
  575. - 24
  576. - 25
  577. - 26
  578. - 27
  579. - 28
  580. - 29
  581. - 30
  582. - 34
  583. - 35
  584. - 36
  585. - 37
  586. - 38
  587. - 39
  588. - 40
  589. - 41
  590. - 42
  591. - 43
  592. - 44
  593. - 45
  594. - 46
  595. - 47
  596. - 48
  597. - 49
  598. - 50
  599. - 51
  600. - 52
  601. - 53
  602. # {action} Action name eg: Setwarp, Kick
  603. # {action-access} Access name eg: Allow, Deny
  604. # {action-access-color} Access color eg: Allow;GREEN
  605. placeholder-item:
  606. name: '&e&l(!) &ePermission: &6&n{action}'
  607. lore:
  608. - ''
  609. - '&6&l * &eStatus: &8[{action-access-color}{action-access}&8]'
  610. - ''
  611. - '&7Left click to &a&nAllow&7.'
  612. - '&7Right click to &c&nDeny&7.'
  613. - '&7Middle click to &7&nUndefine&7.'
  614. # Back item will be take you to the previous GUI
  615. back-item:
  616. name: '&c&l<- Back'
  617. material: ARROW
  618. lore:
  619. - '&7Click to return to previous menu.'
  620. # Dummy Items
  621. dummy-items:
  622. # Dummy Item id, used to set the slots above
  623. '0':
  624. material: STAINED_GLASS_PANE
  625. # Color will only work on colorable materials
  626. color: BLACK
  627. name: ' '
  628. lore:
  629. -
  630. ############################################################
  631. # +------------------------------------------------------+ #
  632. # | Faction Warp GUI | #
  633. # +------------------------------------------------------+ #
  634. ############################################################
  635.  
  636. fwarp-gui:
  637. name: "Faction Warps"
  638. rows: 3
  639. password-timeout: 5
  640. warp-slots:
  641. - 11
  642. - 12
  643. - 13
  644. - 14
  645. - 15
  646. dummy-slots:
  647. '0':
  648. - 0
  649. - 1
  650. - 2
  651. - 3
  652. - 4
  653. - 5
  654. - 6
  655. - 7
  656. - 8
  657. - 9
  658. - 10
  659. - 16
  660. - 17
  661. - 18
  662. - 19
  663. - 20
  664. - 21
  665. - 22
  666. - 23
  667. - 24
  668. - 25
  669. - 26
  670. warp-item:
  671. material: EYE_OF_ENDER
  672. name: "&e&l(!) &eFaction Warp: &6&n{warp}"
  673. # {warp-protected} Warp protection by password, Enabled & Disabled
  674. # {warp-cost} Warp cost
  675. lore:
  676. - ""
  677. - "&6&l * &ePassword: &7{warp-protected}"
  678. - "&6&l * &eCost: &7{warp-cost}"
  679. - ""
  680. - "&c&lNote: &7You need pay to teleport to"
  681. - "&7a faction warp. Unless it's &nDisabled&7."
  682. # Dummy Items
  683. dummy-items:
  684. # Dummy Item id, used to set the slots above
  685. '0':
  686. material: STAINED_GLASS_PANE
  687. # Color will only work on colorable materials
  688. color: BLACK
  689. name: ' '
  690. lore:
  691. -
  692. ############################################################
  693. # +------------------------------------------------------+ #
  694. # | Faction Rules | #
  695. # +------------------------------------------------------+ #
  696. ############################################################
  697. frules:
  698. Enabled: false
  699. default-rules:
  700. - '&cDefault Faction Rules :('
  701. - '&cUse /f rules add <rule> to add a rule'
  702. ############################################################
  703. # +------------------------------------------------------+ #
  704. # | Faction TNT Bank | #
  705. # +------------------------------------------------------+ #
  706. ############################################################
  707. ftnt:
  708. Enabled: false
  709. Bank-Limit: 10000
  710.  
  711. ############################################################
  712. # +------------------------------------------------------+ #
  713. # | Faction PayPal | #
  714. # +------------------------------------------------------+ #
  715. ############################################################
  716. fpaypal:
  717. Enabled: false
  718.  
  719. ############################################################
  720. # +------------------------------------------------------+ #
  721. # | Faction Checkpoints | #
  722. # +------------------------------------------------------+ #
  723. ############################################################
  724. checkpoints:
  725. Enabled: false
  726.  
  727. ############################################################
  728. # +------------------------------------------------------+ #
  729. # | Faction Near | #
  730. # +------------------------------------------------------+ #
  731. ############################################################
  732. fnear:
  733. Enabled: false
  734. Radius: 50
  735.  
  736. ############################################################
  737. # +------------------------------------------------------+ #
  738. # | Faction Focus | #
  739. # +------------------------------------------------------+ #
  740. ############################################################
  741. #Note This will ONLY work if you have SavageFactions Scoreboard Enabled!
  742. ffocus:
  743. Enabled: false
  744. Prefix: '&7»&b'
  745.  
  746. ############################################################
  747. # +------------------------------------------------------+ #
  748. # | Faction Vault | #
  749. # +------------------------------------------------------+ #
  750. fvault:
  751. Enabled: false
  752. No-Hoppers-near-vault: false
  753. Price: 5000
  754. Item:
  755. Name: '&e&l*&f&l*&e&l* &e&lFaction Vault &7(Place) &e&l*&f&l*&e&l*'
  756. Lore:
  757. - '&7Place this vault in your Faction claim, You will'
  758. - '&7then be able to access it.'
  759. - ''
  760. - '&c&lNote: &7Once you have placed your'
  761. - '&7faction vault, Access it by doing /f vault.'
  762.  
  763. ############################################################
  764. # +------------------------------------------------------+ #
  765. # | Faction Chest | #
  766. # +------------------------------------------------------+ #
  767. fchest:
  768. Enabled: false
  769. Inventory-Title: '&2&lFaction Chest'
  770. # Chest size upgrades can be configured in the upgrades section of config
  771.  
  772. ############################################################
  773. # +------------------------------------------------------+ #
  774. # | Faction Upgrades | #
  775. # +------------------------------------------------------+ #
  776. ############################################################
  777. fupgrades:
  778. Enabled: false
  779. MainMenu:
  780. Title: '{faction}''s Upgrade Menu'
  781. DummyItem:
  782. Name: '&f'
  783. Type: STAINED_GLASS_PANE
  784. Amount: 1
  785. Damage: 7
  786. Lore:
  787. - ''
  788. rows: 3
  789. slots:
  790. - 0
  791. - 1
  792. - 2
  793. - 3
  794. - 4
  795. - 5
  796. - 6
  797. - 7
  798. - 8
  799. - 9
  800. - 10
  801. - 11
  802. - 12
  803. - 13
  804. - 14
  805. - 15
  806. - 16
  807. - 17
  808. - 18
  809. - 19
  810. - 20
  811. - 21
  812. - 22
  813. - 23
  814. - 24
  815. - 25
  816. - 26
  817. Crops:
  818. Crop-Boost:
  819. level-1: 10
  820. level-2: 20
  821. level-3: 30
  822. Cost:
  823. level-1: 250000
  824. level-2: 500000
  825. level-3: 750000
  826. CropItem:
  827. Name: '&e&lUpgrade Growth Speed'
  828. Type: WHEAT
  829. Amount: 1
  830. Damage: 0
  831. Lore:
  832. - '&7Increase growth speed of crops in claims.'
  833. - '&7&o(Chance to Grow Two Levels)'
  834. - ''
  835. - '&e&lTier'
  836. - '&f&l* &7Current Level: &n{level}'
  837. - ''
  838. - '&e&lPerks'
  839. - '&f&l* &7Level 1 - &f10% Chance'
  840. - '&7 - Cost: $250,000'
  841. - '&f&l* &7Level 2 - &f20% Chance'
  842. - '&7 - Cost: $500,000'
  843. - '&f&l* &7Level 3 - &f30% Chance'
  844. - '&7 - Cost: $750,000'
  845. - ''
  846. - '&e&lClick to &nUnlock'
  847. slots:
  848. - 10
  849. EXP:
  850. EXP-Boost:
  851. level-1: 1.5
  852. level-2: 2.0
  853. level-3: 2.5
  854. Cost:
  855. level-1: 2000000
  856. level-2: 4000000
  857. level-3: 6000000
  858. EXPItem:
  859. Name: '&e&lUpgrade EXP Drop Rate'
  860. Type: EXP_BOTTLE
  861. Amount: 1
  862. Damage: 0
  863. Lore:
  864. - '&7Increased Vanilla XP gained from monsters.'
  865. - ''
  866. - '&e&lTier'
  867. - '&f&l* &7Current Level: &n{level}'
  868. - ''
  869. - '&e&lPerks'
  870. - '&f&l* &7Level 1 - &f1.5x Multiplier'
  871. - '&7 - Cost: $2,000,000'
  872. - '&f&l* &7Level 2 - &f2.0x Multiplier'
  873. - '&7 - Cost: $4,000,000'
  874. - '&f&l* &7Level 3 - &f2.5x Multiplier'
  875. - '&7 - Cost: $6,000,000'
  876. - ''
  877. - '&e&lClick to &nUnlock'
  878. slots:
  879. - 13
  880. Spawners:
  881. Spawner-Boost:
  882. # This is a Percentage so .10 means 10% lowered spawner delay!
  883. level-1: 0.10
  884. level-2: 0.20
  885. level-3: 0.30
  886. Cost:
  887. level-1: 1000000
  888. level-2: 2000000
  889. level-3: 3000000
  890. SpawnerItem:
  891. Name: '&e&lUpgrade Spawn Rate'
  892. Type: MOB_SPAWNER
  893. Amount: 1
  894. Damage: 0
  895. Lore:
  896. - '&7Decreased mob spawner delay in claims.'
  897. - ''
  898. - '&e&lTier'
  899. - '&f&l* &7Current Level: &n{level}'
  900. - ''
  901. - '&e&lPerks'
  902. - '&f&l* &7Level 1 - &f10% Lower Delay'
  903. - '&7 - Cost: $1,000,000'
  904. - '&f&l* &7Level 2 - &f20% Lower Delay'
  905. - '&7 - Cost: $2,000,000'
  906. - '&f&l* &7Level 3 - &f30% Lower Delay'
  907. - '&7 - Cost: $3,000,000'
  908. - ''
  909. - '&e&lClick to &nUnlock'
  910. slots:
  911. - 16
  912. Chest:
  913. Chest-Size:
  914. # This is rows
  915. level-1: 2
  916. level-2: 3
  917. level-3: 4
  918. Cost:
  919. level-1: 1000000
  920. level-2: 2000000
  921. level-3: 3000000
  922. ChestItem:
  923. Name: '&e&lUpgrade Faction Chest Size'
  924. Type: CHEST
  925. Amount: 1
  926. Damage: 0
  927. Lore:
  928. - '&7Increased Faction Chest Size.'
  929. - ''
  930. - '&e&lTier'
  931. - '&f&l* &7Current Level: &n{level}'
  932. - ''
  933. - '&e&lPerks'
  934. - '&f&l* &7Level 1 - &f2 Rows'
  935. - '&7 - Cost: $1,000,000'
  936. - '&f&l* &7Level 2 - &f3 Rows'
  937. - '&7 - Cost: $2,000,000'
  938. - '&f&l* &7Level 3 - &f4 Rows'
  939. - '&7 - Cost: $3,000,000'
  940. - ''
  941. - '&e&lClick to &nUnlock'
  942. slots:
  943. - 22
  944.  
  945. ############################################################
  946. # +------------------------------------------------------+ #
  947. # | Faction Banners | #
  948. # +------------------------------------------------------+ #
  949. ############################################################
  950. fbanners:
  951. Enabled: true
  952. Item:
  953. Name: '&e&l*&f&l*&e&l* &e&lWar Banner &7(Place) &e&l*&f&l*&e&l*'
  954. Lore:
  955. - '&7Place this banner in the &nWarzone.&7 This'
  956. - '&7will create a &nWarp Point&7 for your faction members.'
  957. - ''
  958. - '&e&lEffects'
  959. - '&e&l* &fStrength II'
  960. - '&e&l* &fSpeed II'
  961. Banner-Cost: 5000 #The amount charged to change a banner into a War Banner
  962. Banner-Time: 60 #IN SECONDS - This is how long the banner will last.
  963. Banner-Place-Cooldown: 300
  964. Banner-Effect-Radius: 16
  965. Effects:
  966. - INCREASE_DAMAGE:2
  967. - SPEED:2
  968. BannerHolo: '&c{Faction}''s War Banner'
  969. Placeable:
  970. Warzone: true
  971. Enemy: true
  972.  
  973. #Title when moving between chunks
  974. Title:
  975. Show-Title: true
  976. # You can configure the time in 1.9 or higher! The values are in seconds
  977. Options:
  978. FadeInTime: 1
  979. ShowTime: 10
  980. FadeOutTime: 1
  981. Format:
  982. Title: '{Faction}'
  983. Subtitle: '{Description}'
  984.  
  985.  
  986. # /f seechunk options
  987. see-chunk:
  988. particles: true
  989. interval: 5
  990.  
  991.  
  992. Tntfill:
  993. max-radius: 0
  994. max-amount: 0
  995.  
  996. # Statistics Engine.
  997. MassiveStats: true
  998.  
  999. ############################################################
  1000. # +------------------------------------------------------+ #
  1001. # | Big List of variables | #
  1002. # +------------------------------------------------------+ #
  1003. ############################################################
  1004. # Fancy variables. Can only be used in /f show
  1005. # - {allies-list} : Lists each faction ally with tooltips
  1006. # - {enemies-list} : Lists each faction enemy with tooltips
  1007. # - {online-list} : Lists all online members with tooltips
  1008. # - {offline-list} : Lists all offline members with tooltips
  1009. # Player variables. Can be used in tooltips.show, scoreboards, or /f show
  1010. # - {group} : Players group
  1011. # - {name} : Players name
  1012. # - {lastSeen} : Last time player was seen (if offline), or just 'Online'
  1013. # - {balance} : Players balance
  1014. # - {player-kills} : # of kills the player has
  1015. # - {player-deaths}: # of deaths the player has
  1016. # Faction variables. Can be used in tooltips.list, scoreboards, or /f show
  1017. # - {header} : Default factions header (ex. /f show)
  1018. # - {faction} : Factions tag (if none, uses lang.yml for factionless name)
  1019. # - {joining} : How to join this faction
  1020. # - {power} : Factions deaths until raidable value
  1021. # - {power-boost} : DTR Symbol based on current DTR (max, regen, frozen, raidable)
  1022. # - {maxPower} : Factions max deaths until raidable value
  1023. # - {chunks} : # of claims faction has (in chunks)
  1024. # - {warps} : # of warps faction has
  1025. # - {description} : Factions description
  1026. # - {create-date} : Date faction was created
  1027. # - {leader} : Faction leader
  1028. # - {land-value} : Value of all claims
  1029. # - {land-refund} : Calculated refund value
  1030. # - {allies} : # of allies faction has
  1031. # - {enemies} : # of enemies faction has
  1032. # - {online} : # of faction members online
  1033. # - {offline} : # of faction members offline
  1034. # - {members} : # of faction members (includes offline)
  1035. # - {faction-balance} : Faction bank balance
  1036. # - {world}, {x}, {y}, {z} : Faction home variables. You don't need to use them all.
  1037. # - {faction-kills} : # of kills the faction has
  1038. # - {faction-deaths}: # of deaths the faction has
  1039. # - {faction-bancount} : # of bans the faction has
  1040. # Faction Permissions GUI variables. Can only be used in GUI
  1041. # - {relation} : Shows relation name (Can be used in action and relation)
  1042. # - {relation-color} : Relation color
  1043. # - {action} : Shows action name (Can only be used in action)
  1044. # - {action-access} : Shows the action's access with current relation
  1045. # - {action-access-color} : Access color
  1046. # General variables. Can be used anywhere.
  1047. # - {total-online} : Total # of players on the server
  1048. # - {max-warps} : Max # of warps a faction can set
  1049. # - {max-allies} : Max # of allies a faction can have
  1050. # - {max-enemies} : Max # of enemies a faction can have
  1051. # - {factionless} : Count of all factionless players online
Add Comment
Please, Sign In to add comment