anuntamedspirit_female.lua 658 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : SpawnScripts/Darklight/anuntamedspirit_female.lua
  3. Script Purpose : an untamed spirit
  4. Script Author : John Adams
  5. Script Date : 2009.02.01
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function death(NPC, Spawn)
  9. rand = math.random(0, 100)
  10. if rand <= 20 then
  11. choice = math.random(1, 2)
  12. if choice == 1 then
  13. PlayFlavor(NPC, "voiceover/english/ghost_darkelf_base_1/ft/ghost/ghost_darkelf_base_1_1_death_gf_b5958785.mp3", "Hold them and I'll return with others like us!", "", 3769472925, 2964757475, Spawn)
  14. else
  15. Say(NPC, "The others will be back for you.", Spawn)
  16. end
  17. end
  18. end