obelisk3.lua 670 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/FallenGate/obelisk3.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.09 07:07:50
  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, "Father Hate leads us, Every breath burns with loathing, Our Lord is with us - King Nutaris G'Zel")
  15. end
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end