Advertisement
actuallykane

General Listen Events

Nov 26th, 2018
63,330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.95 KB | None | 0 0
  1. -- es:firstSpawn
  2. AddEventHandler('es:firstSpawn', function(source, user) end)
  3.  
  4. -- es:playerLoaded
  5. AddEventHandler('es:playerLoaded', function(source, user) end)
  6.  
  7. -- es:newPlayerLoaded
  8. AddEventHandler('es:newPlayerLoaded', function(source, user) end)
  9.  
  10. -- es:userCommandRan
  11. AddEventHandler('es:userCommandRan', function(source, command_args, user) end)
  12.  
  13. -- es:commandRan
  14. AddEventHandler('es:commandRan', function(source, command_args, user) end)
  15.  
  16. -- es:adminCommandRan
  17. AddEventHandler('es:adminCommandRan', function(source, command_args, user) end)
  18.  
  19. -- es:invalidCommandHandler
  20. AddEventHandler('es:invalidCommandHandler', function(source, command_args, user) end)
  21.  
  22. -- es:adminCommandFailed
  23. AddEventHandler('es:adminCommandFailed', function(source, command_args, user) end)
  24.  
  25. -- es:chatMessage
  26. AddEventHandler('es:chatMessage', function(source, command_args, user) end)
  27.  
  28. -- es:playerDropped
  29. AddEventHandler('es:playerDropped', function(user) end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement