1.4-STABLE

------------------------------------------------------------------
No Enderpearls in fly fixed - The option was bugged, so if it was true it would do the opposite.
Improved /f map visuals and title!
Title fadeout time, showtime, and fadeintime options added for 1.9+ servers
Fixed Bug in /f upgrades where the slots option for exp would move the spawner instead.
Added Faction chest, an upgradable shared "enderchest" for factions to share!
Added some more entries into /f help in config.
Added Upgrade for faction chest
Banner pattern storage
------------------------------------------------------------------
This commit is contained in:
ProSavage
2018-05-11 17:47:58 -05:00
parent f30cd44b54
commit d95c80ae5b
18 changed files with 614 additions and 233 deletions

View File

@@ -349,6 +349,7 @@ help:
- '&e/f map &8- &7Map of the surrounding area, click chunks to claim.'
- '&e/f sethome &8- &7Teleport to faction home.'
- '&e/f home &8- &7Set your faction home.'
- '&e/f title &f<playername> <title> &8- &7Set a player''s title, color codes supported.'
- '&e/f ban &8- &7Ban a member from your faction.'
- '&e/f unban &8- &7Unban a member from your faction.'
- '&e/f banlist &8- &7List banned players from your faction.'
@@ -373,9 +374,11 @@ help:
- '&e/f warp &8- &7Opens the warp menu.'
- '&e/f setwarp &8- &7Set a warp.'
- '&e/f perms &8- &7Change what players can do in your claims.'
- '&e/f upgrades &8- &7Upgrade your factions core.'
- '&e/f upgrades &8- &7Upgrade various perks in your faction.'
- '&e/f checkpoint &8- &7Set a faction checkpoint.'
- '&e/f tnt add/take <amount> &8- &7Faction Based TNT Bank.'
- '&e/f tnt add/take &f<amount> &8- &7Faction Based TNT Bank.'
- '&e/f tntfill &f<radius> <amount> &8- &7Tnt fill integrated into the tntbank!'
- '&e/f chest &8- &7Open a virtual faction chest! '
- '&e/f version &8- &7Display current faction version.'
- '&7&m--------------------&r &e/f help 3 &7&m-----------------------'
############################################################
@@ -486,7 +489,6 @@ fperm-gui:
relation: 4
# Back button slot
back: 0
# Start action slots
build: 10
destroy: 11
@@ -500,7 +502,7 @@ fperm-gui:
kick: 21
item: 22
sethome: 23
widthdraw: 24
withdraw: 24
territory: 25
access: 28
promote: 29
@@ -512,6 +514,8 @@ fperm-gui:
vault: 40
tntbank: 39
tntfill: 41
chest: 42
spawner: 38
# Material to show, if the material is colorable eg: Wool, Stained Clay it will update with it's access color
materials:
build: STAINED_GLASS
@@ -526,7 +530,7 @@ fperm-gui:
kick: STAINED_GLASS
item: STAINED_GLASS
sethome: STAINED_GLASS
widthdraw: STAINED_GLASS
withdraw: STAINED_GLASS
territory: STAINED_GLASS
access: STAINED_GLASS
promote: STAINED_GLASS
@@ -538,6 +542,8 @@ fperm-gui:
vault: STAINED_GLASS
tntbank: STAINED_GLASS
tntfill: STAINED_GLASS
chest: STAINED_GLASS
spawner: STAINED_GLASS
# Same dummy items format as above
dummy-items:
'0':
@@ -581,15 +587,6 @@ fperm-gui:
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
# {action} Action name eg: Setwarp, Kick
# {action-access} Access name eg: Allow, Deny
# {action-access-color} Access color eg: Allow;GREEN
@@ -735,6 +732,14 @@ fvault:
############################################################
# +------------------------------------------------------+ #
# | Faction Vault | #
# +------------------------------------------------------+ #
fchest:
Enabled: true
Inventory-Title: '&2&lFaction Chest'
# Vault size upgrades can be configured in the upgrades section of config
############################################################
# +------------------------------------------------------+ #
# | Faction Upgrades | #
# +------------------------------------------------------+ #
############################################################
@@ -873,6 +878,38 @@ fupgrades:
- '&e&lClick to &nUnlock'
slots:
- 16
Chest:
Chest-Size:
# This is rows
level-1: 1
level-2: 2
level-3: 3
Cost:
level-1: 1000000
level-2: 2000000
level-3: 3000000
ChestItem:
Name: '&e&lUpgrade Faction Chest Size'
Type: CHEST
Amount: 1
Damage: 0
Lore:
- '&7Increased Faction Chest Size.'
- ''
- '&e&lTier'
- '&f&l* &7Current Level: &n{level}'
- ''
- '&e&lPerks'
- '&f&l* &7Level 1 - &f2 Rows'
- '&7 - Cost: $1,000,000'
- '&f&l* &7Level 2 - &f3 Rows'
- '&7 - Cost: $2,000,000'
- '&f&l* &7Level 3 - &f4 Rows'
- '&7 - Cost: $3,000,000'
- ''
- '&e&lClick to &nUnlock'
slots:
- 22
fbanners:
Enabled: true
@@ -897,6 +934,11 @@ fbanners:
#Title when moving between chunks
Title:
Show-Title: true
# You can configure the time in 1.9 or higher! The values are in seconds
Options:
FadeInTime: 1
ShowTime: 1
FadeOutTime: 1
Format:
Title: '{Faction}'
Subtitle: '{Description}'

View File

@@ -1,5 +1,5 @@
name: Factions
version: ${project.version}-1.3-STABLE
version: ${project.version}-1.4-STABLE
main: com.massivecraft.factions.P
authors: [Olof Larsson, Brett Flannigan, drtshock, ProSavage]
softdepend: [CoreProtect, PlayerVaults, PlaceholderAPI, MVdWPlaceholderAPI, PermissionsEx, Permissions, Essentials, EssentialsChat, HeroChat, iChat, LocalAreaChat, LWC, nChat, ChatManager, CAPI, AuthMe, Vault, Spout, WorldEdit, WorldGuard, AuthDB, CaptureThePoints, CombatTag, dynmap, FactionsTop]