Advertisement
Guest User

Untitled

a guest
Dec 6th, 2020
700
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.27 KB | None | 0 0
  1. database:
  2.  # Database backend type, can be set to mysql or sqlite
  3.   type: sqlite
  4.   # MySQL database host
  5.   mySQLHost: localhost
  6.   # MySQL connection port number
  7.   mySQLPort: 3306
  8.   # MySQL database name
  9.   mySQLDatabase: db
  10.   # MySQL database user
  11.   mySQLUser: root
  12.   # MySQL user's password
  13.   mySQLPassword: ""
  14.   # MySQL table names
  15.   tableNames:
  16.     players: "players"
  17.     temp: "temp"
  18. santaClausEvent:
  19.  # Name of the santa claus entity
  20.   santaName: "&cSanta Claus"
  21.   # Username whose skin will be used for santa claus. Basically you can use whatever you want, here are some with the santa claus skin set: http://i.imgur.com/ULQ0rXf.png
  22.   # IMPORTANT: THIS PLAYER CAN'T BE ONLINE ON THE SERVER! It's recommended to use on of these listed above.
  23.   santaSkin: "brcdev"
  24.   # Choose whether santa should leave a nice snow trail behind him
  25.   enableSnowTrail: true
  26.   # Snow trail updater task interval (in ticks), the lower = the nicer effect but lower performance
  27.   snowTrailUpdateInterval: 10
  28.   # Choose whether santa should drop christmas gifts (configured below in the gifts section)
  29.   enableGiftsDrop: true
  30.   # Choose whether a message should be broadcasted when santa drops a gift
  31.   enableBroadcastOnGiftsDrop: true
  32.   # Choose whether gifts should be dropped in random directions instead of where the santa is looking at (true = random, false = santa's direction)
  33.   giftsDropRandomDirection: true
  34.   # Interval between dropping a gift (in seconds)
  35.   giftsDropInterval: 30
  36.   # Default duration of the santa event (in seconds), it is used when the duration isn't specified in the /christmas start santa [time] command
  37.   defaultDuration: 300
  38.   # Gifts which will be dropped by santa
  39.   gifts:
  40.    # Gift ID, value doesn't matter but has to be unique
  41.     1:
  42.      # Chance to drop this gift (out of total of chances of all gifts listed below, it DOESN'T HAVE to sum up to 1.0)
  43.       chance: 0.6
  44.       # Gift item, more info: https://docs.brcdev.net/#/item-meta
  45.       item:
  46.         material: APPLE
  47.         quantity: 16
  48.     2:
  49.       chance: 0.3
  50.       item:
  51.         material: GOLD_INGOT
  52.         quantity: 16
  53.     3:
  54.       chance: 0.1
  55.       item:
  56.         material: DIAMOND
  57.         quantity: 3
  58.   # Choose whether chunk where's Santa's about to spawn should be force-loaded, it may be performance-heavy but useful for bigger worlds
  59.   forceChunkLoad: true
  60.   # Locations of Santa's random spawns and their chances (optional). More info in the plugin description
  61.   locations: { }
  62. snow:
  63.  # Choose whether snow particle effect will be enabled
  64.   enable: true
  65.   # Choose the snow level. There are 5 levels (1-5)
  66.   level: 1
  67.   # Choose worlds to disable snow effect in (set to [] for none)
  68.   disableInWorlds:
  69.    - world_nether
  70.   # Choose whether snow should be enabled only in WorldGuard regions listed below
  71.   enableOnlyInRegions: false
  72.   # List of WorldGuard regions where the snow should be enabled in
  73.   regions: []
  74. # Choose sounds for certain player actions. Full list is available at https://docs.brcdev.net/#/sounds
  75. sounds:
  76.   ADVENT_CALENDAR_OPEN: UI_BUTTON_CLICK
  77.   ADVENT_CALENDAR_CLAIM: UI_BUTTON_CLICK
  78.   ADVENT_CALENDAR_CANNOTCLAIM: UI_BUTTON_CLICK
  79.   CRACKER_OPEN: ENTITY_GENERIC_EXPLODE
  80.   SANTA_SPAWN: ENTITY_EXPERIENCE_ORB_PICKUP
  81.   SANTA_DESPAWN: ENTITY_EXPERIENCE_ORB_PICKUP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement