:make_party_member_comment_on_sleep
  if $gameParty.hasCompanion()
    if Managers.Villagers.isVillagerOnParty('Annie')
      Annie "Oh, you're going to bed already?"
    end

    if Managers.Villagers.isVillagerOnParty('Benjamin')
      Benjamin "..."
    end

    if Managers.Villagers.isVillagerOnParty('Brittany')
      Brittany "Oh, you're going to bed already?"
    end

    if Managers.Villagers.isVillagerOnParty('Cindy')
      Cindy "Oh, you're going to bed already?"
    end

    if Managers.Villagers.isVillagerOnParty('Devin')
      Devin "Well, this is awkward..."
    end
    
    if Managers.Villagers.isVillagerOnParty('Julia')
      Julia "..."
    end

    if Managers.Villagers.isVillagerOnParty('Lucas')
      Lucas "What are you doing?"
    end

    if Managers.Villagers.isVillagerOnParty('Nathalia')
      Nathalia "Is that some kind of invitation? No? I'll go home then."
    end

    if Managers.Villagers.isVillagerOnParty('Raphael')
      Raphael "You're going to sleep? I'll go home then."
    end

    if Managers.Villagers.isVillagerOnParty('Stella')
      Stella "You're going to sleep? I'll go home then."
    end

    if Managers.Villagers.isVillagerOnParty('Viktor')
      Viktor "What are you doing?"
    end
  end

:invite_to_hang_out
  # This event is triggered by :show_more_conversation_options
  if-variable friendName == Annie
    include invite_annie_to_hang_out
    return
  end

  if-variable friendName == Benjamin
    include invite_benjamin_to_hang_out
    return
  end

  if-variable friendName == Brittany
    include invite_brittany_to_hang_out
    return
  end

  if-variable friendName == Cindy
    include invite_cindy_to_hang_out
    return
  end

  if-variable friendName == Devin
    include invite_devin_to_hang_out
    return
  end

  if-variable friendName == Julia
    include invite_julia_to_hang_out
    return
  end

  if-variable friendName == Lucas
    include invite_lucas_to_hang_out
    return
  end

  if-variable friendName == Nathalia
    include invite_nathalia_to_hang_out
    return
  end

  if-variable friendName == Raphael
    include invite_raphael_to_hang_out
    return
  end

  if-variable friendName == Stella
    include invite_stella_to_hang_out
    return
  end

  if-variable friendName == Viktor
    include invite_viktor_to_hang_out
    return
  end



