curiousore.lua 528 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/TimorousDeep/curiousore.lua
  3. Script Purpose : <purpose>
  4. Script Author : <author-name>
  5. Script Date : <date>
  6. Script Notes : <special-instructions>
  7. --]]
  8. function prespawn(NPC)
  9. local random_model = MakeRandomInt(1, 2)
  10. if random_model == 1 then
  11. SpawnSet(NPC, "model_type", 3956)
  12. elseif random_model == 2 then
  13. SpawnSet(NPC, "model_type", 3957)
  14. end
  15. end
  16. function spawn(NPC)
  17. SetRequiredQuest(NPC, 5796, 1)
  18. end
  19. function hailed(NPC, Spawn)
  20. end
  21. function respawn(NPC)
  22. end