Wheemangga

Random Skript Manual

May 23rd, 2014 (edited)
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. # Save Item
  2.  
  3. loop all items in the player's inventory:
  4. loop-item is enchanted with efficiency 5
  5. remove loop-item from the player
  6. set {inventory.%player%::*} to items in the player's inventory
  7.  
  8.  
  9. # idk
  10.  
  11. on chat:
  12. player has permission "admin"
  13. set message to "&a%coloured message%"
  14.  
  15. on first join:
  16. set join message to "Welcome %player% to our awesome server!"
  17. on join:
  18. player has played before
  19. set join message to "Welcome back, %player%!"
  20.  
  21. on quit:
  22. set quit message to "%player% left this awesome server!"
  23.  
  24. on death:
  25. set the death message to "%player% died!"
  26.  
  27. #World
  28.  
  29. set weather to clear
  30. weather in "world" is rainy
  31. #Vehicle
  32. vehicle of the player is a minecart
  33. #entity
  34. on rightclick on an entity:
  35. message "This is a %type of clicked entity%!"
  36.  
  37.  
  38. #PLAYER PREFIX
  39. on chat:
  40. cancel event
  41. broadcast "%player's prefix%%player's display name%%player's suffix%: %message%" to the player's world
  42. set the player's prefix to "[<red>Admin<reset>] "
  43. loop items of type ore and log:
  44. block contains loop-item
  45. message "There's at least one %loop-item% in this block"
  46. stop loop
  47. drop all blocks at the player # drops one of every block at the player
  48.  
  49. #ID
  50. message "the ID of %type of the clicked block% is %id of the clicked block%."
  51. #Health
  52. message "You have %health% HP left."
  53. #gamemode
  54.  
  55. player's gamemode is survival
  56. set the player's gamemode to creative
  57.  
  58. #RADIUS
  59.  
  60. kill all creepers in the player's world
  61. send "Psst!" to all players witin 100 meters of the player
  62. give a diamond to all ops
  63. heal all tamed wolves in radius 2000 around {town center}
  64.  
  65. #inventory
  66. add a plank to the player's inventory
  67. clear the player's inventory
  68. remove 5 wool from the inventory of the clicked block
  69.  
  70. #Drops
  71. clear drops
  72. remove 4 planks from the drops
  73. remove drops that contains "NOAME"
Add Comment
Please, Sign In to add comment