Home - hentfy/docs.stella.gs GitHub Wiki
Welcome to the Stella Loader Documentation! This guide provides comprehensive information and resources for utilizing Stella, the versatile loader tool for your projects.
To get started with Stella, follow these steps:
- Join our Discord Community: https://discord.gg/zJQjXZGKg7
- Purchase a Subscription: Visit our sellix to purchase a subscription plan that suits your needs.
- Upload Your Files: Once subscribed, start uploading your files to our secure cloud storage.
- Publish Your Files: Easily publish your files from the Stella dashboard.
Stella supports the following commands:
-
/register <username> <password>: Register a new user. -
/login <username>: Log in with your username. -
/redeem <code>: Redeem a subscription code. -
/list_scripts: List available scripts.
-- Define a function to fetch data from the Stella API, if available
local stella_fetch = stella_fetch and stella_fetch() or {username = '', version = '', discord = ''}
-- If stella_fetch is not available, set it to an empty table with default values
-- This ensures that even if the API call fails or isn't implemented, the program won't break
-- The default values include an empty string for username, version, and discord
-- This allows the program to gracefully handle missing or incomplete data
-- Now, let's define the structure of the data fetched from Stella API
local stella_fetch = {
username = '', -- Placeholder for the username obtained from Stella API
version = '', -- Placeholder for the version information obtained from Stella API
discord = '' -- Placeholder for the Discord handle obtained from Stella API
}