goodbookfeedingtheguurok.lua 691 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : goodbookfeedingtheguurok.lua
  3. Script Purpose : Handles the book at the goblin treehouse
  4. Script Author : Jabantiz
  5. Script Date : 9/9/2016
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function casted_on(NPC, Spawn, Message)
  14. if Message == "Read book" then
  15. local con = CreateConversation()
  16. AddConversationOption(con, "Stop reading.", "CloseConversation")
  17. StartDialogConversation(con, 1, NPC, Spawn, "When Guurok near must be fed.\nGuurok eat skills, but not gobbie skulls.\nIt's people! Good thing graveyard near.\nBring more gobbies in case angered!\nSix peoples it needs from on rock.")
  18. end
  19. end