Rainwander.lua 480 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/WillowWood/Rainwander.lua
  3. Script Purpose : Rainwander <Alchemist>
  4. Script Author : Scatman
  5. Script Date : 2009.09.25
  6. Script Notes :
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericAlchemistVoiceOvers.lua")
  9. function spawn(NPC)
  10. SetInfoStructString(NPC, "action_state", "alchemy_idle")
  11. end
  12. function respawn(NPC)
  13. spawn(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. GenericAlchemistHail(NPC, Spawn, "good")
  18. end