NeezersQuestions.lua 1.7 KB

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : ItemScripts/NeezersQuestions.lua
  3. Script Purpose : Neezer's Questions
  4. Script Author : Scatman
  5. Script Date : 2009.09.27
  6. Script Notes :
  7. --]]
  8. local NEEZERS_SURVEY = 330 -- was 28
  9. function examined(Item, Player)
  10. if HasQuest(Player, NEEZERS_SURVEY) and GetQuestStep(Player, NEEZERS_SURVEY) == 1 then
  11. SetStepComplete(Player, NEEZERS_SURVEY, 1)
  12. end
  13. conversation = CreateConversation()
  14. AddConversationOption(conversation, "Continue Reading", "ContinueReading")
  15. AddConversationOption(conversation, "Put note away.", "CloseItemConversation")
  16. StartDialogConversation(conversation, 2, Item, Player, "It is very important these questions be asked in order and that none of them are skipped. Again, please remember the FIRST word in each person's answer.\n\nQuestion 1: If you were to calibrate a Fizzo Torque Wrench for work in Lavastorm and then attempt precisely the same in Everfrost what difference of calibration would be needed?\n\nQuestion 2: What is the average measurement between Keen and Preen on a Spectromatic Nest-Druther?\n\nQuestion 3: If given a choice in a vote for the new Queen of Qeynos, would you cast your vote for a nut or a bolt?")
  17. end
  18. function ContinueReading(Item, Player)
  19. conversation = CreateConversation()
  20. AddConversationOption(conversation, "Put note away.", "CloseItemConversation")
  21. StartDialogConversation(conversation, 2, Item, Player, "Question 4: Though not yet officially proven, which theory concerning thermodynamic particle acceleration and its correlation to metaphysical tides is widely accepted?\n\nQuestion 5: Isn't Neezer Grund amazing?\n\nQuestion 6: The Banton particle is supposed to generate high amounts of what?")
  22. end