Skip to content

TheComputerGeek2/MagicSpells

 
 

Repository files navigation


MagicSpells Icon

Magic without writing Java

Build Status Discord Server Github Downloads Licence In MC servers

MagicSpells is a PaperMC plugin which gives its users the ability to modify their Minecraft servers by configuring existing features without writing Java code. It provides you with the tools for playing with blocks of logic, bringing other plugins together, playing fantastic special effects, making your own new mechanics, and more.

Check out more examples of what this plugin can do in our Discord server (in the resources channel and workshop channel).


Resources 📝


Classical MagicSpells ⭐

This plugin was originally created by Nisovin, and published on Bukkit. After some time TheComputerGeek2 took over the project and published it on Spigot. Since then, we dropped support for Spigot and moved to PaperMC, and the plugin was published on Modrinth and Hangar.


Support 📞

If you need help with the plugin, our Discord server can provide you community support. You can also post suggestions there or find more resources that can be useful for you.

Join our Discord

Screenshot of the server


Building 🧱

The move to Gradle has made building much easier. After cloning and navigating to the source's directory, you can simply run this command:

./gradlew build

The plugin jar will be in the core/build/libs directory.


License 📜

MagicSpells is licensed under GNU General Public License v3. For details, see LICENSE file in the root directory.

  • If your software is distributed and links to MagicSpells API, it must be licensed by a GPL compatible license.
  • If your software modifies MagicSpells, you must also include the licenses of our dependencies linked in our NOTICE file.

Dependency 📚

Gradle:

repositories {
    maven {url "https://jitpack.io"}
}

dependencies {
    implementation("com.github.TheComputerGeek2.MagicSpells:core:main-SNAPSHOT") {transitive = false}
}

Maven:

<repository>
    <id>jitpack-repo</id>
    <url>https://jitpack.io</url>
</repository>
<dependency>
    <groupId>com.github.TheComputerGeek2.MagicSpells</groupId>
    <artifactId>core</artifactId>
    <version>main-SNAPSHOT</version>
    <exclusions>
        <exclusion>
            <groupId>*</groupId>
            <artifactId>*</artifactId>
        </exclusion>
    </exclusions>
</dependency>