hello_emote.lua 420 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Generic/hello_emote.lua
  3. Script Purpose : performs the hello emote
  4. Script Author : theFoof
  5. Script Date : 2013.9.16
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. hello(NPC, Spawn)
  16. end
  17. function hello(NPC, Spawn)
  18. PlayFlavor(NPC, "", "", "hello", 0, 0 , Spawn)
  19. end