aghoulishNerian.lua 462 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Darklight/aghoulishNerian.lua
  3. Script Author : theFoof
  4. Script Date : 2013.11.27 10:11:09
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. local choice = math.random(1,2)
  10. if choice == 1 then
  11. SpawnSet(NPC, "model_type", "14043")
  12. SpawnSet(NPC, "gender", "0")
  13. end
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end