# Config

{% hint style="danger" %}
Follow the formatting specifications to avoid script startup errors
{% endhint %}

{% code title="/html/config.js" %}

```javascript

//  ██████╗░██████╗░░█████╗░██╗░░░██╗███████╗   ████████╗██████╗░░█████╗░███╗░░██╗░██████╗██╗████████╗
//  ██╔══██╗██╔══██╗██╔══██╗██║░░░██║██╔════╝   ╚══██╔══╝██╔══██╗██╔══██╗████╗░██║██╔════╝██║╚══██╔══╝
//  ██████╦╝██████╔╝███████║╚██╗░██╔╝█████╗░░   ░░░██║░░░██████╔╝███████║██╔██╗██║╚█████╗░██║░░░██║░░░
//  ██╔══██╗██╔══██╗██╔══██║░╚████╔╝░██╔══╝░░   ░░░██║░░░██╔══██╗██╔══██║██║╚████║░╚═══██╗██║░░░██║░░░
//  ██████╦╝██║░░██║██║░░██║░░╚██╔╝░░███████╗   ░░░██║░░░██║░░██║██║░░██║██║░╚███║██████╔╝██║░░░██║░░░
//  ╚═════╝░╚═╝░░╚═╝╚═╝░░╚═╝░░░╚═╝░░░╚══════╝   ░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚══╝╚═════╝░╚═╝░░░╚═╝░░░


const config = {

	// Stop requests

	holdingRequest: true, // Enable or disable the ability of the passengers to make a bus-stop request : [true] = on | [false] = off
	holdingRequestSound: true, // Enable or disable the sound of the bus-stop requests : [true] = on | [false] = off
	holdingRequestVolume: 0.3, // Ajust the volume of the bus-stop request sound : 0 - 1

	// Stop Annoucements

	stationAnnouncementBeep: true, // Enable or disable the station accouncement sound : [true] = on | [false] = off
	stationAnnouncementBeepVolume: 0.3, // Ajust the volume of the station accouncement sound : 0 - 1

	stationAnnouncements: true, // Enable or disable the station announcements : [true] = on | [false] = off
	stationAnnouncementsVolume: 0.3, // Ajust the volume of the station announcements : 0 - 1
	
	stationAnnouncementVoiceDelay: 7000, // Time from checking a station to the audio annoucement of the next station : [true] = on | [false] = off

	map1picture: "https://i.imgur.com/3TnVzPR.jpg", // Set the first map picture
	map2picture: "https://i.imgur.com/YJj9f7f.png", // Set the second map picture
};
```

{% endcode %}
