-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add .screenshot, add .msfs + fixes (#22)
* fix: remove "mod" from .installer Swaps "Mod" for "addon" when referring to the A32NX. * Updated the stable and development sections for .versions to bring up to date with the experimental section. * Update .versions as per feedback * add screenshots.ts * update index.ts * add .msfs to refer to msfs support discord/forums * correct spelling in .screenshots * correct spacing in .screenshots
- Loading branch information
1 parent
0d625b7
commit 0fa2904
Showing
5 changed files
with
44 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { CommandDefinition } from '../lib/command'; | ||
import { CommandCategory } from '../constants'; | ||
import { makeEmbed } from '../lib/embed'; | ||
|
||
export const msfs: CommandDefinition = { | ||
name: ['msfs', 'msfsforum'], | ||
description: 'Provides links to MSFS support for sim issues', | ||
category: CommandCategory.FBW, | ||
executor: (msg) => msg.channel.send(makeEmbed({ | ||
title: 'FlyByWire Support | Sim issues', | ||
description: 'This is the FlyByWire Support channel, and we\'re only able to help with issues with our aircraft. For any core Microsoft Flight Simulator related issues please ask on [Microsoft Flight Simulator\'s Discord](https://discord.gg/FZKDaVst) or in the official [Microsoft Flight Simulator Forum](https://forums.flightsimulator.com/c/community/140).', | ||
})), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { CommandDefinition } from '../lib/command'; | ||
import { makeEmbed, makeLines } from '../lib/embed'; | ||
import { CommandCategory } from '../constants'; | ||
|
||
const SCREENSHOT_HELP_URL = 'https://docs.flybywiresim.com/fbw-a32nx/assets/support-guide/cockpit-screenshot.jpg'; | ||
|
||
export const screenshot: CommandDefinition = { | ||
name: ['screenshot', 'cockpit'], | ||
description: 'Help to screenshot for support', | ||
category: CommandCategory.FBW, | ||
executor: (msg) => msg.channel.send(makeEmbed({ | ||
title: 'FlyByWire Support | How to take a good screenshot', | ||
description: makeLines([ | ||
'Position yourself in the cockpit using the arrow keys to look straight at the front instrument panel. ' | ||
+ 'Then use the Windows Snipping Tool to take a clear screenshot of all screens and the FCU as shown.', | ||
'Please read the guide [here](https://docs.flybywiresim.com/fbw-a32nx/support/#screenshot-of-cockpit) for more information. ', | ||
]), | ||
image: { url: SCREENSHOT_HELP_URL }, | ||
})), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters