Advertisement
PaffcioStudio

Untitled

Jun 2nd, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.96 KB | None | 0 0
  1. options:
  2.   diamond: 0.002
  3.   emerald: 0.001
  4.   iron: 0.005
  5.   gold: 0.005
  6.   gunpowder: 0.009
  7.   apple: 0.02
  8.   redstone: 0.009
  9.   lapis: 0.007
  10.   coal: 0.02
  11.   sand: 0.04
  12.   magicznaskrzynia: 0.001
  13.  
  14.   vip_diamond: 0.004
  15.   vip_emerald: 0.002
  16.   vip_iron: 0.01
  17.   vip_gold: 0.01
  18.   vip_gunpowder: 2.5
  19.   vip_apple: 0.75
  20.   vip_redstone:  0.018
  21.   vip_lapis: 0.018
  22.   vip_coal: 0.04
  23.   vip_sand: 0.08
  24.   vip_magicznaskrzynia: 0.002
  25.  
  26.   drop_cobble: true
  27.   drop_stone: true
  28.  
  29.   exp_stone: 2
  30.   exp_cobble: 1
  31.  
  32.   vip_uprawnienie: "drop.vip"
  33.  
  34.   msg_diamond: "&6[&3Drop&6]&7 Otrzymujesz 1 diament!"
  35.   msg_emerald: "&6[&3Drop&6]&7 Otrzymujesz 1 emerald!"
  36.   msg_iron: "&6[&3Drop&6]&7 Otrzymujesz 1 zelazo!"
  37.   msg_gold: "&6[&3Drop&6]&7 Otrzymujesz 1 zloto!"
  38.   msg_gunpowder: "&6[&3Drop&6]&7 Otrzymujesz 1 gunpowder!"
  39.   msg_apple: "&6[&3Drop&6]&7 Otrzymujesz 1 jablko!"
  40.   msg_redstone: "&6[&3Drop&6]&7 Otrzymujesz 1 redstone!"
  41.   msg_lapis: "&6[&3Drop&6]&7 Otrzymujesz 1 lapis!"
  42.   msg_coal: "&6[&3Drop&6]&7 Otrzymujesz 1 wegiel!"
  43.   msg_sand: "&6[&3Drop&6]&7 Otrzymujesz 1 piasek!"
  44.   msg_magicznaskrzynia: "&6[&3Drop&6]&7 Otrzymujesz 1 magiczna skrzynie!"
  45.  
  46.  
  47. on mine:
  48.   if event-block is stone:
  49.     if player is holding any pickaxe:
  50.       if {@drop_stone} is true:
  51.         if player has permission {@vip_uprawnienie}:
  52.           cancel event
  53.           set event-block to air
  54.           drop 1 cobblestone
  55.           give 3 xp to the player
  56.        
  57.           chance of {@vip_diamond}:
  58.             drop 1 diamond
  59.             send {@msg_diamond}
  60.             stop
  61.        
  62.           chance of {@vip_emerald}:
  63.             drop 1 emerald
  64.             send {@msg_emerald}
  65.             stop
  66.        
  67.           chance of {@vip_iron}:
  68.             drop 1 iron ore
  69.             send {@msg_iron}
  70.             stop
  71.        
  72.           chance of {@vip_gold}:
  73.             drop 1 gold ore
  74.             send {@msg_gold}
  75.             stop
  76.        
  77.           chance of {@vip_gunpowder}:
  78.             drop 1 gunpowder
  79.             send {@msg_gunpowder}
  80.             stop
  81.        
  82.           chance of {@vip_apple}:
  83.             drop 1 apple
  84.             send {@msg_apple}
  85.             stop
  86.        
  87.           chance of {@vip_redstone}:
  88.             drop 1 redstone dust
  89.             send {@msg_redstone}
  90.             stop
  91.        
  92.           chance of {@vip_lapis}:
  93.             drop 1 lapis lazuli
  94.             send {@msg_lapis}
  95.             stop
  96.        
  97.           chance of {@vip_coal}:
  98.             drop 1 coal
  99.             send {@msg_coal}
  100.             stop
  101.        
  102.           chance of {@vip_sand}:
  103.             drop 1 sand
  104.             send {@msg_sand}
  105.             stop
  106.         else:
  107.           cancel event
  108.           set event-block to air
  109.           drop 1 cobblestone
  110.           give 2 xp to the player
  111.        
  112.           chance of {@diamond}:
  113.             drop 1 diamond
  114.             send {@msg_diamond}
  115.             stop
  116.        
  117.           chance of {@emerald}:
  118.             drop 1 emerald
  119.             send {@msg_emerald}
  120.             stop
  121.        
  122.           chance of {@iron}:
  123.             drop 1 iron ore
  124.             send {@msg_iron}
  125.             stop
  126.        
  127.           chance of {@gold}:
  128.             drop 1 gold ore
  129.             send {@msg_gold}
  130.             stop
  131.        
  132.           chance of {@gunpowder}:
  133.             drop 1 gunpowder
  134.             send {@msg_gunpowder}
  135.             stop
  136.        
  137.           chance of {@apple}:
  138.             drop 1 apple
  139.             send {@msg_apple}
  140.             stop
  141.        
  142.           chance of {@redstone}:
  143.             drop 1 redstone dust
  144.             send {@msg_redstone}
  145.             stop
  146.        
  147.           chance of {@lapis}:
  148.             drop 1 lapis lazuli
  149.             send {@msg_lapis}
  150.             stop
  151.        
  152.           chance of {@coal}:
  153.             drop 1 coal
  154.             send {@msg_coal}
  155.             stop
  156.        
  157.           chance of {@sand}:
  158.             drop 1 sand
  159.             send {@msg_sand}
  160.             stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement