Facebook
From Perl Pudu, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 125
  1. on rightclick on stone:
  2.         cancel event
  3.         if player's held item is wood pickaxe:
  4.                 command "/give %player% cobblestone 1"
  5.                 send action bar "石を手に入れた" to player
  6.                 command "/playsound minecraft:block.stone.break master %player% ~ ~ ~ 1 2 1"
  7.         else:
  8.                 send action bar "木のツルハシ以上で掘ろう" to player
  9.  
  10. on rightclick on grass block:
  11.         cancel event
  12.         if player's held item is wood hoe:
  13.                 command "/give %player% wheat_seeds 1"
  14.                 send action bar "小麦の種を手に入れた" to player
  15.         else:
  16.                 send action bar "クワで掘ろう" to player