1c7

PlayerLogs

1c7
Apr 30th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. #
  2. # By @Adxm#1343
  3. #
  4.  
  5. on chat:
  6. log "%player%: %message%" in "pl/%player%/chat.log"
  7. log "[CHAT] %player%: %message%" in "pl/%player%/all.log"
  8. on world change:
  9. log "%player%: Moved to %event-world%" in "pl/%player%/worlds.log"
  10. log "[WORLD] %player%: Moved to %event-world%" in "pl/%player%/all.log"
  11. on join:
  12. log "%player%: %time%" in "pl/%player%/join.log"
  13. log "[JOIN] %player%: %time%" in "pl/%player%/all.log"
  14. on quit:
  15. log "%player%: %time%" in "pl/%player%/leave.log"
  16. log "[LEAVE] %player%: %time%" in "pl/%player%/all.log"
  17. on command:
  18. if executor is a player:
  19. if arguments are set:
  20. log "%player%: %command% %arguments%" in "pl/%player%/commands.log"
  21. log "[COMMAND] %player%: %command% %arguments%" in "pl/%player%/all.log"
  22. else:
  23. log "%player%: %command%" in "pl/%player%/commands.log"
  24. log "[COMMAND] %player%: %command%" in "pl/%player%/all.log"
  25. on break:
  26. log "%player%: %event-block%, %event-location%" in "pl/%player%/break.log"
  27. log "[COMMAND] %player%: %event-block%, %event-location%" in "pl/%player%/all.log"
  28. on place:
  29. log "%player%: %event-block%, %event-location%" in "pl/%player%/place.log"
  30. log "[COMMAND] %player%: %event-block%, %event-location%" in "pl/%player%/all.log"
Advertisement
Add Comment
Please, Sign In to add comment