Advertisement
nyaago50000

Untitled

Mar 12th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. options:
  2. logo: &a[&bItemsManager&a]
  3.  
  4. command /drop:
  5. trigger:
  6. if {drop.%player%} is true:
  7. set {drop.%player%} to false
  8. send "{@logo} &eアイテムドロップが無効になっています"
  9. else:
  10. set {drop.%player%} to true
  11. send "{@logo} &eアイテムドロップがアクティブ化されました"
  12.  
  13. command /pickup:
  14. trigger:
  15. if {pickup.%player%} is true:
  16. set {pickup.%player%} to false
  17. send "{@logo} &eアイテムのピックアップが無効になっています"
  18. else:
  19. set {pickup.%player%} to true
  20. send "{@logo} &eアイテムのピックアップが有効になっています"
  21.  
  22. on drop:
  23. if {drop.%player%} is true:
  24. stop
  25.  
  26. on drop:
  27. if {drop.%player%} is false:
  28. cancel event
  29.  
  30. on pickup:
  31. if {pickup.%player%} is true:
  32. stop
  33.  
  34. on pickup:
  35. if {pickup.%player%} is false:
  36. cancel event
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement