Compatibility
Minecraft: Java Edition
Platforms
Tags
Creators
Details
A Java-style wrapper for Skript projects
SkriptModuleLoader lets you package Skript (.sk) files inside a Java plugin JAR, making your Skript project look, build, and distribute like a real Java/Maven project.
This solves common Skript problems:
- ❌ Scripts getting deleted or forgotten
- ❌ Messy
scripts/folders - ❌ No proper versioning or releases
- ❌ Hard to distribute modular Skript systems
With this project, your .sk files live inside the plugin JAR, and are automatically extracted and loaded when the server starts.
✨ What This Project Is
Think of SkriptModuleLoader as:
A wrapper that turns Skript into a Java-style project
You write Skript
➡️ Package it like Java
➡️ Release it like a plugin
➡️ Load it automatically
No manual copying. No confusion.
🧠 How It Works (Concept)
- You place
.skfiles into the Java project - Maven bundles them into the plugin JAR
- The plugin extracts them at runtime into Skript’s folder
- Skript reloads automatically
💻 How to use it
Variant 1.
You compile the project
- Download the .zip file from the downloads page and unzip it.
- Download Java 21 and Maven (if you haven't)
- Open
\src\main\resources\modulesand place your .sk files there (no subfolders). - Open
\src\main\resources\config.ymland set thebundled-scripts:with your script names (with .sk) you placed earlier. - Go to the root of the project and start program named
build.bat. - Program will automatically compile the plugin.
- Place the .jar file in
\plugins\of your server. Plugin will automatically install and load the scripts.
Variant 2.
You load the .sk file through the plugin
- Download the .jar file to
\plugins\of your server. - Start the server once and stop.
- Place your .sk files to the newly generated folder
\plugins\SkriptModuleLoader\modules\ - Start the server, and watch how plugin loads to scripts folder in Skript.
You can't distribute the plugin in case of Variant 2.
Additionally you can edit the config.yml before or/and after the compilation.


