QuickShop Hikari is a Shop plugin that allows players to create Chest Shops to easily sell and buy items, without the
need for any commands.
In fact, all commands in QuickShop are not even needed for normal gameplay.
This version of QuickShop (Ghost-chu/QuickShop-Hikari) is a fork from PotatoCraft-Studio's version which itself is a fork from the Reremake of the original QuickShop.
QuickShop Hikari is maintained by Ghost-Chu and has the goal to modernize the core content of QuickShop and adapt it to the latest versions of Minecraft.
Discussions
Bug Tracker
Discord
Obtain the latest version from Modrinth
You can download optional modules here for compatibility with other plugins.
/quickshop echest
.Contributions to QuickShop-Hikari are welcome and encouraged! Whether you're fixing a bug, adding a new feature, or improving documentation, we would love your help.
However, to ensure the project stays consistent and manageable, we ask that you follow our contributing guidelines before submitting a pull request.
Please make sure to:
Thank you for your contributions!
You're allowed to create your fork to share. No permission is needed.
Though it would be nice if you could pull-request your changes into this repository when they are good ones.
To compile and debug QuickShop, please do the following steps:
mvn install -Pgithub
with the GitHub Profile selected.plugins
folder, start the server and begin debugging!To compile the QuickShop and debug it by yourself, please follow these steps:
mvn install -Pgithub
with github profile selected.QuickShop-Hikari collects certain statistic through bStats.
You may opt-out by setting disabled-metrics
to true
in the config.yml.
Quickshop-Hikari is dual licensed under GPLv3 and AGPLv3. New contributions will follow the updated license of AGPLv3.
QuickShop-Hikari offers an API for you to use features such as retrieving active shops of a player.
<repositories>
<repository>
<id>codemc</id>
<url>https://repo.codemc.io/repository/maven-public/</url>
</repository>
</repositories>
<dependencies>
<!-- QuickShop Main Module -->
<dependency>
<groupId>com.ghostchu</groupId>
<artifactId>quickshop-bukkit</artifactId>
<version>VERSION HERE</version>
<scope>provided</scope>
<classifier>shaded</classifier>
</dependency>
</dependencies>
repositories {
maven { url = "https://repo.codemc.io/repository/maven-public/" }
}
dependencies {
compileOnly "com.ghostchu:quickshop-bukkit:VERSION HERE"
}
public class MyPlugin extends JavaPlugin {
@Override
public void onEnable() {
QuickShopAPI api = QuickShopAPI.getInstance();
QuickShop instance = QuickShopAPI.getPluginInstance();
QuickShop anotherWayToGetInstance = QuickShop.getInstance();
}
}