/FastScript

Support multiple scripting languages, use scripts to change Minecraft!

Primary LanguageKotlinGNU General Public License v3.0GPL-3.0

Because the structure of the project is too confusing, the project will stop updating until major errors are discovered. Reset the project when Insinuate completes development and testing.


About

Support multiple scripting languages, use scripts to change Minecraft!

At present, the project is still unfinished and cannot be used.


Build

In the project root directory:

./gradle shadowJar
  or
./gradle

Developer

Maven usage

<repositories>
    <repository>
        <id>roselle-repo</id>
        <url>http://repo.iroselle.com/snapshots/</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>me.scoretwo</groupId>
        <artifactId>FastScript</artifactId>
        <version>1.0.1-SNAPSHOT</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

Gradle

repositories {
    maven {url 'http://repo.iroselle.com/snapshots/'}
}
dependencies {
    implementation 'me.scoretwo:FastScript:1.0.1-SNAPSHOT'
}

Gradle Kotlin DSL

repositories {
    maven("http://repo.iroselle.com/snapshots/")
}
dependencies {
    implementation("me.scoretwo:FastScript-common:1.0.1-SNAPSHOT")
}

Links