Compatibility
Minecraft: Java Edition
1.21.x
1.20.x
Platforms
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Licensed MIT
Published 3 months ago
Updated last week
SimpleEffects plugin
If you are using a version lower than 1.21.4, don't report issues.
Command: /eff
To enable effects, give permission karpen.simpleEffects.eff
.
Reload command: /eff-reload
.
To reload, give permission karpen.simpleEffects.reload
.
Api docs
Add api to you project
Maven
<!-- Jitpack repo -->
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<!-- Main dependency -->
<dependency>
<groupId>com.github.karpen-dev</groupId>
<artifactId>SimpleEffects</artifactId>
<version>VERSION</version>
</dependency>
Gradle
// Jitpack repo
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
// Main dependency
implementation 'com.github.karpen-dev:SimpleEffects:VERSION'
Gradle.kts
// Jitpack repo
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
// Main dependency
implementation("com.github.karpen-dev:SimpleEffects:VERSION")
Using api
Java
// Install api
SimpleEffectsApi api = SimpleEffects.getApi();
// Active cherry effect
api.activeEffectCherryToPlayer(player);
Kotlin
// Install api
val api = SimpleEffects.getApi();
// Active cherry effect
api.activeEffectCherryToPlayer(player);