Empty.lua 422 B

123456789101112131415161718192021
  1. function Init(Quest)
  2. end
  3. function Accepted(Quest, QuestGiver, Player)
  4. -- Add dialog here for when the quest is accepted
  5. end
  6. function Declined(Quest, QuestGiver, Player)
  7. -- Add dialog here for when the quest is declined
  8. end
  9. function Deleted(Quest, QuestGiver, Player)
  10. -- Remove any quest specific items here when the quest is deleted
  11. end
  12. function Reload(Quest, QuestGiver, Player, Step)
  13. end