Welcome
To join our community, please login or register!
Internet Explorer
Internet Explorer is not supported. Please upgrade to a more modern browser.

Home


Welcome to cxSTUDIOS' official Wiki Page.

Start by clicking on the category!


Last edited by:
BijjuXD8 months ago
403

Introduction


Introduction to Aurora

Aurora is the free namelessmc theme developed using FomanticUI Framework. Aurora is compatible with latest NamelessMC release.

Getting Started

  1. Download latest version of Aurora from releases tab on github.
  2. Extract files inside of /upload/ to root directory of NamelessMC 
  3. Where is my root directory?
    To find Root directory, just locate index.php, custom, dev, etc....
  4. Login to your ACP and go to Layout > Templates.
  5. Click on the Install button on right top of templates.
  6. Now activate Aurora template and set it as default.

What you'll need

  • NamelessMC v2.1.2 (Works with 2.1.1, using latest version is recommended)
  • Aurora Latest Release

Supported Modules

  • MemberList Module
  • Store Module
  • Resources Module
  • Infractions Module
  • Ghost Module
  • Newsletter Module
  • Vote Module
  • Suggestions Module
  • Chatbox Module
  • Trophies
  • All Modules that support default revamp template!
Non Listed Modules Support!
Currently all modules that support Default NamelessMC template supports Aurora.
Keep in mind that UI of non supported modules wont match Aurora's styled FomanticUI

Configuring Theme

Personalize Aurora as your liking by visiting Aurora's template settings.

Community Support

Join: https://discord.gg/creativmap


Last edited by:
BijjuXDabout 1 year ago
180

Navbar


Changing Logo & Banner Image

  1. Go to Navbar Option in Aurora Settings
  2. Click on Upload Image/Upload Banner button (You'll be redirected to */panel/core/images/)
  3. Change Banner Image/Logo Image as your liking
  4. Now click on submit button, and you're done!

Changing Logo Size

You might see "Logo Settings" button dropdown below the Upload Image button! Change Logo size in Pixels without (px), Ex: 20)

Spoiler

Change Navbar Type

"Navbar Type" is basically the navbar that appear on top of the second navbar.

Change Navbar Style

There are three types of navbar style, currently!

  • Elegant - Elegant navbar has a small looking secondary navbar with four social icons, and status buttons at left
  • Dynamic - Same as modern navbar, but the navbar is solid
  • Modern - Navbar is transparent and clipped with the background
Elegant

Last edited by:
BijjuXDabout 1 year ago
83

Getting Started


Minecraft Server Jars (API)

ServerJars API endpoint (Free to use)

URL

MAIN:
https://api.bijjuxd.me, https://api.cxstudios.in
FALLBACK / OTHER:
cxstudios-api.vercel.app, serverjars.vercel.app

Endpoint

1. Fetch All Jar Types

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"]
  }
}

2. Fetch All Versions for a Category

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"
    }
  ]
}

3. Fetch a Specific 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"
  }
}

Last edited by:
BijjuXD8 months ago
8