obelisk2.lua 661 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/FallenGate/obelisk2.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.09 07:07:24
  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, "Those above our heads, Exist to be owned by us, Power is our right - Queen Cristanos Thex")
  15. end
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end