Advertisement
siso_Friends

Untitled

Feb 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.45 KB | None | 0 0
  1. options:
  2. # Change the message if you want.
  3. # You can use these variables: %player%, %player's level%, %player's display name%, and etc.
  4. # メッセージを変更できます。
  5. # これらの変数を使えます: %player%, %player's level%, %player's display name% 等。
  6. join: %player% join the server.
  7. fjoin: Welcome %player% to this server! Hello!
  8. leave: %player% left the server.
  9.  
  10. # Don't change below!
  11. # これより下は変えないでね!
  12.  
  13. on join:
  14. player has played before
  15. set join message to "&e%player%が&6来たみたい"
  16.  
  17. on first join:
  18. set join message to "&e%player%は&d初見ちゃん♡"
  19.  
  20. on quit:
  21. set quit message to "&e%player%が&a他鯖に浮気したぞ、&4&n許さねぇ"
  22. on first join:
  23. teleport the player to the location (-2, 70, -39)
  24. set player's gamemode to adventure
  25. stop
  26. on join:
  27. teleport the player to the location (-2, 70, -39)
  28. set player's gamemode to adventure
  29. clear player's inventory
  30. make console execute command "/effect %player% clear"
  31. stop
  32. on rightclick holding paper:
  33. name of held item contains "てめぇ初見だからって調子乗ってんちゃうぞこの野郎"
  34. message "&eくじを引きました"
  35. remove 1 of held item from player
  36. chance of 50%:
  37. message "&6あたりだよおめでとうあたっても何もないよ調子乗んな"
  38. stop
  39. on walking on emerald block:
  40. push the player forwards at speed 1
  41. push the player upwards at speed 0.8
  42. set {launch.%player%} to true
  43.  
  44. on damage:
  45. if damage cause is fall:
  46. if {launch.%victim%} is true:
  47. set {launch.%victim%} to false
  48. cancel event
  49. on rightclick holding lava bucket:
  50. name of held item contains "&a食べる"
  51. remove 1 of held item from player
  52. apply potion of speed 2 to the player for 10 seconds
  53. stop
  54. on rightclick holding gunpowder:
  55. name of held item contains "死ぬしかない"
  56. kill the player
  57. create a safe explosion of force 5 at player
  58. message "弓使うなってこと"
  59. stop
  60. on rightclick holding brick:
  61. remove 1 of held item from player
  62. apply potion of Resistance 1 to the player for 5 seconds
  63. stop
  64. on rightclick holding bone:
  65. name of held item contains "骨をかじる"
  66. set {_team} to random integer between 1 and 2
  67. if {_team} is 1:
  68. heal the player by 3 hearts
  69. message "&6回復した"
  70. if {_team} is 2:
  71. push the player upwards at speed 30
  72. message "&cなんかようわからんけど飛んだ"
  73. remove 1 of held item from player
  74. on death of player:
  75. strike lightning effect at the victim
  76. give head:3 named "&e%player%'s&bhead" to attacker
  77.  
  78. on rightclick holding player head:
  79. apply potion of Regeneration 2 to the player for 10 seconds
  80. apply potion of Absorption 1 to the player for 120 seconds
  81. apply potion of speed 2 to the player for 10 seconds
  82. remove 1 of player's tool from player's tool
  83.  
  84. on place:
  85. if held item of player is a player head:
  86. cancel event
  87. on rightclick holding paper:
  88. name of held item contains "くじ"
  89. message "&eくじを引きました"
  90. remove 1 of held item from player
  91. chance of 1%:
  92. broadcast "&e%player%&9さんが&aくじで当たり(何もない)を引きました!"
  93. give paper named "&6当たり" to player
  94. stop
  95. on rightclick holding paper:
  96. name of held item contains "くじ"
  97. chance of 0.000001%:
  98. broadcast "&bおめでとうございます!%player%さんはOP付きくじで見事OPを引き当てました!"
  99. op the player
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement