Untitled
unknown
plain_text
2 years ago
52 kB
13
Indexable
database:
# Database backend type, can be set to mysql or sqlite
type: sqlite
# MySQL database host
mySQLHost: localhost
# MySQL connection port number
mySQLPort: 3306
# MySQL database name
mySQLDatabase: db
# MySQL database user
mySQLUser: root
# MySQL user's password
mySQLPassword: ""
# MySQL table names
tableNames:
players: "players"
# Types of economies which will be enabled and possible to use within shops.
# Supported economies:
# - EXP (default Minecraft experience points)
# - VAULT (requires https://www.spigotmc.org/resources/vault.34315/)
# - GEMS_ECONOMY (requires https://www.spigotmc.org/resources/gemseconomy.19655/)
# - GRINGOTTS (requires https://www.spigotmc.org/resources/gringotts.42071/)
# - MYSQL_TOKENS (requires https://www.spigotmc.org/resources/mysql-tokens.7535/)
# - PLAYER_POINTS (requires https://www.spigotmc.org/resources/playerpoints.80745/)
# - TOKEN_ENCHANT (requires https://www.spigotmc.org/resources/tokenenchant.2287/)
# - TOKEN_MANAGER (requires https://www.spigotmc.org/resources/tokenmanager.8610/)
# - VOTING_PLUGIN (requires https://www.spigotmc.org/resources/votingplugin.15358/)
# - GAME_POINTS (requires https://www.spigotmc.org/resources/gamepoints.84121/)
# First position will be the default economy for all shops.
economyTypes:
- VAULT
currencies:
prefixes:
VAULT: ""
# Name of the main GUI
shopMenuName: "#5c0002&lS#88161a&lH#b72c2f&lO#e94246&lP &8| &cSelect a category:"
# Size of the main GUI, valid values are 9, 18, 27, 36, 45 and 54
shopMenuSize: 45
# Choose an item to fill the empty slots of menu with
shopMenuFillItem:
material: GRAY_STAINED_GLASS_PANE
name: " "
# Define whether selling all with middle mouse button is enabled
enableSellAll: true
# Define whether the buy GUI with option to select quantity is enabled
enableBuyGUI: true
# Define whether the sell GUI with option to select quantity is enabled
enableSellGUI: true
# Define whether sell all button in SellGUI is enabled (enableSellGUI has to be enabled too)
enableSellGUISellAll: true
# Define whether after closing/buying/selling the shop GUI should be opened again
returnToShop: true
# Define whether the quick buy/sell option should be enabled (amount selection gui will stay open until player closes it)
quickBuySell: false
# Define whether lines containing the %buy% placeholder should be hidden for unbuyable items
hideBuyPriceForUnbuyable: true
# Choose placeholder for the price when hideBuyPriceForUnbuyable is disabled
buyPriceForUnsellablePlaceholder: "-"
# Define whether lines containing the %sell% placeholder should be hidden for unsellable items
hideSellPriceForUnsellable: true
# Choose placeholder for the price when hideSellPriceForUnsellable is disabled
sellPriceForUnsellablePlaceholder: "-"
# Choose actions for mouse clicks inside shops
# Supported click types: all from ClickType enum (https://hub.spigotmc.org/javadocs/spigot/org/bukkit/event/inventory/ClickType.html)
# Supported actions: BUY, SELL, SELL_ALL, NONE
clickActions:
LEFT: BUY
RIGHT: SELL
SHIFT_RIGHT: SELL_ALL
MIDDLE: SELL_ALL
# Maximum amount of enchantments players can add to an item, set to -1 for no limit
maxEnchantments: 3
# Choose whether players should be able to buy enchantments only 1 level higher than current (eg. player has sword with Sharpness 1, they could buy only Sharpness 2)
limitEnchantmentLevelDiff: false
# Define whether the amount selection double click bug fix should be enabled
enableAmountSelectionFix: true
# Define whether players should be able to use sell all option to sell all their items (allowAllSellAllStackSizes = true) or only amount multiplied by the original stack size of the shop item (allowAllSellAllStackSizes = false)
allowAllSellAllStackSizes: false
# Define whether all prices should be rounded up, down, to the nearest whole number or not rounded (valid values are UP, DOWN, NEAREST and NONE)
roundPrices: none
# Define whether main menu (/shop command) should be disabled. The only way to access shops will be to use /shop <id> when you disable it.
disableMainMenu: false
# Choose if different messages should be sent when someone buy/sell items for $0 (MSG_ITEM_BOUGHTFREE, MSG_ITEM_SOLDFREE, MSG_ITEM_SOLDALLFREE)
useDifferentMessagesForFreeItems: true
# Choose if item names should have first letters of their names capitalized, for instance nether brick would become Nether Brick
capitalizeItemNames: true
# Choose the type of price modifiers. (BOTH (permission modifiers have higher priority than command-ones), COMMAND, PERMISSION)
priceModifiersType: BOTH
# Choose if the gui shall be closed after using the Sell All feature
closeGuiAfterSellAll: false
# Choose if bulk buy/sell guis should be opened immediately after clicking an item (enableBuyGUI and enableSellGUI have to be enabled as well and players need the bulk buy/sell permissions)
openBulkGuiImmediately: false
# Choose if players who have the shop opened by console with /shop [player] should be able to access all shops regardless of permissions they have
sudoAllowAllShopsAccess: false
# Choose which items stack size should be capped at 16 inside the amount selection GUI so players can't buy eg. oversized ender pearl stacks
# Format is same as for regular items in shops yaml
itemStackSizeCappedAt:
1:
material: ENDER_PEARL
size: 16
2:
material: SNOWBALL
size: 16
3:
material: EGG
size: 16
4:
material: BUCKET
size: 1
# Choose what gamemodes will prevent players from accessing shops. Valid values: ADVENTURE, CREATIVE, SPECTATOR, SURVIVAL
disableShopsInGamemodes:
- ADVENTURE
- SPECTATOR
# Choose in which worlds players won't be able to access the shop. Same list format as disableShopsInGamemodes
disableShopsInWorlds: []
# Choose whether price modifiers should be displayed in percents instead of decimals (eg. 10% instead of 0.10), remember you will still have to use the decimal way in commands
displayPriceModifiersInPercents: true
# Choose whether the world-specific permission to access shops should be omitted when player has a shop opened with /shop [player] [shop name]
disableSudoWorldPermissionCheck: false
# Choose whether the shop-specific permission to access shops should be omitted when player has a shop opened with /shop [player] [shop name]
disableSudoShopPermissionCheck: false
# Choose sounds for certain GUI actions. Full list is available at https://docs.brcdev.net/#/sounds
sounds:
MAIN_MENU_OPEN: UI_BUTTON_CLICK
SHOP_OPEN: UI_BUTTON_CLICK
SHOP_SELECT_ITEM: UI_BUTTON_CLICK
SHOP_SWITCH_PAGE: ITEM_BOOK_PAGE_TURN
SELL_ITEM: ENTITY_EXPERIENCE_ORB_PICKUP
SELL_ALL_ITEM: ENTITY_EXPERIENCE_ORB_PICKUP
BUY_ITEM: ENTITY_EXPERIENCE_ORB_PICKUP
# Choose predefined settings for all items (will be overriden when set explicitly for an item in shops yaml)
defaultItemSettings:
# Choose whether item meta (name, lore etc.) should be compared when players attempt to sell an item
compareMeta: false
# Choose whether item meta should be removed from an item when it's purchased by a player from the shop
stripItemMeta: false
# Choose whether item model should be compared when players attempt to sell an item
compareModel: true
# Choose whether item damage/durability should be compared when players attempt to sell an item
compareDamage: false
# Choose whether item NBT data should be compared when players attempt to sell an item
compareNbt: false
# Format of item lores in shops, %buy% will be replaced with the buy price and %sell% with sell price
shopItemLoreFormat:
# This lore will be applied to items
item:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- " &f&l✶ #5c0002S#67040aE#720a10L#7d1015L#88161aI#941c1fN#9f2124G #ab272aP#b72c2fR#c43235I#d0373aC#dc3c40E#e94246: &2$&f%sell%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- " &f⇨ &eClick right to &6sell&e!"
- " &f⇨ &cClick middle to &4sell all&c!"
- ""
- "#515251&m "
# This lore will be applied to items in the buy GUI (when enableBuyGUI is set to true)
itemBuyGUI:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
# This lore will be applied to items in the sell GUI (when enableSellGUI is set to true)
itemSellGUI:
- "#515251&m "
- ""
- " &f&l✶ #5c0002S#67040aE#720a10L#7d1015L#88161aI#941c1fN#9f2124G #ab272aP#b72c2fR#c43235I#d0373aC#dc3c40E#e94246: &2$&f%sell%"
- ""
- " &f⇨ &eClick right to &6sell&e!"
- " &f⇨ &cClick middle to &4sell all&c!"
- ""
- "#515251&m "
# This lore will be applied to the sell all button in the sell GUI (when enableSellGUI and enableSellGUISellAll are set to true)
itemSellGUISellAll:
- "#515251&m "
- ""
- " &f&l✶ SELL ALL FOR: &2$&f%sell%"
- ""
- " &f⇨ &eClick to &6sell all&c!"
- ""
- "#515251&m "
# This one to permissions
permission:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
# And this one to enchantments
enchantment:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
# And the last one to commands
command:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
# Logging settings
log:
# Define whether transactions will be logged to the console/main server log
toConsole: true
# Define whether transactions will be logged to a separate log
toFile: false
# Date format of transactions (http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html)
formatDate: "yyyy/MM/dd HH:mm:ss"
# Log message for bought command
formatBuyCommand: "%player% bought %amount% x %command% command for %price% from %shop% shop"
# Log message for bought enchantment
formatBuyEnchantment: "%player% bought %enchantment% enchantment for %price% from %shop% shop"
# Log message for bought permission
formatBuyPermission: "%player% bought %permission% permission for %price% from %shop% shop"
# Log message for bought items
formatBuy: "%player% bought %amount% x %item% for %price% from %shop% shop"
# Log message for sold items
formatSell: "%player% sold %amount% x %item% for %price% to %shop% shop"
# Log message for sold all items
formatSellAll: "%player% sold all %amount% x %item% for %price% to %shop% shop"
# Sell hand command settings
sellHand:
# When set to true, players will be able to sell any quantity of the item (the price will be calculated from the base price)
allowAllQuantities: true
# When set to true, /sell hand will work same way as /sell handall does
sellsAllItems: false
# When set to true, free items (with sell price of $0) will be excluded from being sold using /sell hand and /sell handall
excludeFreeItems: true
# Sell all command settings
sellAll:
# When set to true, players will get a detailed summary with prices of each item stack sold
detailedSummary: false
# Choose if maximal sell price of an item across all shops should be chosen in sell all. Enabling this may affect sell command performance when having lots of shops/items
findMaxSellPrice: true
# When set to true, free items (with sell price of $0) will be excluded from being sold using /sell all
excludeFreeItems: true
buttons:
# "Go back button"
goBack:
item:
material: PLAYER_HEAD
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTM4NTJiZjYxNmYzMWVkNjdjMzdkZTRiMGJhYTJjNWY4ZDhmY2E4MmU3MmRiY2FmY2JhNjY5NTZhODFjNCJ9fX0=
amount: 1
name: "&4↓ &cGo back to categories &4↓"
slot: 49
previousPage:
item:
material: PLAYER_HEAD
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjg0ZjU5NzEzMWJiZTI1ZGMwNThhZjg4OGNiMjk4MzFmNzk1OTliYzY3Yzk1YzgwMjkyNWNlNGFmYmEzMzJmYyJ9fX0=
quantity: 1
name: "&c← &fPrevious page"
slot: 48
nextPage:
item:
material: PLAYER_HEAD
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmNmZTg4NDVhOGQ1ZTYzNWZiODc3MjhjY2M5Mzg5NWQ0MmI0ZmMyZTZhNTNmMWJhNzhjODQ1MjI1ODIyIn19fQ==
quantity: 1
name: "&fNext page &c→"
slot: 50
# Elements of the bulk buy GUI
amountSelectionGUIBulkBuy:
# Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
size: 27
# Fill item
fillItem:
material: BLACK_STAINED_GLASS_PANE
name: " "
# Choose if buttons type should be replaced with the bought item's type
replaceButtonsType: true
# Buttons
buttons:
# "Buy 1 stack" button
buy1:
item:
material: CHEST
quantity: 1
name: "&2✔ &aBuy &f1 stack"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
# Value indicated the amount of stacks
value: 1
slot: 9
# "Buy 2 stacks" button
buy2:
item:
material: CHEST
quantity: 2
name: "&2✔ &aBuy &f2 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
value: 2
slot: 10
# "Buy 3 stacks" button
buy3:
item:
material: CHEST
quantity: 3
name: "&2✔ &aBuy &f3 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
value: 3
slot: 11
# "Buy 4 stacks" button
buy4:
item:
material: CHEST
quantity: 4
name: "&2✔ &aBuy &f4 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
value: 4
slot: 12
# "Buy 5 stacks" button
buy5:
item:
material: CHEST
quantity: 5
name: "&2✔ &aBuy &f5 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
value: 5
slot: 13
# "Buy 6 stacks" button
buy6:
item:
material: CHEST
quantity: 6
name: "&2✔ &aBuy &f6 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
value: 6
slot: 14
# "Buy 7 stacks" button
buy7:
item:
material: CHEST
quantity: 7
name: "&2✔ &aBuy &f7 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
value: 7
slot: 15
# "Buy 8 stacks" button
buy8:
item:
material: CHEST
quantity: 8
name: "&2✔ &aBuy &f8 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
value: 8
slot: 16
# "Buy 9 stacks" button
buy9:
item:
material: CHEST
quantity: 9
name: "&2✔ &aBuy &f9 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002P#67040aU#720a10R#7d1015C#88161aH#941c1fA#9f2124S#ab272aE #b72c2fP#c43235R#d0373aI#dc3c40C#e94246E#e94246: &2$&f%buy%"
- ""
- " &f⇨ &aClick left to &2buy&a!"
- ""
- "#515251&m "
value: 9
slot: 17
# "Cancel" button
cancel:
item:
material: RED_DYE
quantity: 1
name: "&f↳ &cCancel &f↲"
slot: 22
# Elements of the bulk buy GUI
amountSelectionGUIBulkSell:
# Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
size: 27
# Fill item
fillItem:
material: BLACK_STAINED_GLASS_PANE
name: " "
# Choose if buttons type should be replaced with the sold item's type
replaceButtonsType: true
# Buttons
buttons:
# "Sell 1 stack" button
sell1:
item:
material: CHEST
quantity: 1
name: "&4✗ &cSell &f1 stack"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002S#67040aE#720a10L#7d1015L#88161aI#941c1fN#9f2124G #ab272aP#b72c2fR#c43235I#d0373aC#dc3c40E#e94246: &2$&f%sell%"
- ""
- " &f⇨ &eClick right to &6sell&e!"
- ""
- "#515251&m "
# Value indicated the amount of stacks
value: 1
slot: 9
# "Sell 2 stacks" button
sell2:
item:
material: CHEST
quantity: 2
name: "&4✗ &cSell &f2 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002S#67040aE#720a10L#7d1015L#88161aI#941c1fN#9f2124G #ab272aP#b72c2fR#c43235I#d0373aC#dc3c40E#e94246: &2$&f%sell%"
- ""
- " &f⇨ &eClick right to &6sell&e!"
- ""
- "#515251&m "
value: 2
slot: 10
# "Sell 3 stacks" button
sell3:
item:
material: CHEST
quantity: 3
name: "&4✗ &cSell &f3 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002S#67040aE#720a10L#7d1015L#88161aI#941c1fN#9f2124G #ab272aP#b72c2fR#c43235I#d0373aC#dc3c40E#e94246: &2$&f%sell%"
- ""
- " &f⇨ &eClick right to &6sell&e!"
- ""
- "#515251&m "
value: 3
slot: 11
# "Sell 4 stacks" button
sell4:
item:
material: CHEST
quantity: 4
name: "&4✗ &cSell &f4 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002S#67040aE#720a10L#7d1015L#88161aI#941c1fN#9f2124G #ab272aP#b72c2fR#c43235I#d0373aC#dc3c40E#e94246: &2$&f%sell%"
- ""
- " &f⇨ &eClick right to &6sell&e!"
- ""
- "#515251&m "
value: 4
slot: 12
# "Sell 5 stacks" button
sell5:
item:
material: CHEST
quantity: 5
name: "&4✗ &cSell &f5 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002S#67040aE#720a10L#7d1015L#88161aI#941c1fN#9f2124G #ab272aP#b72c2fR#c43235I#d0373aC#dc3c40E#e94246: &2$&f%sell%"
- ""
- " &f⇨ &eClick right to &6sell&e!"
- ""
- "#515251&m "
value: 5
slot: 13
# "Sell 6 stacks" button
sell6:
item:
material: CHEST
quantity: 6
name: "&4✗ &cSell &f6 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002S#67040aE#720a10L#7d1015L#88161aI#941c1fN#9f2124G #ab272aP#b72c2fR#c43235I#d0373aC#dc3c40E#e94246: &2$&f%sell%"
- ""
- " &f⇨ &eClick right to &6sell&e!"
- ""
- "#515251&m "
value: 6
slot: 14
# "Sell 7 stacks" button
sell7:
item:
material: CHEST
quantity: 7
name: "&4✗ &cSell &f7 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002S#67040aE#720a10L#7d1015L#88161aI#941c1fN#9f2124G #ab272aP#b72c2fR#c43235I#d0373aC#dc3c40E#e94246: &2$&f%sell%"
- ""
- " &f⇨ &eClick right to &6sell&e!"
- ""
- "#515251&m "
value: 7
slot: 15
# "Sell 8 stacks" button
sell8:
item:
material: CHEST
quantity: 8
name: "&4✗ &cSell &f8 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002S#67040aE#720a10L#7d1015L#88161aI#941c1fN#9f2124G #ab272aP#b72c2fR#c43235I#d0373aC#dc3c40E#e94246: &2$&f%sell%"
- ""
- " &f⇨ &eClick right to &6sell&e!"
- ""
- "#515251&m "
value: 8
slot: 16
# "Sell 9 stacks" button
sell9:
item:
material: CHEST
quantity: 9
name: "&4✗ &cSell &f9 stacks"
lore:
- "#515251&m "
- ""
- " &f&l✶ #5c0002S#67040aE#720a10L#7d1015L#88161aI#941c1fN#9f2124G #ab272aP#b72c2fR#c43235I#d0373aC#dc3c40E#e94246: &2$&f%sell%"
- ""
- " &f⇨ &eClick right to &6sell&e!"
- ""
- "#515251&m "
value: 9
slot: 17
# "Cancel" button
cancel:
item:
material: RED_DYE
quantity: 1
name: "&f↳ &cCancel &f↲"
slot: 22
# Elements of the regular buy/sell GUI
amountSelectionGUI:
# Size of the GUI, valid values are 9, 18, 27, 36, 45 and 54
size: 45
# Fill item
fillItem:
material: BLACK_STAINED_GLASS_PANE
name: " "
# Slot of the item being bought/sold
itemSlot: 13
# Buttons
buttons:
# "Set to 1" button
set1:
item:
material: RED_STAINED_GLASS_PANE
quantity: 1
name: "&4✗ &cSet to 1"
slot: 9
# "Remove 10" button
remove10:
item:
material: RED_STAINED_GLASS_PANE
quantity: 10
name: "&4✗ &cRemove 10"
slot: 10
# "Remove 1" button
remove1:
item:
material: RED_STAINED_GLASS_PANE
quantity: 1
name: "&4✗ &cRemove 1"
slot: 11
# "Add 1" button
add1:
item:
material: LIME_STAINED_GLASS_PANE
quantity: 1
name: "&2✔ &aAdd 1"
slot: 15
# "Add 10" button
add10:
item:
material: LIME_STAINED_GLASS_PANE
quantity: 10
name: "&2✔ &aAdd 10"
slot: 16
# "Set to 16" button
set16:
item:
material: LIME_STAINED_GLASS_PANE
quantity: 10
name: "&a&lSet to 16"
slot: -1
set64:
item:
material: LIME_STAINED_GLASS_PANE
quantity: 64
name: "&2✔ &aSet to 64"
slot: 17
# "Confirm" button
confirm:
item:
material: LIME_DYE
quantity: 1
name: "&f↳ &aConfirm &f↲"
slot: 29
sellAll:
item:
material: LIGHT_BLUE_DYE
quantity: 1
name: "&f↳ &b&nSell all&r &f↲"
slot: -1
# "Buy more" button
buyMore:
item:
material: YELLOW_DYE
quantity: 1
name: "&f↳ &e&nBuy more&r &f↲"
slot: 31
# "Sell more" button
sellMore:
item:
material: YELLOW_DYE
quantity: 1
name: "&f↳ &e&nSell more&r &f↲"
slot: 31
# "Cancel" button
cancel:
item:
material: RED_DYE
quantity: 1
name: "&f↳ &cCancel &f↲"
slot: 33
shopMenuItems:
# Has to be unique, value doesn't matter
1:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzk1ZDM3OTkzZTU5NDA4MjY3ODQ3MmJmOWQ4NjgyMzQxM2MyNTBkNDMzMmEyYzdkOGM1MmRlNDk3NmIzNjIifX19
name: " &2⛏ #5c0002B#660409U#70090fI#7a0f14L#851418D#8f1a1dI#9a1f22N#a52427G #b0292cB#bb2e31L#c63336O#d2383bC#dd3d41K#e94246S &8| &f( &c364 &7blocks &f)" #14
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy building blocks to"
- " &7build up your amazing structure!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f5 &7- &2$&f7,200"
- " &c➥ &fSelling price range: &2$&f0.02 - &2$&f2.13"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6This category is divided"
- " &c➥ &6into 6 other categories"
- " &c➥ &6with building blocks."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "blocks"
slot: 11
2:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODNkMGIzMjE4OTI0ZjAwNmJiZjY3ZmFiMDk0ZjAwZjU4ZTBkNmY5OWJiODA3YmU2NmM0MzU0MjI5ZmY1NmY4MyJ9fX0=
name: " &d❁ #5c0002C#69060bO#760d12L#841418O#911b1eR #9f2124B#ae282bL#bc2e31O#cb3538C#da3b3fK#e94246S &8| &f( &c160 &7blocks &f)" #11
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy many colorful"
- " &7blocks to use for your hause!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f15 &7- &2$&f24"
- " &c➥ &fSelling price range: &2$&f0.11 - &2$&f1.70"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6This category contains different"
- " &c➥ &6types of color blocks."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "color-blocks"
slot: 12
3:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGNhZjVjYTRjNTFiN2VjMDkwZTc0YmIxNTBiMDdhMjNkYjUwZDViOWI3OWVkYTZhNzE4YmJhMTA0MGIzZWYxOCJ9fX0=
name: " &b✦ #5c0002M#6e080fI#821317N#951c20E#aa2629R#be2f32A#d3393cL#e94246S &8| &f( &c54 &7minerals &f)" #8
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy or sell minerals"
- " &7for a lot of money!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f0.20 &7- &2$&f2,700"
- " &c➥ &fSelling price range: &2$&f0.12 - &2$&f189"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Minerals&7, &6Mineral blocks"
- " &c➥ &6Ores&7, &6Amethyst and moree.."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "minerals"
slot: 13
4:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2E5Yzg3NTM3ODBlYmMzOWMzNTFkYThlZmQ5MWJjZTkwYmQ4Y2NhN2I1MTFmOTNlNzhkZjc1ZjY2MTVjNzlhNiJ9fX0=
name: " &2☄ #5c0002F#88161aO#b72c2fO#e94246D &8| &f( &c39 &7items &f)" #4
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy or sell your food"
- " &7to make decent cash!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f10 &7- &2$&f10,000"
- " &c➥ &fSelling price range: &2$&f0.09 - &2$&f20"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Potato&7, &6Carrot&7, &6Beetroot&7,"
- " &c➥ &6Cookie&7, &6Apples and moree.."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "food"
slot: 14
5:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGQxYjRhYmZkMzRlZTJhMWUzNzk1ZTJiYjI4Y2VkYWY5NDE2MTY5MTM0NzliYTJkNWI3YmZhMWIyMTYxMjhjMCJ9fX0=
name: " &7⌘ #5c0002F#720a10A#88161aR#9f2124M#b72c2fI#d0373aN#e94246G &8| &f( &c36 &7items &f)" #7
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy or sell farming"
- " &7items!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f7 &7- &2$&f1,500"
- " &c➥ &fSelling price range: &2$&f0.06 - &2$&f2.40"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Seeds&7, &6Sugar cane&7, &6Cactus"
- " &c➥ &6Bamboo&7, &6Chorus and moree.."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "farming"
slot: 15
6:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzU0NDNhMWUxYmQ0OTE4M2MyNTMzNWMxMWY1ODM2Mzk0ODVjZDA1MTQxYjdhYzdmYzExOTY1ZDA4MWRlNDBjYiJ9fX0=
name: " &6♆ #5c0002M#6e080fO#821317B #951c20D#aa2629R#be2f32O#d3393cP#e94246S &8| &f( &c26 &7items &f)" #8
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy or sell mob loot"
- " &7to make some good cash!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f2.50 &7- &2$&f7,500"
- " &c➥ &fSelling price range: &2$&f0.11 - &2$&f2.10"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Rotten flesh&7, &6Bone&7, &6Arrow&7,"
- " &c➥ &6Gunpowder&7, &6Phantom membrane&7,"
- " &c➥ &6Slime ball and moree.."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "mob-drops"
slot: 19
7:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGQ4NjIwMjQxMDhjNzg1YmMwZWY3MTk5ZWM3N2M0MDJkYmJmY2M2MjRlOWY0MWY4M2Q4YWVkOGIzOWZkMTMifX19
name: " &c⚔ #5c0002W#650409E#650409A#780e13P#821317O#8b181bN#951c20S #9f2124A#aa2629N#b42b2dD #be2f32T#c93437O#d3393cO#de3d41L#e94246S &8| &f( &c98 &7items &f)" #15
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy the weapons and"
- " &7tools you need!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f10 &7- &2$&f900"
- " &c➥ &fSelling price range: &2$&f0.33"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Pickaxes&7, &6Axes&7, &6Shovels"
- " &c➥ &6Armors&7, &6Effects arrows and moree.."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "weapons-tools"
slot: 20
8:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTAzMjdmYjM0MzE5Zjg5YWM1YWI0OGI0ZDc5MjUxZjEzZjA2N2ViZWE3ZGE1Zjg4Yjc1ZjQ3OWE3Mzg5OTI0ZSJ9fX0=
name: " &5 #5c0002P#720a10O#88161aT#9f2124I#b72c2fO#d0373aN#e94246S &8| &f( &c111 &7potions &f)" #7
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy potions in"
- " &7every possible type!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f250 &7- &2$&f1,650"
- " &c➥ &fSelling price range: &cDisabled"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Potions&7, &6Splash potions&7, &6Lingering"
- " &c➥ &6potions with effects."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "potions"
slot: 21
9:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjkwZjIyN2I3N2NjNjU2NzU5NDg2MGZmMjgyZWZlYmRiMDczY2UwZjA1YjgxZjllNzI5NWZkMGUxZTI3NWVlYyJ9fX0=
name: " &e⚘ #5c0002D#69060bE#760d12C#841418O#911b1eR#9f2124A#ae282bT#bc2e31I#cb3538O#da3b3fN#e94246S &8| &f( &c9101 &7items &f)" #11
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy decorations with"
- " &7which to decorate your places!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f7.50 &7- &2$&f450"
- " &c➥ &fSelling price range: &2$&f0.02 - &2$&f0.88"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Saplings, Grass, Flowers,"
- " &c➥ &6Green plants and moree.."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "decorations"
slot: 22
10:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmExNDc0ZDg5MWQyYTY0N2VlMWFhNzliNTg5NDRhNTZlN2I4M2FiZDliN2NjMTM0ZTQyMGMxYjNhN2M0OTk4In19fQ==
name: " &d✾ #5c0002D#88161aY#b72c2fE#e94246S &8| &f( &c16 &7dyes &f)" #4
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy dyes with which to"
- " &7paint various items!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f5"
- " &c➥ &fSelling price range: &2$&f0.06"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Colored dyes &d:DD"
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "dyes"
slot: 23
11:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmFiNTI2MjQ1YjBmNTlmM2ZkODg5NjIyMTcxOTVjNzZlNzU4ODEyOWI5ZjY1NDYzYTgzYTIzZmQ2MDdmOWY1NCJ9fX0=
name: " &4⚡ #5c0002R#6e080fE#821317D#951c20S#aa2629T#be2f32O#d3393cN#e94246E &8| &f( &c50 &7items &f)" #8
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy redstone equipment"
- " &7to use for any situation!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f8.50 &7- &2$&f50"
- " &c➥ &fSelling price range: &2$&f0.11 - &2$&f0.90"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Pistons&7, &6Lamp&7, &6Dropper"
- " &c➥ &6Hoppers&7, &6Boats and moree.."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "redstone"
slot: 24
12:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGU0YmFhMDRiYTZjMWM2YmFjY2Q5OTcyODU4ZGNiYmY4YTYxZDc3Mzg3MTkzMTMxOWZiM2Y5YjkwNWI0NjY1MSJ9fX0=
name: " &b✿ #5c0002M#67040aI#720a10S#7d1015C#88161aE#941c1fL#9f2124L#ab272aA#b72c2fN#c43235E#d0373aO#dc3c40U#e94246S &8| &f( &c72 &7items &f)" #13
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy miscellaneous"
- " &7items for decorations and more!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f15 &7- &2$&f100,000"
- " &c➥ &fSelling price range: &2$&f0.66 - &2$&f15"
- " &c➥ &fAccess for ranks: &a&lFOR ALL"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Beacons&7, &6Elytra&7, &6Horse armors"
- " &c➥ &6Spyglass&7, &6Name tag and moree.."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "misc"
slot: 25
13:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjYyNjUxODc5ZDg3MDQ5OWRhNTBlMzQwMzY4MDBkZGZmZDUyZjNlNGUxOTkzYzVmYzBmYzgyNWQwMzQ0NmQ4YiJ9fX0=
name: " &5✉ #5c0002E#6c070dN#7d1015C#8e191cH#9f2124A#b1292cN#c43235T#d63a3dE#e94246D &8| &f( &c36 &7books &f)" #9
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy enchanted books"
- " &7with which you enchant items!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f1,500 &7- &2$&f15,000"
- " &c➥ &fSelling price range: &cDisabled"
- " &c➥ &fAccess for ranks: &e&lVIP"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Enchanted books for armor&7,"
- " &c➥ &6swords&7, &6tools&7, &6bows&7, &6fishing"
- " &c➥ &6rods and trident."
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "enchanted"
slot: 30
14:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTNmOWVlZGEzYmEyM2ZlMTQyM2M0MDM2ZTdkZDBhNzQ0NjFkZmY5NmJhZGM1YjJmMmI5ZmFhN2NjMTZmMzgyZiJ9fX0=
name: " &e❂ #5c0002M#720a10O#88161aB #9f2124E#b72c2fG#d0373aG#e94246S &8| &f( &c73 &7eggs &f)" #7
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy legendary mob"
- " &7eggs for spawners!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f200 &7- &2$&f15,000"
- " &c➥ &fSelling price range: &cDisabled"
- " &c➥ &fAccess for ranks: &e&lVIP"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Page 1: &aPassive mobs"
- " &c➥ &6Page 2: &eNeutral mobs"
- " &c➥ &6Page 3: &cHostile mobs"
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "mob-eggs"
slot: 31
15:
item:
material: PLAYER_HEAD
quantity: 1
skin: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODBhZjVmNTcyZjFlNTQyNWJlZjkyNzUyODA3NmY3YjBiNzU1ZmQyYmY1Mjk3YWNkY2U1N2E2NWJkYjg4YjljOCJ9fX0=
name: " &8☯ #5c0002S#6e080fP#821317A#951c20W#aa2629N#be2f32E#d3393cR#e94246S &8| &f( &c69 &7spawners &f)" #8
lore:
- "#515251&m "
- " &f&l✶ #5c0002D#69060bE#760d12S#841418C#911b1eR#9f2124I#ae282bP#bc2e31T#cb3538I#da3b3fO#e94246N &f➛ &7Buy the best money"
- " &7making economy standard here!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fBuying price range: &2$&f2,000 &7- &2$&f150,000"
- " &c➥ &fSelling price range: &cDisabled"
- " &c➥ &fAccess for ranks: &e&lVIP&f&l+"
- ""
- " &f&l✶ #5c0002T#630307H#69060cI#700a10S #770e13C#7f1116A#861519T#8d181cE#941c1fG#9c1f23O#a32326R#ab2629Y #b22a2dC#ba2d30O#c23134N#c93437T#d1383bA#d93b3fI#e13f42N#e94246S#e94246:"
- " &c➥ &6Page 1: &aPassive mob spawners"
- " &c➥ &6Page 2: &eNeutral mob spawners"
- " &c➥ &6Page 3: &cHostile mob spawners"
- ""
- ""
- " &7⇦&c⇦&4⇦ &eClick to see the category! &4⇨&c⇨&7⇨"
- "#515251&m "
shop: "spawners"
slot: 32
16:
item:
material: WRITABLE_BOOK
quantity: 1
type: DUMMY
unbreakable: true
flags:
- HIDE_ATTRIBUTES
name: "&c✎ &8| INFORMATION"
lore:
- "#515251&m "
- ""
- " &f&l✶ &aThis is the server main shop,"
- " &ahere you can buy or sell all"
- " &akinds of blocks and items!"
- ""
- " &f&l✶ #5c0002I#68050bN#740b11F#801216O#8c181cR#991e21M#a62427A#b32a2dT#c03033I#ce3639O#db3c40N#e94246:"
- " &c➥ &fDifficulty: &eMedium"
- " &c➥ &fCurrently items: &61276 items"
- ""
- " &a° &eDo you want to get more money?"
- " &71. &fVote for our server &a/vote"
- " &73. &fSells itemms with &a/sell"
- " &73. &fComplete quests with &a/quests"
- ""
- " &c♚ &6Be wise and become the richest."
- ""
- "#515251&m "
slot: 42
17:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 37
18:
type: special
special: balance
slot: 43
19:
item:
material: RED_STAINED_GLASS_PANE
name: "&r"
slot: 9
20:
item:
material: RED_STAINED_GLASS_PANE
name: "&r"
slot: 18
21:
item:
material: RED_STAINED_GLASS_PANE
name: "&r"
slot: 27
22:
item:
material: RED_STAINED_GLASS_PANE
name: "&r"
slot: 17
23:
item:
material: RED_STAINED_GLASS_PANE
name: "&r"
slot: 26
24:
item:
material: RED_STAINED_GLASS_PANE
name: "&r"
slot: 35
25:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 0
26:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 1
27:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 2
28:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 3
29:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 4
30:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 5
31:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 6
32:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 7
33:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 8
34:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 10
35:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 16
36:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 28
37:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 34
38:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 36
39:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 38
40:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 39
41:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 40
42:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 41
43:
item:
material: PINK_STAINED_GLASS_PANE
name: "&r"
slot: 44
44:
item:
material: WHITE_STAINED_GLASS_PANE
name: "&r"
slot: 29
45:
item:
material: WHITE_STAINED_GLASS_PANE
name: "&r"
slot: 33
specialElements:
balance:
item:
material: SUNFLOWER
quantity: 1
name: "&6✪ &8| #5c0002Y#69060bO#760d12U#841418R #911b1eB#9f2124A#ae282bL#bc2e31A#cb3538N#da3b3fC#e94246E"
lore:
- "#515251&m "
- " &f&l✶ &cYou have &2$&f%balance% &cof money"
- " &cto spend in the server shop."
- ""
- "#515251&m "
Editor is loading...
Leave a Comment