File tree Expand file tree Collapse file tree 4 files changed +84
-1
lines changed Expand file tree Collapse file tree 4 files changed +84
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import IconLinkCard from '@src/components/IconLinkCard.astro';
33---
44
55<IconLinkCard
6- icon =" cloud-download "
6+ icon =" external "
77 title =" DirectX End-User Runtime Web Installer"
88 description =" Installer for runtime libraries from the legacy DirectX SDK"
99 href =" https://www.microsoft.com/en-us/download/details.aspx?id=35" />
Original file line number Diff line number Diff line change 1+ ---
2+ import { CardGrid } from ' @astrojs/starlight/components' ;
3+ import IconLinkCard from ' @src/components/IconLinkCard.astro' ;
4+ import * as defaults from ' @src/content.constants' ;
5+ ---
6+
7+ <CardGrid >
8+ <IconLinkCard
9+ icon =" seti:font"
10+ title =" Verdana"
11+ description =" Download for verdana.ttf"
12+ href =`${defaults .CDN_URL }/files/fonts/verdana.ttf` />
13+
14+ <IconLinkCard
15+ icon =" seti:font"
16+ title =" Tahoma"
17+ description =" Download for tahoma.ttf"
18+ href =`${defaults .CDN_URL }/files/fonts/tahoma.ttf` />
19+
20+ <IconLinkCard
21+ icon =" seti:font"
22+ title =" Tahoma Bold"
23+ description =" Download for tahomabd.ttf"
24+ href =`${defaults .CDN_URL }/files/fonts/tahomabd.ttf` />
25+ </CardGrid >
Original file line number Diff line number Diff line change 1+ ---
2+ title : ' Missing Windows Fonts'
3+ description : ' MTA requires a standard set of fonts that come installed with Windows by default.'
4+ tableOfContents : false
5+ ---
6+
7+ import { Steps } from ' @astrojs/starlight/components' ;
8+ import FontsDownload from ' @src/components/FontsDownload.astro' ;
9+
10+ Multi Theft Auto requires a standard set of fonts that come preinstalled with Microsoft Windows by default.
11+ One or more of these fonts appear to be missing. Download and install them:
12+
13+ - Tahoma: ` tahoma.ttf `
14+ - Tahoma Bold: ` tahomabd.ttf `
15+ - Arial: ` arial.ttf `
16+ - Microsoft Sans Serif: ` micross.ttf `
17+
18+ <FontsDownload />
19+
20+ :::caution
21+ If you are missing a font that is not downloadable from here, try searching for it online.
22+ :::
23+
24+ :::note
25+ Consider restarting your computer after installing these font files.
26+
27+ And do not despair, you can always contact us either on Discord or in the forums.
28+ You can find the links at the bottom of the page.
29+ :::
Original file line number Diff line number Diff line change 1+ ---
2+ title : ' Could not start GTA:SA'
3+ description : ' MTA fails to launch the game and throws an error.'
4+ tableOfContents : false
5+ ---
6+
7+ import { Steps } from ' @astrojs/starlight/components' ;
8+
9+ <Steps >
10+ 1 . Try running MTA with the Administrator account.
11+ Your current account may be restricted from launching the game.
12+
13+ 2 . Your anti-virus software is blocking the game executable.
14+
15+ You have to add the following executable to the exceptions list of your anti-virus software:
16+ ```
17+ C:\ProgramData\MTA San Andreas All\1.6\GTA San Andreas\gta_sa.exe
18+ ```
19+ Replace ` 1.6 ` with the version of MTA that you're trying to launch, in case
20+ this guide becomes outdated at some point.
21+ </Steps >
22+
23+ :::note
24+ Consider restarting your computer as a general piece of advice, when a software
25+ is not behaving correctly.
26+
27+ And do not despair, you can always contact us either on Discord or in the forums.
28+ You can find the links at the bottom of the page.
29+ :::
You can’t perform that action at this time.
0 commit comments