pies.cf

Config

Info on how it works

# If it says "a.b" it means:
a:
  b: 'some value'

# So storage.method is
storage:
  method: 'some value'

# title.score.title is
title:
  score:
    title: 'some value'

# etc, etc...

Prefix & Replay Prefix

prefix: "&8[&6Fastbuilder&8] &7"
replayprefix: "&8[&3Replays&8] &7"

Storage

storage:
  method: 1

Placeholders you can use the messages:`

BungeeCord

bungeecord:
  enabled: false
  a: true
  lobby: lobby
  default_mode: short
  overflow: long
  prevent_login:
    enabled: true
    message: "Fastbuilder is currently full."

Theme

theme:
  color: b
  glass_pane: 3
  items:
    blocks0: 0
    blocks1: 1
    pickaxe: 2
    replay:
      name: "&5Replay &7(Right-Click to use)"
      item: BOOK:0
      slot: 6
    settings:
      name: "&2Settings &7(Right-Click to use)"
      item: EMERALD:0
      slot: 7
    leave:
      name: "&cLeave &7(Right-Click to use)"
      item: EYE_OF_ENDER:0
      slot: 8

Plates

plates:
  short:
    # List all plates, "X Y Z"
    - "26 3 1"
    - "26 3 0"
    - "26 3 -1"
  practice:
    - "26 3 1"
    - "26 3 0"
    - "26 3 -1"

THIS SECTION IS OPTIONAL BUT WILL MAKE PLATES MORE ACCURATE

The offset of each plate base from spawn location, for each mode.

If you do understand what this mean you may want to just leave this out and change it to the following:

plates: {}

Island Jumping

# Island Jumping
# For this feature to work you must use numbers to create your islands.
# EG. /fbmap create short 0
jumping:
  # Mode
  short:
    # Enable / Disable the island jumping feature
    enabled: true
    add: NEGATIVE_Z
    subtract: POSITIVE_Z
    maps: 6

You must have your maps next to each other and called 0, 1, 2, 3, etc… in order

Title

title:
  score:
    # Use [default] for built in
    title: "[default]"
    subtitle: "[default]"

Mode NPC

npc:
  enabled: true
  name: "&eMode Changer"
  # [player_skin] for current player skin
  skin: "[player_skin]"
  # Offset the npc from spawn location
  x: -1
  y: 1
  z: 1
  yaw: -90
  pitch: 0
  # If you want modes such as diag to be different
  mode:
    practice:
      x: -1
      y: 1
      z: -1
      yaw: 90
      pitch: 0

Commands

# These commands will be executed on join and leave arena.
commands:
  enabled:
    join: false
    leave: false
  join_arena:
    - "/DoSomething"
  leave_arena:
    - "/DoSomething"

Modes

modes:
  0:
    # The name of the item in the GUI
    display: "&eShort"
    # The amount of item
    amount: 21
    # The mode it joins
    mode: "short"
    # The item shown
    item: "SANDSTONE:0"
  1:
    display: "&aPractice"
    amount: 5
    mode: "practice"
    item: "SANDSTONE:0"

Max Times

max_times:
  # if a player scores below this time the run will not count
  short: 1

Currency

currency:
  disabled_modes:
    - practice
  display:
    # in guis and stuff
    a: "&2Emeralds"
    # titles or just cool
    b: "&2&lEm&a&ler&2&lal&a&lds"
    # the + colour
    c: "a"
    # this option is the colour of when you score like + x emerlads colour of x
    d: "f"
    # no formatting
    e: "Emeralds"

Messages

messages:
  new_pb: "&a&lGG! You have passed your old best!"

Scoreboard

scoreboard:
  # use <d> for displayname
  leaderboard: "&7<p> &7&l: &e<t>"
  title: '&6&lExample&7&l.&6&lnet'
  scores:
    15: "&a&8&l|"
    14: "&b&8&l| &b&lPersonal best&7&l:"
    13: "&c&8&l| &e%pb%"
    12: "&d&8&l|"
    11: "&e&8&l| &e&lSession&7&l-&6&lTop 3&7&l:"
    10: "&f&8&l| &e%leader_1%"
    9: "&0&8&l| &e%leader_2%"
    8: "&1&8&l| &e%leader_3%"
    7: "&2&8&l|"
    6: "&3&8&l| &2&lEmeralds&7&l:"
    5: "&4&8&l| &e%currency_amount%"
    4: "&5&8&l|"
    3: "&6&8&l| &3&lTime&7&l:"
    2: "&7&8&l| &e%time%"
    1: "&8&8&l &o- &6&oExample.net &8&l&o-"

See Placeholders for placeholders.

Blocks

blocks:
  0:
    # item
    item: "SANDSTONE:0"
    # price (0 = free)
    price: 0

Holograms

holo:
  enabled: true
  offset:
    x: -2
    y: 2
    z: 2
    mode:
      exampleMode:
        x: 2
        y: 2
        z: 5
  lines:
    - "&3Best time: &e%pb%"
    - "&3Bridging Attempts: &e%overall_attempts%"
    - "&3Successful Attempts: &e%successful_attempts%"
    - "&3Failed Attempts: &e%failed_attempts%"

Next Section (Commands)