> ## Documentation Index
> Fetch the complete documentation index at: https://docs.canadava.com/llms.txt
> Use this file to discover all available pages before exploring further.

# New Pilot Quickstart

> Set up your vACA pilot account, install required software, link SimBrief, and book your first flight in under 15 minutes

export const Checklist = ({title, items, icon}) => {
  const [checked, setChecked] = useState(Object.fromEntries(items.map((_, i) => [i, false])));
  const toggle = i => setChecked(prev => ({
    ...prev,
    [i]: !prev[i]
  }));
  const done = Object.values(checked).filter(Boolean).length;
  return <div className="kb-checklist">
      <div className="kb-checklist-header">
        <div className="kb-checklist-title">
          {icon && <span className="kb-checklist-icon">{icon}</span>}
          <span>{title}</span>
        </div>
        <span className="kb-checklist-count">{done}/{items.length}</span>
      </div>
      <div className="kb-checklist-items">
        {items.map((item, i) => <button key={i} className={`kb-checklist-item ${checked[i] ? 'checked' : ''}`} onClick={() => toggle(i)}>
            <span className="kb-check-box">
              {checked[i] && <span className="kb-check-mark">✓</span>}
            </span>
            <span className="kb-check-label">{item}</span>
          </button>)}
      </div>
    </div>;
};

## Welcome to Virtual Air Canada Airline

This guide will help you get up and running as a new pilot for Virtual Air Canada Airline (vACA). Follow these steps to start your virtual aviation career with us.

<img className="block dark:hidden" src="https://mintcdn.com/virtualaircanada/XW0ND9ztGm1uFOMi/images/essentials/pilot-portal-light.png?fit=max&auto=format&n=XW0ND9ztGm1uFOMi&q=85&s=cab786808889920e3c93df4a01ce3014" alt="vACA Hero Light" width="2064" height="1104" data-path="images/essentials/pilot-portal-light.png" />

<img className="hidden dark:block" src="https://mintcdn.com/virtualaircanada/XW0ND9ztGm1uFOMi/images/essentials/pilot-portal-dark.png?fit=max&auto=format&n=XW0ND9ztGm1uFOMi&q=85&s=840a700a0197e57c456cb8518ef5bbb4" alt="vACA Hero Dark" width="2064" height="1104" data-path="images/essentials/pilot-portal-dark.png" />

### Quick Setup Steps

