Getting Started With The API
To start, you need to add CustomNPCs as a dependency in your dependency manager.
- Maven
- Gradle (kotlin)
- Gradle (Groovy)
Add the repository to the repositories section in your pom.xml
<repository>
<id>customnpcs</id>
<name>Foxikle's Repository</name>
<url>https://repo.foxikle.dev/public</url>
</repository>
Then, add the dependency to your dependencies section
<dependency>
<groupId>dev.foxikle</groupId>
<artifactId>customnpcs</artifactId>
<version>1.7.5</version>
</dependency>;
Add the CustomNPCs Maven Repository
maven {
name = "foxiklePublic"
url = uri("https://repo.foxikle.dev/public")
}
OR
maven ("https://repo.foxikle.dev/public")
Then, add the dependency to your build.gradle.kts
compileOnly("dev.foxikle:customnpcs:1.7.5")
Add the CustomNPCs Maven Repository
maven {
name "customnpcs"
url "https://repo.foxikle.dev/public"
}
Add the dependency to your build.gradle
compileOnly "dev.foxikle:customnpcs:1.7.5"
Then, you can reload your project and get ready to use the API!