Advertisement
Guest User

Untitled

a guest
May 25th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. # DayZTP dla MC-PL.net.
  2.  
  3. # Komendy
  4. command /wyczysctp:
  5. description: Komenda do usuwania miejsc teleportacji.
  6. trigger:
  7. if player is op:
  8. delete {dayztplocations::*}
  9. send "&cLista miejsc teleportacji zostala wyczyszczona."
  10.  
  11. command /ustawtp:
  12. description: Komenda do ustawiania lokacji.
  13. trigger:
  14. if player is op:
  15. add location of player to {dayztplocations::*}
  16. send "&cLokacja %location of player% zostala zapisana!"
  17.  
  18. # Eventy
  19. on walking on grass:
  20. if block 2 below the player is bookshelf:
  21. set {_teleport} to random element out of {dayztplocations::*}
  22. teleport event-player to {_teleport}
  23. apply nausea to player for 3 seconds
  24. apply blindness to player for 3 seconds
  25. send "&c&kdayz &cZostales przeteleportowany do swiata zombie! &kdayz"
  26. send "&c&kdayz &cUwazaj na siebie. &kdayz"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement