IntelligenceOfficerRainus.lua 755 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Freeport/IntelligenceOfficerRainus.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.08.07 06:08:32
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. conversation = CreateConversation()
  13. PlayFlavor(NPC, "intelligence_officer_rainus/fprt_west/quests/intelligence_officer_rainus000.mp3", "", "", 4151098788, 648293692, Spawn)
  14. AddConversationOption(conversation, "Sorry, I'll leave you to your work.")
  15. StartConversation(conversation, NPC, Spawn, "Don't bother me now! Emissary Millia just delivered a new set of reports I need to read over.")
  16. end
  17. function respawn(NPC)
  18. end