Advertisement
gggg1234

Untitled

Dec 8th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.76 KB | None | 0 0
  1. on join:
  2. set the join message to "§e%player%§4が遊びにやってきた。§aゆっくりしていってね!§e/shopでショップが§e見れるよ!"
  3. wait 2 seconds
  4. message "§6ようこそ§b%player%§6さん!!"
  5.  
  6.  
  7. on damage of a player:
  8. attacker is player
  9. message "【!】: §4%attacker%§fが§e%victim%§fに§c%damage%§4ダメージ§f!!" to the attacker
  10.  
  11. on damage:
  12. if victim is not player:
  13. attacker is player
  14. message "§5%attacker%§fが§4%victim%§fに§4%damage%§eダメージ§f与えた" to the attacker
  15.  
  16. on death of a player:
  17. broadcast "§b%victim%§eは&4%attacker%§eに§4ギタギタ§fにされた。"
  18. execute console command "/xp 10 %attacker%"
  19.  
  20. on player respawn:
  21. wait 0.5 seconds
  22. execute console command "/effect %player% minecraft:resistance 10 255 true"
  23. message "§7§l§n[死神様]§f: §a%player%§fは§4リスポーン§fしたため、§e10秒間無敵§fになります。"
  24.  
  25.  
  26. on quit:
  27. set the quit message to "§l§b[Quit§6Plugin§b] §l§n§c%player%§r§fさんが§e星に§f帰った"
  28.  
  29. on chat:
  30. execute console command "/execute %player% ~ ~ ~ /playsound minecraft:entity.item.pickup master @s "
  31.  
  32. on player level change:
  33. broadcast "§b--------------------------"
  34. broadcast "§l§n§c%player%§fさんの§eレベル§fが上がりました! "
  35. broadcast "§b--------------------------"
  36. execute console command "/execute %player% ~ ~ ~ /playsound minecraft:entity.experience_orb.pickup master @s"
  37. execute console command "/execute %player% ~ ~ ~ /give @s emerald 1"
  38.  
  39. on bed enter:
  40. wait 1 seconds
  41. execute console command "/effect %player% minecraft:instant_health 3 255"
  42. execute console command "/effect %player% minecraft:saturation 2 255"
  43.  
  44. on bed leave:
  45. message "あなた: §cベッド§fで寝ころんだら力が湧いてきた。"
  46. message "§l§b§n[プログラム]: §7(§4補足:§f夜しか使えないから夜は積極的にベッドを使おう!!§7)"
  47.  
  48. on sneak toggle:
  49. execute console command "/effect %player% minecraft:saturation 1 1 true"
  50.  
  51. on rightclick with sugar:
  52. name of held item contains "§l§n§4[§l§n§c貴重な糖分§l§n§4]"
  53. execute console command "/clear %player% minecraft:sugar 0 1 {display:{Name:""§l§n§4[§l§n§c貴重な糖分§l§n§4]""}}"
  54. execute console command "/scoreboard players add %player% money 10"
  55. execute console command "/execute %player% ~ ~ ~ /playsound minecraft:entity.zombie.attack_door_wood master @s"
  56.  
  57. on rightclick on a sea lantern:
  58. set {_cd} to difference between {sea.%player%} and now
  59. if {_cd} is less than 10 seconds:
  60. message "§l§n§f[§l§n§bSea§l§n§f]: すでに§4先客§fが来ていたようだ。まだ近くにいる§c可能性§fもある。気を付けよう!"
  61. execute console command "/execute %player% ~ ~ ~ /playsound minecraft:entity.blaze.hurt master @p ~ ~ ~ 1 2"
  62. stop
  63. else:
  64. set {sea.%player%} to now
  65. execute console command "/give %player% emerald 1"
  66. execute console command "/xp 2 %player%"
  67. broadcast "§l§n§f[§l§n§4報告§l§n§f]: §c%player%§fさんが§bSea地点§fにたどり着きました!!"
  68.  
  69. command /resetxp:
  70. description: 経験値を0に戻します(リセット)
  71. usage: /resetxp
  72. permission: resetxp.admin
  73. permission message: あなたは権限をお持ちでないため、使用は制限されています。
  74. executable by: player and console
  75. aliases: /rxp,/rexp
  76. trigger:
  77. execute console command "/xp -1000000l %player%"
  78.  
  79. on rightclick with leather:
  80. name of held item contains "§e【§5革防具§c詰め込み§aセット§e】"
  81. execute console command "/give %player% minecraft:leather_helmet 1 0 {HideFlags:1,display:{Name:""§e頭§f[§4革§f]"",Lore:[""§9耐久力§fには優れている。 §2追加強度§fなどはない。""]},ench:[{id:34,lvl:10}]}"
  82. execute console command "/give %player% minecraft:leather_chestplate 1 0 {HideFlags:1,display:{Name:""§e胸§f[§4革§f]"",Lore:[""§9耐久力§fには優れている。 §2追加強度§fなどはない。""]},ench:[{id:34,lvl:10}]}"
  83. execute console command "/give %player% minecraft:leather_leggings 1 0 {HideFlags:1,display:{Name:""§e腰§f[§4革§f]"",Lore:[""§9耐久力§fには優れている。 §2追加強度§fなどはない。""]},ench:[{id:34,lvl:10}]}"
  84. execute console command "/give %player% minecraft:leather_boots 1 0 {HideFlags:1,display:{Name:""§e足§f[§4革§f]"",Lore:[""§9耐久力§fには優れている。 §2追加強度§fなどはない。""]},ench:[{id:34,lvl:10}]}"
  85. execute console command "/clear %player% minecraft:leather 0 1 {display:{Name:""§e【§5革防具§c詰め込み§aセット§e】""}}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement