Advertisement
Guest User

Item Script Events

a guest
Sep 21st, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.60 KB | None | 0 0
  1. function init()
  2.   world.logInfo("[SCRIPTITEM] init")
  3. end
  4.  
  5. function fireTriggered()
  6.   world.logInfo("[SCRIPTITEM] fireTriggered")
  7. end
  8.  
  9. function startTriggered()
  10.   world.logInfo("[SCRIPTITEM] startTriggered")
  11. end
  12.  
  13. function attemptedFire()
  14.   world.logInfo("[SCRIPTITEM] attemptedFire")
  15. end
  16.  
  17. function endFire()
  18.   world.logInfo("[SCRIPTITEM] endFire")
  19. end
  20.  
  21. function triggerWindup()
  22.   world.logInfo("[SCRIPTITEM] triggerWindup")
  23. end
  24.  
  25. function continueFire()
  26.   world.logInfo("[SCRIPTITEM] continueFire")
  27. end
  28.  
  29. function triggerCooldown()
  30.   world.logInfo("[SCRIPTITEM] triggerCooldown")
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement