OolimeminosoPindiliana.lua 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : SpawnScripts/Starcrest/OolimeminosoPindiliana.lua
  3. Script Purpose : Oolimeminoso Pindiliana <Alchemist>
  4. Script Author : John Adams
  5. Script Date : 2008.09.23
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. local Mage1 = 5767
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. conversation = CreateConversation()
  17. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_1_1008.mp3", "", "", 0, 0, Spawn)
  18. if GetQuestStep(Spawn,Mage1) <=5 and GetQuestStep(Spawn,Mage1) >=3 then
  19. AddConversationOption(conversation, "The Magister suggested I asked you about what you use your sorcery for.","MageTraining1")
  20. end
  21. AddConversationOption(conversation, "Ok.")
  22. StartConversation(conversation, NPC, Spawn, "Though one sees many things, the unseen are the hardest to find!")
  23. end
  24. function MageTraining1(NPC, Spawn)
  25. FaceTarget(NPC, Spawn)
  26. conversation = CreateConversation()
  27. CastSpell(NPC,455)
  28. AddConversationOption(conversation, "I believe I can handle that.","MageTraining1a")
  29. AddConversationOption(conversation, "Perhaps I should reconsider all of this...")
  30. StartConversation(conversation, NPC, Spawn, "A sorcerer taps into the mana flow and draws the hidden energies that swirl within that maelstrom of forces. By taking these energies, sorcerers simplify their lives, and make their opponent's lives a heck of a lot harder. But along with sorcery's incredible power, comes incredible responsibility. Can you handle this?")
  31. end
  32. function MageTraining1a(NPC, Spawn)
  33. SetStepComplete(Spawn,Mage1,5)
  34. FaceTarget(NPC, Spawn)
  35. conversation = CreateConversation()
  36. PlayFlavor(NPC, "", "", "sniff", 0, 0, Spawn)
  37. AddConversationOption(conversation, "Alright. Thank you for the insight.")
  38. StartConversation(conversation, NPC, Spawn, "Then continue your lessons and prepare for challenges that will test your control. If you should lose control, you may end more than just your life.")
  39. end