12345678910111213141516171819202122232425262728 |
- --[[
- Script Name : <script-name>
- Script Purpose : <purpose>
- Script Author : <author-name>
- Script Date : <date>
- Script Notes : <special-instructions>
- --]]
- function spawn(NPC)
- end
- function hailed(NPC, Spawn)
- end
- function respawn(NPC)
- end
- function death(NPC, Spawn)
- rand = math.random(0, 100)
- if rand <= 20 then
- choice = math.random(1, 2)
- if choice == 1 then
- 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)
- else
- Say(NPC, "The others will be back for you.", Spawn)
- end
- end
- end
|