Welcome to cxSTUDIOS' official Wiki Page.
Start by clicking on the category!
Aurora is the free namelessmc theme developed using FomanticUI Framework. Aurora is compatible with latest NamelessMC release.
Personalize Aurora as your liking by visiting Aurora's template settings.
You might see "Logo Settings" button dropdown below the Upload Image button! Change Logo size in Pixels without (px), Ex: 20)
"Navbar Type" is basically the navbar that appear on top of the second navbar.
There are three types of navbar style, currently!
ServerJars API endpoint (Free to use)
MAIN: https://api.bijjuxd.me
, https://api.cxstudios.in
FALLBACK / OTHER: cxstudios-api.vercel.app
, serverjars.vercel.app
Retrieve a list of all available jar types.
Endpoint:
GET /v1/serverjars/fetchTypes
{
"response": {
"modded": ["mohist", "fabric", "forge"],
"proxies": ["waterfall", "bungeecord", "velocity"],
"vanilla": ["vanilla", "snapshot"],
"servers": ["paper", "purpur", "sponge"]
}
}
Retrieve all versions available for a specific category.
Endpoint:
GET /v1/serverjars/fetchAll/{category}
Parameters: The {category}
of server jars (e.g., paper, fabric, forge).
Example Request:
GET /v1/serverjars/fetchAll/paper
{
"response": [
{
"version": "1.21.1",
"file": "paper-1.21.1.jar"
}
]
}
Retrieve the download URL for a specific jar file based on its type and version.
GET /v1/serverjars/fetchJar/{category}/{minecraftversion}
{
"response": {
"url": "https://cdn.cxstudios.in/uploads/serverjars/jars/paper-1.21.jar"
}
}