Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Copyright DarkBlade12 - All rights reserved.
  2. # DarkBlade12 is the developer and respective owner of this plugin.
  3.  
  4. # This section contains general plugin settings
  5. General_Settings:
  6.  # Determines whether the debug mode is enabled (prints error stacktraces in the console)
  7.  # You should only set this to 'true' if you have some problems you can't solve
  8.  Debug_Mode_Enabled: false
  9.  
  10.  # This is the ending of the language file name that will be loaded
  11.  # ItemSlotMachine will attempt to load 'lang_<name>.txt'
  12.  # Built-in names are 'EN' for English and 'DE' for German
  13.  Language_Name: EN
  14.  
  15. # This section contains general slot machine settings
  16. Slot_Machine_Settings:
  17.  # This is the default name for slot machines that will be used for generating ids
  18.  # This string has to contain <num> otherwise it'll automatically add this to the end of this name
  19.  # Please note: <num> can't be in the middle of the name
  20.  Default_Name: slot<num>
  21.  # This section contains settings for the space check upon attempting to build a slot machine
  22.  # The space check will deny building of the slot machine if it finds any block in the area of the slot machine that is not air and not on the ignored blocks list
  23.  Space_Check:
  24.   # Determines whether the space check is enabled
  25.   # If this is set to false building a slot machine will replace EVERY block
  26.   Enabled: true
  27.  
  28.   # This is a list of blocks which are ignored in the space check
  29.   # Block format: <block_id/block_name>
  30.   # Format: <block>(, <block>...)
  31.   Ignored_Blocks: 78, 31
  32.  
  33.  # This section contains settings for the coin which is used to activate a slot machine
  34.  Coin_Settings:
  35.  
  36.   # This is the item that will be used as coin
  37.   # Item format: <item_id/item_name> OR <item_id/item_name>-<data>
  38.   Item: 371#h
  39.  
  40.   # Determines whether only the renamed coin item can be used to activate a slot machine
  41.   Common_Item_Enabled: false
  42.  
  43.   # This is the price for a single coin which is important for purchasing coins
  44.   # This value can be either a point number or a normal number
  45.   Price: 10000
  46.  
  47.  # This section contains settings for the limited usage of slot machines
  48.  Limited_Usage:
  49.   # Determines whether limited use is enabled
  50.   Enabled: true
  51.  
  52.   # This is the maximum amount of slot machines that can be used by ONE player at once
  53.   Amount: 1
  54.  
  55. # This section contains general design settings
  56. Design_Settings:
  57.  # This is the default name for designs that will be used for generating ids
  58.  # This string has to contain <num> otherwise it'll automatically add this to the end of this name
  59.  # Please note: <num> can't be in the middle of the name
  60.  Default_Name: design<num>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement