Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Credits

muffichii edited this page Feb 18, 2022 · 2 revisions

Lets say, you finished your mod, except you need to credit the mod team, or yourself if you did it yourself. To do so, it's pretty easy.

  1. Go in your mod folder and create a credits.json file. Make sure it's credits.json and not credits.json.txt.
  2. Open it with any software of your choice (i recommend Visual Studio Code or Notepad, and paste this example credit in:

Example Credits.json

{
    "credits" : [
        {
            "name" : "Your Name",
            "role" : "Your Role (text under the name).",
            "icon" : "path/to/the/icon",
            "urls" : [
                {
                    "name" : "Any link you want",
                    "url" : "https://www.example.com/user/you"
                }
            ]
        }
    ]
}
  • name: Your name.
  • role: The small text under the name that says what you did for the mod.
  • icon: The icon path without the extension. The icon must be in the images folder. For example, credits/yoshicrafter29 = Your Mod Folder/images/credits/yoshicrafter29.png
  • urls: Array of URLs to the social media you want:
    • name: Name of the URL, for example, if you type in Twitter, the engine will show < Twitter > when you select your credit character.
    • url: Self-explanatory: The url that'll be opened when the user select the social media.

Since credits is an array, you can put as much team members as you want (please don't add the entire school district, or else your pc may die lmao)