Socials

Want to give yourself a little recognition for your hard work in creating a plugin? Well, linking your socials is a great way to do so!

Adding Socials

To begin, create an 'Socials' array as shown below:

{
   "Name": "Blaze To Renegade Raider",
   "Icon": "https://fortnite-api.com/images/cosmetics/br/CID_028_Athena_Commando_F/icon.png",
   "Swapicon": "https://fortnite-api.com/images/cosmetics/br/CID_784_Athena_Commando_F_RenegadeRaiderFire/icon.png",
   "Message":null,
   "Socials":[]
}

Then expand the array and add a new object as shown below.

{
   "Name":"Blaze To Renegade Raider",
   "Icon":"https://fortnite-api.com/images/cosmetics/br/CID_028_Athena_Commando_F/icon.png",
   "Swapicon":"https://fortnite-api.com/images/cosmetics/br/CID_784_Athena_Commando_F_RenegadeRaiderFire/icon.png",
   "Message":null,
   "Socials":[
      {
         "type":"discord",
         "header":"Created by Wslt",
         "url":"https://discord.com/users/1133991944465420298"
      }
   ]
}

Key explanation

type - This will determine the icon that your social will use for a list of types. Read:

header - This will serve as the hover text for your social icon or display as a message if 'url' is null.

url - This will serve as the url that will open upon clicking the social icon. Set it as 'null' if you don't want a url.

Types

This is a list of currently supported types.

  • discord

  • youtube

  • twitter

  • x

  • instagram

  • tiktok

  • facebook

  • paypal

  • cashapp

  • linktree

  • guilded

  • website (Set anything you want!)

Last updated