TestingNPC.lua 414 B

12345678910111213141516
  1. --[[
  2. Script Name : SpawnScripts/Baubbleshire/TestingNPC.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.01.07 06:01:39
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. SetPlayerProximityFunction(NPC, 10, "InRange", "LeaveRange")
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. Say(NPC, "You are currently on step " .. GetQuestStep(Spawn, 5447))
  14. end