Advertisement
SynMonger

Untitled

Jul 26th, 2011
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 5.50 KB | None | 0 0
  1. # The pricelist is what you pay the player for breaking certain blocks
  2. # default is what the player is paid if you don't specify how much a certain block is
  3. # For example if you only have Stone and default setup in your price list then your players
  4. # will get your set price everytime they break stone and if they break any other block they will get your default price
  5. # default is mandatory and must be in the config, if you do not want to use it then set it to zero but
  6. # if you remove it you will crash the plugin.
  7. # The format is:
  8. # <item_name>:
  9. #      price: 0.0
  10. # the item names can be found in the items WurkItItems.txt in the plugin folder but generally
  11. # it is just the grammatically correct item name so stone is "Stone"
  12. # all spaces are replaced with _'s and word after also starts with a capital so cobbelstone stairs is Cobblestone_Stairs
  13. # if you are unsure check the WurkItItems.txt but to use an item it must be written in the config exactly as it is
  14. # in the WurkItItems.txt and it is case-sensitive so if in your config you do this
  15. # sToNe:
  16. #    price: 3.0
  17. # it's not going to work and your stone will just get the default value. It must be "Stone"
  18.  
  19. PriceList:
  20.    default:
  21.       price: 0.0
  22.  
  23.    Diode_Block_Off:
  24.       price: 0.0
  25.  
  26.    Gold_Block:
  27.       price: 3000.0
  28.  
  29.    Sand:
  30.       price: 0.0
  31.  
  32.    Jack_O_Latern:
  33.       price: 3.0
  34.  
  35.    Netherrack:
  36.       price: 0.0
  37.  
  38.    Lapis_Block:
  39.       price: 300.0
  40.  
  41.    Grass:
  42.       price: 0.0
  43.  
  44.    Gravel:
  45.       price: 0.0
  46.  
  47.    Soul_Sand:
  48.       price: 0.0
  49.  
  50.    Locked_Chest:
  51.       price: 0.0
  52.  
  53.    Double_Step:
  54.       price: 0.0
  55.    Red_Rose:
  56.       price: 1.0
  57.  
  58.    Wooden_Stairs:
  59.       price: 0.0
  60.  
  61.    Detector_Rail:
  62.       price: 0.0
  63.  
  64.    Redstone_Torch_On:
  65.       price: 0.0
  66.  
  67.    Sponge:
  68.       price: 0.0
  69.  
  70.    Ladder:
  71.       price: 0.0
  72.  
  73.    Long_Grass:
  74.       price: 0.0
  75.  
  76.    Mob_Spawner:
  77.       price: 30.0
  78.  
  79.    Fire:
  80.       price: 0.0
  81.  
  82.    Sandstone:
  83.       price: 0.0
  84.  
  85.    Lapis_Ore:
  86.       price: 30.0
  87.  
  88.    Red_Mushroom:
  89.       price: 0.0
  90.  
  91.    Iron_Block:
  92.       price: 300.0
  93.  
  94.    Cobblestone_Stairs:
  95.       price: 0.0
  96.  
  97.    Rails:
  98.       price: 0.0
  99.  
  100.    Mossy_Cobblestone:
  101.       price: 3.0
  102.  
  103.    Iron_Ore:
  104.       price: 30.0
  105.  
  106.    Bed:
  107.       price: 0.0
  108.  
  109.    JukeBox:
  110.       price: 0.0
  111.  
  112.    Wooden_Pressure_Plate:
  113.       price: 3.0
  114.  
  115.    Diamond_Block:
  116.       price: 30000.0
  117.  
  118.    Leaves:
  119.       price: 3.0
  120.  
  121.    Sign_Post:
  122.       price: 3.0
  123.  
  124.    Crops:
  125.       price: 3.0
  126.  
  127.    Bedrock:
  128.       price: 3.0
  129.  
  130.    Soil:
  131.       price: 3.0
  132.  
  133.    Wooden_Door:
  134.       price: 3.0
  135.  
  136.    Redstone_Wire:
  137.       price: 3.0
  138.  
  139.    Wool:
  140.       price: 3.0
  141.  
  142.    Ice:
  143.       price: 3.0
  144.  
  145.    Pumpkin:
  146.       price: 3.0
  147.  
  148.    Fence:
  149.       price: 3.0
  150.  
  151.    Sugar_Cane_Block:
  152.       price: 3.0
  153.  
  154.    Dirt:
  155.       price: 3.0
  156.  
  157.    Snow:
  158.       price: 3.0
  159.    Log:
  160.       price: 3.0
  161.  
  162.    Wall_Sign:
  163.       price: 3.0
  164.  
  165.    Coal_Ore:
  166.       price: 30.0
  167.  
  168.    Step:
  169.       price: 3.0
  170.  
  171.    Iron_Door:
  172.       price: 3.0
  173.  
  174.    Web:
  175.       price: 3.0
  176.  
  177.    Dispenser:
  178.       price: 3.0
  179.  
  180.    Work_Bench:
  181.       price: 3.0
  182.  
  183.    Brick:
  184.       price: 3.0
  185.  
  186.    Obsidian:
  187.       price: 3.0
  188.  
  189.    Redstone_Ore:
  190.       price: 30.0
  191.  
  192.    Sapling:
  193.       price: 3.0
  194.  
  195.    Lava:
  196.       price: 3.0
  197.  
  198.    Brown_Mushroom:
  199.       price: 3.0
  200.  
  201.    TNT:
  202.       price: 3.0
  203.  
  204.    Glowing_Redstone_Ore:
  205.       price: 30.0
  206.  
  207.    Lever:
  208.       price: 3.0
  209.  
  210.    Note_block:
  211.       price: 3.0
  212.    
  213.    Cobblestone:
  214.       price: 3.0
  215.  
  216.    Stone_Pressure_Pad:
  217.       price: 3.0
  218.  
  219.    Water:
  220.       price: 3.0
  221.  
  222.    Cactus:
  223.       price: 3.0
  224.  
  225.    Glass:
  226.       price: 3.0
  227.  
  228.    Powered_Rail:
  229.       price: 3.0
  230.  
  231.    Dead_Bush:
  232.       price: 3.0
  233.  
  234.    Stone:
  235.       price: 3.0
  236.  
  237.    Glowstone:
  238.       price: 3.0
  239.  
  240.    Cake_Block:
  241.       price: 3.0
  242.  
  243.    Burning_Furnace:
  244.       price: 3.0
  245.  
  246.    Stationary_Water:
  247.       price: 3.0
  248.  
  249.    Chest:
  250.       price: 3.0
  251.  
  252.    Torch:
  253.       price: 3.0
  254.  
  255.    Gold_Ore:
  256.       price: 300.0
  257.  
  258.    Clay:
  259.       price: 3.0
  260.  
  261.    Diamond_Ore:
  262.       price: 3000.0
  263.  
  264.    Stationary_Lava:
  265.      price: 3.0
  266.  
  267.    Portal:
  268.       price: 3.0
  269.  
  270.    Wood:
  271.       price: 3.0
  272.  
  273.    Redstone_Torch_Off:
  274.       price: 3.0
  275.  
  276.    Furnace:
  277.       price: 3.0
  278.  
  279.    BookShelf:
  280.       price: 3.0
  281.  
  282.    Yellow_Flower:
  283.       price: 30.0
  284.  
  285.    Trap_Door:
  286.       price: 3.0
  287.  
  288.    Stone_Button:
  289.       price: 3.0
  290.  
  291. # Set your message in the message field. Use the text $$ where you want to put your amount
  292. # your currency units are automatically picked up. Coloured messages are currently not supported
  293. # set enabled to false if you do not want to get the payday messages sent to your players.
  294.  
  295. PaydayMessage:
  296.    message: "It's payday! You earned $$"
  297.    enabled: true
  298.  
  299. # The PaydayInterval is how often your players get paid and it is in second. Only put integers (whole numbers) in here
  300. # the placed buffer size dictates how many blocks are recorded as being placed and thus have no value if broken at any one time
  301. # now this placed buffer lives in memory on your server so if you don't want to pwn your server I suggest you keep this modest
  302. # at a guess I'd say 500 is reasonable for most servers without causing too much trouble but if you find you are getting
  303. # performance issues after installing this plugin then I'd say reduce the buffer size
  304. # by default the buffer runs a moving window so when it hits the max size the first entry is deleted to make room for the last one
  305. # the buffer is cleared by default whenever there is a payday but if you want to keep your rolling window constant then change
  306. # your clearBufferOnPayday value to false. Its true by default to give your poor server memory a break from time to time
  307. # rather than being at max capacity all the time but if you think your server can hack it then you can set it there
  308.  
  309. PaydayInterval:
  310.    interval: 60
  311.    placedBufferSize: 500
  312.    clearBufferOnPayday: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement