CustomNPCS 1.7 Help

Getting Started With The API

To start, you need to add CustomNPCs as a dependency in your dependency manager.

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</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")

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"

Then, you can reload your project and get ready to use the API!

Last modified: 21 December 2024