Tags
Creators
Details
All versions
1.3.0-spigot
Release
InputEngine-spigot 1.3.02 months ago 4
Compatibility
Minecraft: Java Edition
1.21.x
Platforms
Paper
Purpur
Spigot
Changes
[1.3.0] - YAML Configuration Update
This update transforms InputEngine from a developer API into a standalone utility for server administrators, allowing custom keybinds to be created directly via YAML files.
⨠Features
- YAML Keybinds: Server admins can now create
.ymlfiles in theplugins/InputEngine/keys/directory to define custom keybinds. - Universal Actions: Configured keys can execute server commands (
console_command), player commands (player_command), or send formatted messages (message). - Conditional Logic: Added a condition system (
permission,papi) to restrict when keybinds can be executed. - PlaceholderAPI Support: Fully integrated with PlaceholderAPI to resolve variables like
%player_name%and%vault_eco_balance%inside actions and conditions.
š ļø Developer Notes
- Added the
ActionRegistryandConditionRegistryAPIs. Third-party plugins can now register their own custom action and condition types for server admins to use in their YAML files.
Optional dependencies
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:cd7YQRjU:zy8oJNyW"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:cd7YQRjU:zy8oJNyW"
}


