Skip to content

Commit 1eb229d

Browse files
Add Sounds list
1 parent 96f9da2 commit 1eb229d

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
import StarlightPage from '@astrojs/starlight/components/StarlightPage.astro';
3+
4+
import { getSeeAlsoLinksFromList } from '@src/utils/general';
5+
import SeeAlsoSection from '@src/components/SeeAlsoSection.astro';
6+
7+
---
8+
<StarlightPage frontmatter={{
9+
template: 'doc',
10+
title: 'Sounds',
11+
tableOfContents: false,
12+
}}>
13+
<p>These are the sound IDs you can use with <a href="/reference/playSoundFrontEnd">playSoundFrontEnd</a>.</p>
14+
<ul>
15+
<li><strong>0 - 20</strong> Selection sounds</li>
16+
<li><strong>27 - 30</strong> Bullet sounds</li>
17+
<li><strong>32 - 33</strong> Selection sounds</li>
18+
<li><strong>34</strong> Radio static</li>
19+
<li><strong>35</strong> Stop Radio static</li>
20+
<li><strong>37 - 38</strong> Tick</li>
21+
<li><strong>40</strong> Selection sounds</li>
22+
<li><strong>41 - 42</strong> Tick (no ammo)</li>
23+
<li><strong>43 - 45</strong> Race countdown</li>
24+
<li><strong>46</strong> Repair</li>
25+
<li><strong>47</strong> White noise static</li>
26+
<li><strong>48</strong> Stop White noise static</li>
27+
<li><strong>49</strong> Static short</li>
28+
<li><strong>101</strong> Countdown/selection</li>
29+
</ul>
30+
31+
<SeeAlsoSection seeAlsoLinks={getSeeAlsoLinksFromList([
32+
'reference:ID_Lists',
33+
])} currentId='' />
34+
</StarlightPage>

web/src/pages/reference/ID_Lists/Vending_Machines.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ luaTable += `\n}\n`;
123123
title: 'Vending Machines',
124124
tableOfContents: false,
125125
}}>
126-
<p>List of San Andreas Vending machines:</p>
126+
<p>List of San Andreas Vending machine locations (each vending machine is an object):</p>
127127
<table>
128128
<thead>
129129
<tr>

web/src/pages/reference/ID_Lists/index.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import SeeAlsoSection from '@src/components/SeeAlsoSection.astro';
1414
<li><a href="/reference/ID_Lists/Damage_Types">Damage Types</a></li>
1515
<li><a href="/reference/ID_Lists/Garages">Garages</a></li>
1616
<li><a href="/reference/ID_Lists/Interiors">Interiors</a></li>
17+
<li><a href="/reference/ID_Lists/Sounds">Sounds</a></li>
1718
<li><a href="/reference/ID_Lists/Vehicle_Colors">Vehicle Colors</a></li>
1819
<li><a href="/reference/ID_Lists/Vehicle_Paintjobs">Vehicle Paintjobs</a></li>
1920
<li><a href="/reference/ID_Lists/Vehicle_Variants">Vehicle Variants</a></li>

0 commit comments

Comments
 (0)