Advertisement
FrostedWeFall

Untitled

Nov 28th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.49 KB | None | 0 0
  1. #
  2. #
  3. #
  4. # PlayerLogs
  5. # by Hyperbyte and hoodoo_
  6. #
  7. #
  8. #
  9. # When you check the logs, time is the time ingame, not in real time.
  10. # PlayerLogs is still in beta so please report bugs.
  11. #
  12. command /playerlogs:
  13. permission: playerlogs.command
  14. permission message: &cYou do not have access to that command.
  15. usage: /playerlogs
  16. aliases: /playerl, /plogs
  17. trigger:
  18. message "&b&lPlayerLogs by Hyperbyte & hoodoo_"
  19. message "&b&lVersion 0.1 Beta"
  20. message ""
  21. message "&b&lPlayerLogs are available here:"
  22. message "&7&lSkript/logs/playerlogs"
  23. message ""
  24.  
  25.  
  26.  
  27.  
  28.  
  29. # World Stats
  30. # Charged Creeper Stats
  31. on creeper power:
  32. log "Creeper Charged: Time %time% Location %location%" to "PlayerLogs/General/creeper"
  33.  
  34. # Chunk Stats
  35. on chunk generate:
  36. log "Chunk Generated: Time: %time%" to "PlayerLogs/General/chunk"
  37. on chunk load:
  38. log "Chunk Loaded: Time: %time%" to "PlayerLogs/General/chunk"
  39. on chunk unload:
  40. log "Chunk Unloaded: Time: %time%" to "PlayerLogs/General/chunk"
  41.  
  42. # Dispenser Stats
  43. on dispense:
  44. log "Item Dispensed: Time %time% Location %location%" to "PlayerLogs/General/dispenser"
  45.  
  46. # Sheep Stats
  47. on sheep eat:
  48. log "Sheep Eating: Time %time% Location %location%" to "PlayerLogs/General/sheep"
  49.  
  50. # Enderman Stats
  51. on enderman place:
  52. log "Enderman Placed Block: Time %time% Location %location%" to "PlayerLogs/General/enderman"
  53.  
  54.  
  55. # Explosion Stats
  56. on explode:
  57. log "Explosion: Time %time% Location %location%" to "PlayerLogs/General/explosion"
  58. on explosion prime:
  59. log "Primed Explosion: Time %time% Location %location%" to "PlayerLogs/General/explosion"
  60.  
  61. # Melting Stats
  62. on fade of ice:
  63. log "Ice Melting: Time %time% Location %location%" to "PlayerLogs/General/melting"
  64. on fade of snow:
  65. log "Snow Melting: Time %time% Location %location%" to "PlayerLogs/General/melting"
  66.  
  67. # Liquid Flow Stats
  68. on flow:
  69. log "Liquid Flowing: Time %time% Location %location%" to "PlayerLogs/General/flow"
  70.  
  71. # Block Formation Stats
  72. on block form:
  73. log "Block Formed: Time %time% Location %location%" to "PlayerLogs/General/blockform"
  74.  
  75. # Growing Stats
  76. on grow:
  77. log "Vegetation Grew: Time %time% Location %location%" to "PlayerLogs/General/growing"
  78.  
  79. # Ignition Stats
  80. on ignition:
  81. log "Block Ignited: Time %time% Location %location%" to "PlayerLogs/General/ignition"
  82.  
  83.  
  84. # Lightning Stats
  85. on lightning:
  86. log "Lightning Struck: Time %time%" to "PlayerLogs/General/lightning"
  87.  
  88. # Block Physics Stats
  89. on block physics:
  90. log "Block Fall: Time %time% Location %location%" to "PlayerLogs/General/blockphysics"
  91.  
  92. # Pig Change Stats
  93. on pig zap:
  94. log "Pig Struck by Lightning: Time %time% Location %location%" to "PlayerLogs/General/pigchange"
  95.  
  96. # Piston Stats
  97. on piston extend:
  98. log "Piston Extended: Time %time% Location %location%" to "PlayerLogs/General/piston"
  99. on piston retract:
  100. log "Piston Retracted: Time %time% Location %location%" to "PlayerLogs/General/piston"
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107. # Player Stats
  108.  
  109. # Bed Stats
  110. on bed enter:
  111. log "Entered Bed: Location: %location% Time: %time%" to "PlayerLogs/Players/%player%/bed"
  112. on bed leave:
  113. log "Entered Bed: Location: %location% Time: %time%" to "PlayerLogs/Players/%player%/bed"
  114.  
  115. # Mining Stats
  116. on block damage:
  117. log "Damaged Block: Location: %location% Time: %time% Block: %block%" to "PlayerLogs/Players/%player%/mine"
  118. on mine:
  119. log "Mined Block: Location %location% Time: %time% Block: %block%" to "PlayerLogs/Players/%player%/mine"
  120. on mine of any ore:
  121. log "Mined Ore: Location %location% Time: %time% Block: %block%" to "PlayerLogs/Players/%player%/mine"
  122.  
  123. # Bucket Stats
  124. on bucket empty:
  125. log "Bucket Emptied: Location: %location% Time: %time%" to "PlayerLogs/Players/%player%/bucket"
  126. on bucket fill:
  127. log "Bucket Filled: Location: %location% Time: %time%" to "PlayerLogs/Players/%player%/bucket"
  128.  
  129. # Command Stats
  130. on command:
  131. log "%complete command%" to "PlayerLogs/Players/%player%/command"
  132.  
  133. # Connection Stats
  134. on connect:
  135. log "Player Connected: Time %time% Player UUID: %UUID of player% Player IP: %IP of player%" to "PlayerLogs/Players/%player%/connection"
  136. on quit:
  137. log "Player Left: Time %time% Player UUID: %UUID of player% Player IP: %IP of player%" to "PlayerLogs/Players/%player%/connection"
  138. on join:
  139. log "Player Joined: Time %time% Player UUID: %UUID of player% Player IP: %IP of player%" to "PlayerLogs/Players/%player%/connection"
  140. on kick:
  141. log "Player Kicked: Time %time% Player UUID: %UUID of player% Player IP: %IP of player%" to "PlayerLogs/Players/%player%/connection"
  142. on first join:
  143. log "Player First Joined: Time %time% Player UUID: %UUID of player% Player IP: %IP of player%" to "PlayerLogs/Players/%player%/connection"
  144.  
  145. # Eating Stats
  146. on consume:
  147. log "Player Ate: Time %time% Location %location%" to "PlayerLogs/Players/%player%/eating"
  148.  
  149. # Crafting Stats
  150. on craft:
  151. log "Player Crafted: Time %time% Location %location%" to "PlayerLogs/Players/%player%/crafting"
  152.  
  153. # Death Stats
  154. on death:
  155. log "Player Died: Time %time% Location %location%" to "PlayerLogs/Players/%player%/death"
  156. on respawn:
  157. log "Player Respawned: Time %time% Location %location%" to "PlayerLogs/Players/%player%/death"
  158.  
  159. # Dropped Item Stats
  160. on drop:
  161. log "Item Dropped: Time %time% Location %location%" to "PlayerLogs/Players/%player%/drops"
  162.  
  163. # Fishing Stats
  164. on fishing:
  165. log "Player Fishing: Time %time% Location %location%" to "PlayerLogs/Players/%player%/fishing"
  166.  
  167. # Gamemode Stats
  168. on gamemode change:
  169. log "Gamemode Changed: Time %time% Location %location%" to "PlayerLogs/Players/%player%/gamemode"
  170.  
  171. # Healing Stats
  172. on heal:
  173. log "Player Healed: Time %time% Location %location%"
  174.  
  175. # Hunger Stats
  176. on hunger meter change:
  177. log "Hunger Meter Changed: Time %time% Location %location%" to "PlayerLogs/Players/%player%/hunger"
  178.  
  179. # Level Stats
  180. on level change:
  181. log "Level Changed: Time %time% Location %location%" to "PlayerLogs/Players/%player%/level"
  182.  
  183. # Item Pickup Stats
  184. on pickup:
  185. log "Item Picked Up: Time %time% Location %location%" to "PlayerLogs/Players/%player%/itempickup"
  186.  
  187. # Block Place Stats
  188. on place:
  189. log "Block Placed: Time %time% Location %location%" to "PlayerLogs/Players/%player%/blockplace"
  190.  
  191. # Portal Stats
  192. on portal enter:
  193. log "Player used Portal: Time %time% Location %location%" to "PlayerLogs/Players/%player%/portal"
  194.  
  195. # Pressure Plate Stats
  196. on stepping on a pressure plate:
  197. log "Pressure Plate Step: Time %time% Location %location%" to "PlayerLogs/Players/%player%/pressureplate"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement