AssistantWardenBjerne.lua 767 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/FrostfangSea/AssistantWardenBjerne.lua
  3. Script Purpose : Assistant Warden Bjerne <Housing>
  4. Script Author : theFoof
  5. Script Date : 2013.09.26
  6. Script Notes :
  7. --]]
  8. require"SpawnScripts/FrostfangSea/halas_proximity_cheer"
  9. function spawn(NPC)
  10. SetPlayerProximityFunction(NPC, 10, "ProxCheer")
  11. end
  12. function respawn(NPC)
  13. spawn(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. local choice = math.random(1,2)
  18. if choice == 1 then
  19. PlayFlavor(NPC, "", "We've got the most spacious housing in all of Norrath!", "hello", 1689589577, 4560189, Spawn)
  20. elseif choice == 2 then
  21. PlayFlavor(NPC, "", "Step up and take a tour of our accommodations.", "hello", 1689589577, 4560189, Spawn)
  22. end
  23. end