-
Notifications
You must be signed in to change notification settings - Fork 0
Services
github-actions[bot] edited this page Aug 16, 2026
·
4 revisions
These are the runtime services instantiated in STEMCraft.java and exposed through STEMCraftAPI.
| Service | Implementation | Purpose |
|---|---|---|
| Config | ConfigServiceImpl |
Loads and saves YAML-backed config files and sections |
| Tasks | TaskServiceImpl |
Synchronous, asynchronous, repeating, and persistent scheduled work |
| Messages | MessageServiceImpl |
Formatted player/server messaging and token expansion |
| Locales | LocaleServiceImpl |
Locale resolution and key lookup |
| Service | Implementation | Purpose |
|---|---|---|
| Audit | AuditServiceImpl |
Structured audit logging and audit command surfaces |
| Chat | ChatServiceImpl |
Moderation workflows, reports, mute-all state, and report review surfaces |
| Commands | CommandServiceImpl |
Fluent command registration API used by the rest of the plugin |
| Comets | CometFeature |
API-launched destructive comet events and per-event loot |
| Database | DatabaseServiceImpl |
SQLite execution, query helpers, and migration version tracking |
| Events | EventServiceImpl |
Simplified event listener registration |
| Holograms | HologramServiceImpl |
Hologram creation, lookup, and command tooling |
| Dialogs | DialogServiceImpl |
Cross-platform Paper and Geyser input dialogs |
| Mailboxes | Mailboxes |
Queued letter/item delivery and mailbox state |
| Placed objects | PlacedObjectServiceImpl |
Persistent managed block/entity assemblies |
| Items | ItemServiceImpl |
Custom item metadata/helpers |
| Minigames | MiniGameServiceImpl |
Arena runtime management, player occupancy, and minigame coordination |
| MOTD | MotdServiceImpl |
Server list MOTD handling |
| Placeholders | PlaceholderServiceImpl |
Internal token rendering plus PlaceholderAPI bridge when present |
| Players | PlayerServiceImpl |
Player utility and state helpers |
| Player Stats | PlayerStatsServiceImpl |
Built-in and custom stat registration, capture, and persistence |
| Profanity Filter | ProfanityFilterServiceImpl |
Local profanity matching, configuration, and administration |
| Punishments | PunishmentServiceImpl |
Ban, unban, warn, kick, and punishment record management |
| Recipes | RecipeServiceImpl |
Custom recipe loading from config |
| Regions | RegionServiceImpl |
Region tracking and listener dispatch |
| Resource Pack | ResourcePackServiceImpl |
Pack generation, hosting, and distribution |
| Selection | SelectionServiceImpl |
Selection/session helpers used by editing workflows |
| Tab Complete | TabCompleteServiceImpl |
Named tab-completion providers and placeholder expansion |
| Web | WebServiceImpl |
Embedded HTTP endpoint registration and status endpoint |
| Worlds | WorldServiceImpl |
World lifecycle, generators, settings, links, and world command tooling |
The world service is one of the largest domain services. It owns:
- world create, load, unload, duplicate, and delete
- generator registration and stored generator config
- world settings such as time, weather, tick speed, gamemode, nether/end links, and spawn rules
- transition commands for world join and leave events
- the
/worldcommand surface
The minigame service provides the shared framework for:
- arena lifecycle
- player and spectator tracking
- HUD refresh
- countdowns and match transitions
- common world/region protections for active arenas
The resource pack service coordinates:
- generator registration
- build targets and formats
- Java pack archive output
- Bedrock pack generation support
- web hosting integration for resource-pack delivery
These services form the moderation stack. Together they cover:
- profanity matching and classification
- incident capture
- punishment persistence and command surfaces
- audit review
- player reporting
The task service is more than a Bukkit scheduler wrapper. It also supports:
- named tasks
- delayed and repeating execution
- retryable workflows
- persistent tasks stored in SQLite so scheduled work can survive restarts
The image-map service creates wall-mounted mosaics, renders supplied images across their map tiles, and owns the related map and item-frame lifecycle.
- Home
- Architecture
- Services
- Features
- Build a Custom Tool
- Agriculture and Cooking
- Survival quality of life
- Custom items
- Slime and Magma Buckets
- Comets
- Rotten Flesh Uses
- Iron Golem Poppy Luring
- Gifts
- Mailboxes
- Notice boards
- Named regions
- Interactive guide callbacks
- Quests
- Commands
- API
- Minigames
- Minigame placeholders
- Tab completion
- Configuration
- Entitlements and badges
- Player reset service