obelisk1.lua 665 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/FallenGate/obelisk1.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.09 09:07:13
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function casted_on(NPC, Spawn, SpellName)
  11. if SpellName == 'Read Inscription' then
  12. conversation = CreateConversation()
  13. AddConversationOption(conversation, "Stop reading.")
  14. StartDialogConversation(conversation, 1, NPC, Spawn, "Blood falls from my blade, My foes will be defeated, All vengeance is mine - King Marklov N'Fyr")
  15. end
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end