<AccordionGroup>
  <Accordion icon="user" title="1. Create your pilot account">
    The first step is to register your pilot account on our platform.

    1. Visit the [Virtual Air Canada Airline registration page](https://app.neoairline.io/portal/aca-cee46b174bfe)
    2. Fill out the registration form with your details
    3. Choose your preferred pilot callsign and ID
    4. Verify your email address to activate your account
  </Accordion>

  <Accordion icon="download" title="2. Download required software">
    To fly with Virtual Air Canada Airline, you'll need the following software:

    #### Required Software

    * **<Tooltip tip="Aircraft Communications Addressing and Reporting System" cta="See glossary" href="/aops/additional-resources/glossary/acars">Pegasus ACARS</Tooltip>** - For flight tracking and reporting
    * **Compatible Flight Simulator** - X-Plane, Microsoft Flight Simulator, or Prepar3D

    Visit our [downloads page](https://canadava.com/software) for direct links and installation instructions.
  </Accordion>

  <Accordion icon="link" title="3. Link your SimBrief account">
    SimBrief is an essential flight planning tool that creates professional <Tooltip tip="Operational Flight Plan" cta="See glossary" href="/aops/additional-resources/glossary/ofp">OFPs</Tooltip>. Linking your account enables automatic flight planning.

    1. Log in to the Pilot Portal
    2. Access your account settings via the User Dropdown
    3. Go to "Social, Online & 3rd Party" section
    4. Connect your Navigraph account

    <Note>
      SimBrief requires a free Navigraph account. OFPs are generated automatically when you book flights.
    </Note>

    For detailed instructions, see our [SimBrief Integration Guide](/essentials/simbrief-integration).
  </Accordion>

  <Accordion icon="plane" title="4. Book your first flight">
    Once your account is created and software is installed:

    1. Log in to the Pilot Hub application
    2. Navigate to the Flight Booking section
    3. Choose from available routes based on your pilot rank
    4. Book your flight and follow the pre-flight instructions
  </Accordion>

  <Accordion icon="clock" title="5. Initial activity requirements">
    As a new pilot, you must meet the following initial activity requirements:

    * **Initial Activity Requirement**: 1 <Tooltip tip="Pilot Report" cta="See glossary" href="/aops/additional-resources/glossary/pirep">PIREP</Tooltip> within 60 days of registration
    * **Reminder**: If the activity requirement is not met, a reminder will be sent after 5 days
    * **Holiday Allowance**: 20 days per year (available only after your account is 20 days old)

    These requirements ensure active participation in our virtual airline community and prevent inactive accounts. If you are unable to meet these requirements, your account will be disabled. However, you can reactivate it by meeting the requirements again.

    <Check>
      There's no additional activity requirement after completing the initial activity requirement.
    </Check>
  </Accordion>
</AccordionGroup>

<Checklist
  title="New Pilot Setup Complete"
  items={[
"Pilot account created and email verified",
"Flight simulator installed",
"Pilot Hub downloaded and installed",
"SimBrief/Navigraph account linked",
"Pegasus ACARS installed",
"First flight booked"
]}
/>

## Essential reading

<Card title="Pilot One-pager" icon="clipboard-list" href="/essentials/pilot-onepager" cta="Read Now" arrow={true}>
  Quick reference guide covering flight booking, procedures, time acceleration rules, and prohibited actions. Read this before your first flight.
</Card>

## Software setup guide

<CardGroup cols={2}>
  <Card title="Pilot Hub Setup" icon="desktop" href="/essentials/pilot-hub" cta="Learn More" arrow={true}>
    Install and configure the Pilot Hub desktop application
  </Card>

  <Card title="ACARS Software Guide" icon="location-dot" href="/essentials/acars-guide" cta="Learn More" arrow={true}>
    Set up the Pegasus ACARS tracking software
  </Card>

  <Card title="Flight Booking" icon="calendar" href="/essentials/booking-flights" cta="Learn More" arrow={true}>
    Learn how to book and prepare for your flights
  </Card>

  <Card title="Pilot Ranks & Progression" icon="ranking-star" href="/operations/ranks" cta="Learn More" arrow={true}>
    Understand the rank structure and how to advance
  </Card>
</CardGroup>

## Need Help?

For assistance with getting started:

<CardGroup cols={2}>
  <Card title="Discord Community" icon="discord" href="https://links.canadava.com/kgNgqfb" cta="Join Discord" arrow={true}>
    Get answers to your questions in our active Discord community
  </Card>

  <Card title="Email Support" icon="envelope" href="mailto:support@canadava.com" cta="Contact Us" arrow={true}>
    Contact our support team for personalized assistance
  </Card>
</CardGroup>

## Frequently Asked Questions

<AccordionGroup>
  <Accordion icon="clock" title="Do I need to fly at the same time as my scheduled flight time in real life?">
    No, you can adjust your sim time to match the flight times. You can do it once you have setup your sim. We suggest adding some buffer to accommodate for boarding and taxi times depending if you fly offline or online.
  </Accordion>

  <Accordion icon="calendar" title="Is there an activity requirement?">
    As a new pilot, you must meet the following initial activity requirements:

    * **Initial Activity Requirement**: 1 <Tooltip tip="Pilot Report" cta="See glossary" href="/aops/additional-resources/glossary/pirep">PIREP</Tooltip> within 60 days of registration
    * **Reminder**: If the activity requirement is not met, a reminder will be sent after 5 days
    * **Holiday Allowance**: 20 days per year (available only after your account is 20 days old)

    There's no additional activity requirement after completing the initial activity requirement.
  </Accordion>

  <Accordion icon="windows" title="Does it work on Microsoft Flight Simulator?">
    Yes, Virtual Air Canada Airline supports Microsoft Flight Simulator. The supported versions include:

    * FS2004
    * FSX
    * MSFS2020
    * MSFS2024

    For more details on system requirements and setup, please check our [Download Software](/get-started/download-software) guide.
  </Accordion>

  <Accordion icon="x" title="Does it work on X-Plane?">
    Yes, Virtual Air Canada Airline fully supports X-Plane. The supported versions include:

    * X-Plane 10
    * X-Plane 11
    * X-Plane 12

    For more details on system requirements and setup, please check our [Download Software](/get-started/download-software) guide.
  </Accordion>

  <Accordion icon="repeat" title="Can I transfer my VA experience from another virtual airline?">
    Yes, you can submit your previous experience under My Profile → Preferences → Apply for Rank Transfer in the Pilot Portal. Adding a link to your VA profile or a screenshot is enough.

    Note that the highest rank we transfer is First Officer.
  </Accordion>

  <Accordion icon="money-bill" title="Is joining vACA Free?">
    100% free! There are no fees to join or participate in Virtual Air Canada Airline.
  </Accordion>

  <Accordion icon="user-pilot" title="Do I need any previous experience flying virtual airlines?">
    No, we are a perfect VA to get started. You can grow your experience flying with Virtual Air Canada Airline. Our community is friendly and supportive of pilots at all experience levels.
  </Accordion>

  <Accordion icon="download" title="Do I need to download any software?">
    Yes, to fully participate you'll need to download our software. You can find our complete [Software Download Guide](/get-started/download-software) guide here.

    That said, you can use our Pilot Portal on your browser if you prefer not to install additional software right away.
  </Accordion>
</AccordionGroup>
