π±Socials.json
The Socials.json file lets you configure social media links displayed on the loading screen. Use this feature to promote your server's presence on Discord, YouTube, Twitch, and more.
π Configuration Options
1. Social Media Array
Key:
Socials
Type: Array of Objects
Description: Each object represents a social media platform and contains the following properties:
π± Social Media Properties
Icon:
Key:
icon
Type: String
Description: Font Awesome icon class.
Example:
"icon": "fa-brands fa-discord"
Text:
Key:
text
Type: String
Description: Display name of the platform.
Example:
"text": "Discord"
Value:
Key:
value
Type: String
Description: Internal identifier for the platform.
Example:
"value": "discord"
URL:
Key:
url
Type: String
Description: Link to the platform page.
Example:
"url": "https://discord.com/invite/ypqBF8gVCB"
π Example Configuration
Hereβs an example of a complete Socials.json
file:
{
"Socials": [
{
"icon": "fa-brands fa-discord",
"text": "Discord",
"value": "discord",
"url": "https://discord.com/invite/ypqBF8gVCB"
},
{
"icon": "fa-brands fa-youtube",
"text": "YouTube",
"value": "youtube",
"url": "https://www.youtube.com/@sedres13"
},
{
"icon": "fa-brands fa-twitch",
"text": "Twitch",
"value": "twitch",
"url": "https://www.twitch.tv/sedres13"
},
{
"icon": "fa-brands fa-instagram",
"text": "Instagram",
"value": "instagram",
"url": "https://www.instagram.com/sedresAC/"
},
{
"icon": "fa-brands fa-twitter",
"text": "Twitter",
"value": "twitter",
"url": "https://twitter.com/sedres13"
}
]
}
β οΈ Notes
Ensure all URLs are valid and accessible.
Use proper Font Awesome classes for the
icon
field.Add or remove social platforms by editing the
Socials
array.
Promote your serverβs community using this feature!
Last updated