12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- --[[
- Script Name : SpawnScripts/qeynos_combined02/SeniorInitiateKaruda.lua
- Script Author : Rylec
- Script Date : 2021.01.31 03:01:11
- Script Purpose :
- :
- --]]
- local count = 1
- function spawn(NPC)
- end
- function hailed(NPC, Spawn)
- if count == 1 then
- stand(NPC, Spawn)
- elseif count > 1 and count < 6 then
- count = count + 1
- Say(NPC, "I still feel shame over my defeat. However, through that defeat, I have learned much about how far even I have to go in my discipline.")
- else
- count = 1
- Say(NPC, "I still feel shame over my defeat. However, through that defeat, I have learned much about how far even I have to go in my discipline.")
- end
- AddTimer(NPC, 60000, "countReset")
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function stand(NPC, Spawn)
- SpawnSet(NPC, "visual_state", "0")
- PlayAnimation(NPC, "539")
- AddTimer(NPC, 2000, "turn", 1, Spawn)
- count = count + 1
- end
- function turn(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- AddTimer(NPC, 2000, "sit")
- end
- function sit(NPC)
- PlayAnimation(NPC, "538")
- AddTimer(NPC, 1200, "sitIdle")
- end
- function sitIdle(NPC)
- SpawnSet(NPC, "visual_state", "540")
- AddTimer(NPC, 1000, "talk")
- end
- function talk(NPC)
- Say(NPC, "I still feel shame over my defeat. However, through that defeat, I have learned much about how far even I have to go in my discipline.")
- end
- function countReset(NPC)
- count = 1
- end
|