
Fabric.SK
Fabric.SK is a Fabric version of the Skript plugin.
Список изменений
Fabric.SK 0.2.0
🎉 Initial Alpha Release
Fabric.SK is a Skript-inspired scripting engine for Fabric that allows server owners and modpack creators to create behavior using .sk scripts.
This release focuses on building the core architecture that future versions will expand upon.
✨ Added
Script System
- Added
.skscript loading - Added automatic script discovery from the scripts directory
- Added script registration and management
- Added support for loading scripts at startup
Parser
- Added initial Skript-style parser
- Added section detection (such as
on join:) - Added script block parsing
- Added parsed script structures
Commands
- Added
/fabricskript - Added
/fsk - Added
/skript - Added
/sk
Available Commands
/fsk help/fsk version/fsk list/fsk reload <script>/fsk reloadall/fsk load <script>/fsk unload <script>/fsk validate <script>/fsk info <script>/fsk errors/fsk toggle syntaxcorrect <auto|partial> <script>
Runtime Foundations
- Added event framework
- Added condition framework
- Added effect framework
- Added variable framework
- Added scheduler framework
HeavySK
- Added experimental HeavySK package loading
- Added package manifest support
- Added package parsing infrastructure
Configuration
- Added Fabric.SK configuration system
- Added script directory management
- Added logging configuration options
⚠️ Alpha Status
Fabric.SK 0.2.0 is an early alpha release.
Many systems exist internally but are not fully connected yet.
Known Issues / Features Being Fixed
Runtime Execution
❌ Scripts do not execute effects yet.
Example:
on join:
send "Hello!"
The script can be parsed and loaded, but the effect will not currently run.
Syntax Validation
❌ Invalid syntax may still be accepted.
Example:
on join:
sends "Hello!"
This may parse successfully even though sends is not a valid effect.
Proper validation is planned.
Script Listing
❌ /fsk list
Currently displays:
Script listing not implemented yet.
A future update will show loaded scripts.
Script Information
⚠️ /fsk info <script>
Currently provides limited information.
More details will be added in future releases.
Error Viewer
⚠️ /fsk errors
Currently acts as a placeholder.
A future version will provide real parser and runtime error reports.
Variables
⚠️ Variable storage exists internally but is not fully integrated into script execution.
Conditions
⚠️ Condition infrastructure exists but condition execution is not complete.
Scheduler
⚠️ Scheduler infrastructure exists but script scheduling syntax is not yet implemented.
Examples planned:
every 5 seconds:
broadcast "Hello"
wait 10 seconds
HeavySK
⚠️ HeavySK support is experimental.
Package formats and APIs may change before a stable release.
🛠 Planned for Future Releases
0.2.x
- Better validation
- Better error reporting
- Script listing improvements
- Script information improvements
- More built-in effects
- More built-in conditions
0.3.x
- Runtime execution engine
- Event → Effect execution
- Working
sendeffects - Variable interpolation
- Basic condition support
