Advertisement
Guest User

Untitled

a guest
Dec 8th, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.67 KB | None | 0 0
  1. santaClausEvent:
  2.  #Name of the santa claus entity
  3.   santaName: "&cSanta Claus"
  4.   #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
  5.   #IMPORTANT: THIS PLAYER CAN'T BE ONLINE ON THE SERVER! It's recommended to use on of these listed above.
  6.   santaSkin: "brcdev"
  7.   #Choose whether santa should leave a nice snow trail behind him
  8.   enableSnowTrail: true
  9.   #Snow trail updater task interval (in ticks), the lower = the nicer effect but lower performance
  10.   snowTrailUpdateInterval: 10
  11.   #Choose whether santa should drop christmas gifts (configured below in the gifts section)
  12.   enableGiftsDrop: true
  13.   #Choose whether gifts should be dropped in random directions instead of where the santa is looking at (true = random, false = santa's direction)
  14.   giftsDropRandomDirection: true
  15.   #Interval between dropping a gift (in seconds)
  16.   giftsDropInterval: 30
  17.   #Default duration of the santa event (in seconds), it is used when the duration isn't specified in the /christmas start santa [time] command
  18.   defaultDuration: 300
  19.   #Gifts which will be dropped by santa
  20.   gifts:
  21.    #Gift ID, value doesn't matter but has to be unique
  22.     1:
  23.      #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)
  24.       chance: 0.6
  25.       #Gift item, more info: http://wiki.brcdev.net/Item_meta
  26.       item:
  27.         material: APPLE
  28.         quantity: 16
  29.     2:
  30.       chance: 0.3
  31.       item:
  32.         material: GOLD_INGOT
  33.         quantity: 16
  34.     3:
  35.       chance: 0.1
  36.       item:
  37.         material: DIAMOND
  38.         quantity: 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement