# Important

## Config file

```javascript
// -- Sintic Store - https://discord.gg/5NMPHqXU9U
// Follow this link for more information - https://sintic-store.gitbook.io/sintic-store/paid/loading-screen
Config = {};

// Server Information
Config.ServerName = "Your Name RP"; // Replace "Your Name RP" with the actual name of your server
Config.logo = 'https://media.discordapp.net/attachments/954781623323357215/1191561640701853716/sinticstore.png'; // URL for the server logo
Config.logosize = "60%"; // Size of the server logo

// Color Configuration
Config.topgradientoverlay = '#8c3b4f80'; // Top gradient overlay color
Config.bottomgradientoverlay = "#0a050591"; // Bottom gradient overlay color

Config.topgradient = '#601b1d'; // Top gradient color
Config.bottomgradient = '#853939'; // Bottom gradient color
Config.themecolor = '#f73943'; // Main theme color
Config.maintextcolor = '#ffffff'; // Main text color

// Social Media Links Configuration
Config.socailmedia = [
    {logo: 'https://media.discordapp.net/attachments/954781623323357215/1121267264147181609/tiktok_2.png', color: '#60262644', url: 'https://www.tiktok.com/'}, // TikTok link
    {logo: 'https://media.discordapp.net/attachments/954781623323357215/1102458463172436000/discord.png', color: '#60262644', url: 'https://www.discord.com/'}, // Discord link
    {logo: 'https://media.discordapp.net/attachments/954781623323357215/1116955551541239858/youtube.png', color: '#60262644', url: 'https://www.youtube.com/'}, // YouTube link
    {logo: 'https://media.discordapp.net/attachments/954781623323357215/1104187144022540318/instagram.png', color: '#60262644', url: 'https://www.instagram.com/'}, // Instagram link
];

// Background Video Configuration - (Note - FiveM is only Suppored for webm format or you can use youtube.)
Config.backgroundvideocfg = {
    iframe: false, // Set to true if using a YouTube video, false if using a webm video
    videoId: '5zSat245XQI', // YouTube video ID (only used when iframe is true)
    videoSrc: 'assets/video/videoplayback.webm' // Webm video name (only used when iframe is false, and you can use only webm video)
};

// Music Playlist Configuration - To add more music or change go to the assets\media\musics on folder
Config.musicList = [
    {
        filename: 'assets/media/musics/fire.mp3',// URL for the first music track
        title: 'Fire!', // Title of the first music track
    },
    {
        filename: 'assets/media/musics/industrybaby.mp3',
        title: 'Industry Baby',
    },
    {
        filename: 'assets/media/musics/royalityfreemusic.mp3',
        title: 'Cinematic Trailer', 
    },
]

```

## Other Things

### How To Find Youtube Video ID ?

{% embed url="<https://youtu.be/liJVSwOiiwg?si=39bqv0qRx30tahfX&t=35>" %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sintic-store.gitbook.io/sintic-store/paid/loading-screen/important.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
