Advertisement
PaffcioStudio

Untitled

Jun 2nd, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.97 KB | None | 0 0
  1. options:
  2.   diamond: 0.1
  3.   emerald: 0.5
  4.   iron: 1.5
  5.   gold: 0.25
  6.   gun_powder: 0.9
  7.   apple: 0.75
  8.   ender_pearl: 0.5
  9.   redstone: 1.25
  10.   lapis: 1
  11.   wegiel: 1
  12.   piasek: 1.5
  13.   magiczna_skrzynia: 0.001
  14.  
  15.   vip_diamond: 0.75
  16.   vip_emerald: 0.5
  17.   vip_iron: 1.5
  18.   vip_gold: 0.25
  19.   vip_gun_powder: 2.5
  20.   vip_apple: 0.75
  21.   vip_enderpearl: 0.5
  22.   vip_redstone:  1.25
  23.   vip_lapis: 1.25
  24.   vip_wegiel: 1.5
  25.   vip_piasek: 2.5
  26.   vip_magiczna_skrzynia: 0.001
  27.  
  28.   fortuna_1: true
  29.   fortuna_2: true
  30.   fortuna_3: true
  31.  
  32.   drop_cobble: true
  33.   drop_stone: true
  34.  
  35.   exp_stone: 2
  36.   exp_cobble: 1
  37.  
  38.   # give X xp to the player
  39.  
  40.  
  41.   msg_diamond: "Otrzymujesz 1 diament!"
  42.   msg_emerald: "Otrzymujesz 1 emerald!"
  43.   msg_iron: "Otrzymujesz 1 zelazo!"
  44.   msg_gold: "Otrzymujesz 1 zloto!"
  45.   msg_gun_powder: "Otrzymujesz 1 gunpowder!"
  46.   msg_apple: "Otrzymujesz 1 jablko!"
  47.   msg_ender_pearl: "Otrzymujesz 1 ender pearl!"
  48.   msg_redstone: "Otrzymujesz 1 redstone!"
  49.   msg_lapis: "Otrzymujesz 1 lapis!"
  50.   msg_wegiel: "Otrzymujesz 1 wegiel!"
  51.   msg_piasek: "Otrzymujesz 1 piasek!"
  52.   msg_magiczna_skrzynia: "Otrzymujesz 1 magiczna skrzynie!"
  53.  
  54.  
  55. on mine:
  56.   if event-block is stone:
  57.  
  58.     # SZANSA NA DIAMENT
  59.     chance of {@diamond}:
  60.       cancel event
  61.       set event-block to air
  62.       drop 1 diamond
  63.       drop 1 cobblestone
  64.       send {@msg_diamond}
  65.      
  66.       if player is holding a any pickaxe of fortune 1:
  67.         chance of 33%:
  68.           give 2 xp to the player
  69.           drop 1 diamond
  70.      
  71.       if player is holding a any pickaxe of fortune 2:
  72.         chance of 33%:
  73.           give 2 xp to the player
  74.           drop 1 diamond
  75.          
  76.         chance of 22%:
  77.           give 2 xp to the player
  78.           drop 1 diamond
  79.      
  80.       if player is holding a any pickaxe of fortune 3:
  81.         chance of 33%:
  82.           give 2 xp to the player
  83.           drop 1 diamond
  84.          
  85.         chance of 22%:
  86.           give 2 xp to the player
  87.           drop 1 diamond
  88.          
  89.         chance of 11%:
  90.           give 2 xp to the player
  91.           drop 1 diamond
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.     # SZANSA NA EMERALD
  99.     chance of {@emerald}:
  100.       cancel event
  101.       set event-block to air
  102.       drop 1 emerald
  103.       drop 1 cobblestone
  104.       send {@msg_emerald}
  105.      
  106.       if player is holding a any pickaxe of fortune 1:
  107.         chance of 33%:
  108.           give 2 xp to the player
  109.           drop 1 emerald
  110.      
  111.       if player is holding a any pickaxe of fortune 2:
  112.         chance of 33%:
  113.           give 2 xp to the player
  114.           drop 1 emerald
  115.          
  116.         chance of 22%:
  117.           give 2 xp to the player
  118.           drop 1 emerald
  119.      
  120.       if player is holding a any pickaxe of fortune 3:
  121.         chance of 33%:
  122.           give 2 xp to the player
  123.           drop 1 emerald
  124.          
  125.         chance of 22%:
  126.           give 2 xp to the player
  127.           drop 1 emerald
  128.          
  129.         chance of 11%:
  130.           give 2 xp to the player
  131.           drop 1 emerald
  132.  
  133.  
  134.     # SZANSA NA IRON
  135.     chance of {@iron}:
  136.       cancel event
  137.       set event-block to air
  138.       drop 1 iron ore
  139.       give 2 xp to the player
  140.       send {@msg_iron}
  141.  
  142.     # SZANSA NA GOLD
  143.     chance of {@gold}:
  144.       cancel event
  145.       set event-block to air
  146.       drop 1 gold ore
  147.       give 2 xp to the player
  148.       send {@msg_gold}
  149.  
  150.     # SZANSA NA GUN POWDER
  151.     chance of {@gun_powder}:
  152.       cancel event
  153.       set event-block to air
  154.       drop 1 gunpowder
  155.       give 2 xp to the player
  156.       send {@msg_gun_powder}
  157.  
  158.     # SZANSA NA APPLE
  159.     chance of {@apple}:
  160.       cancel event
  161.       set event-block to air
  162.       drop 1 apple
  163.       give 2 xp to the player
  164.       send {@msg_apple}
  165.  
  166.     # SZANSA NA APPLE
  167.     chance of {@apple}:
  168.       cancel event
  169.       set event-block to air
  170.       drop 1 apple
  171.       give 2 xp to the player
  172.       send {@msg_apple}
  173.  
  174.     # SZANSA NA ENDER PEARL
  175.     chance of {@ender_pearl}:
  176.       cancel event
  177.       set event-block to air
  178.       drop 1 ender pearl
  179.       give 2 xp to the player
  180.       send {@msg_ender_pearl}
  181.  
  182.  
  183.     # SZANSA NA REDSTONE
  184.     chance of {@redstone}:
  185.       cancel event
  186.       set event-block to air
  187.       drop 1 redstone dust
  188.       drop 1 cobblestone
  189.       send {@msg_redstone}
  190.      
  191.       if player is holding a any pickaxe of fortune 1:
  192.         chance of 33%:
  193.           give 2 xp to the player
  194.           drop 1 redstone dust
  195.      
  196.       if player is holding a any pickaxe of fortune 2:
  197.         chance of 33%:
  198.           give 2 xp to the player
  199.           drop 1 redstone dust
  200.          
  201.         chance of 22%:
  202.           give 2 xp to the player
  203.           drop 1 redstone dust
  204.      
  205.       if player is holding a any pickaxe of fortune 3:
  206.         chance of 33%:
  207.           give 2 xp to the player
  208.           drop 1 redstone dust
  209.          
  210.         chance of 22%:
  211.           give 2 xp to the player
  212.           drop 1 redstone dust
  213.          
  214.         chance of 11%:
  215.           give 2 xp to the player
  216.           drop 1 redstone dust
  217.  
  218.  
  219.     # SZANSA NA LAPIS
  220.     chance of {@lapis}:
  221.       cancel event
  222.       set event-block to air
  223.       drop 1 lapis lazuli
  224.       drop 1 cobblestone
  225.       send {@msg_lapis}
  226.      
  227.       if player is holding a any pickaxe of fortune 1:
  228.         chance of 33%:
  229.           give 2 xp to the player
  230.           drop 1 lapis lazuli
  231.      
  232.       if player is holding a any pickaxe of fortune 2:
  233.         chance of 33%:
  234.           give 2 xp to the player
  235.           drop 1 lapis lazuli
  236.          
  237.         chance of 22%:
  238.           give 2 xp to the player
  239.           drop 1 lapis lazuli
  240.      
  241.       if player is holding a any pickaxe of fortune 3:
  242.         chance of 33%:
  243.           give 2 xp to the player
  244.           drop 1 lapis lazuli
  245.          
  246.         chance of 22%:
  247.           give 2 xp to the player
  248.           drop 1 lapis lazuli
  249.          
  250.         chance of 11%:
  251.           give 2 xp to the player
  252.           drop 1 lapis lazuli
  253.  
  254.  
  255.  
  256.     # SZANSA NA WEGIEL
  257.     chance of {@wegiel}:
  258.       cancel event
  259.       set event-block to air
  260.       drop 1 coal
  261.       drop 1 cobblestone
  262.       send {@msg_wegiel}
  263.      
  264.       if player is holding a any pickaxe of fortune 1:
  265.         chance of 33%:
  266.           give 2 xp to the player
  267.           drop 1 coal
  268.      
  269.       if player is holding a any pickaxe of fortune 2:
  270.         chance of 33%:
  271.           give 2 xp to the player
  272.           drop 1 coal
  273.          
  274.         chance of 22%:
  275.           give 2 xp to the player
  276.           drop 1 coal
  277.      
  278.       if player is holding a any pickaxe of fortune 3:
  279.         chance of 33%:
  280.           give 2 xp to the player
  281.           drop 1 coal
  282.          
  283.         chance of 22%:
  284.           give 2 xp to the player
  285.           drop 1 coal
  286.          
  287.         chance of 11%:
  288.           give 2 xp to the player
  289.           drop 1 coal
  290.  
  291.  
  292.     # SZANSA NA PIASEK
  293.     chance of {@piasek}:
  294.       cancel event
  295.       set event-block to air
  296.       drop 1 sand
  297.       give 2 xp to the player
  298.       send {@msg_piasek}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement