Advertisement
Guest User

Untitled

a guest
Jun 15th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. variables:
  2. {Drop.pozwol.} = false
  3. {Ity.daj.} = true
  4. on login:
  5. if {Ity.daj.%player%} is true:
  6. clear player's inventory
  7. give exp bottle named "&aDolacz!" to slot 3 of player's inventory
  8. give nether star named "&eAreny" to slot 5 of player's inventory
  9. give bone named "&6Pety" to slot 7 of player's inventory
  10. else:
  11. stop
  12. command /lobbyity [<text>]:
  13. trigger:
  14. if arg 1 is not set:
  15. send "/lobbyity drop lub wejscie- ustawia drop na true/false lub wejscie na true/false"
  16. if arg 1 is "drop":
  17. if {Drop.pozwol.%player%} is false:
  18. set {Drop.pozwol.%player%} to true
  19. send "drop ustawiono na %{Drop.pozwol.%player%}%"
  20. else:
  21. set {Drop.pozwol.%player%} to false
  22. send "drop ustawiono na %{Drop.pozwol.%player%}%"
  23. if arg 1 is "wejscie":
  24. if {Ity.daj.%player%} is false:
  25. set {Ity.daj.%player%} to true
  26. send "Ity dawane na wejsciu ustawiono na %{Ity.daj.%player%}%"
  27. else:
  28. set {Ity.daj.%player%} to false
  29. send "Ity dawane na wejsciu ustawiono na %{Ity.daj.%player%}%"
  30. on drop:
  31. if {Drop.pozwol.%player%} is false:
  32. cancel the event
  33. clear player's inventory
  34. give exp bottle named "&aDolacz!" to slot 3 of player's inventory
  35. give nether star named "&eAreny" to slot 5 of player's inventory
  36. give bone named "&6Pety" to slot 7 of player's inventory
  37. else:
  38. stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement