PotatoCraft-Studio / QuickShop-Reremake

QuickShop-Reremake is a **FREE** shop plugin that allows players to easily sell/buy any items from a chest without any commands. In fact, none of the commands that QuickShop-Reremake provides are ever needed by a player.
GNU General Public License v3.0
68 stars 77 forks source link

QuickShop-Reremake

Codacy Badge CodeFactor BuildStatus TestsPassed Contributors FOSSA Status

Java MC Ver Downloads Rating

QuickShop is a FREE shop plugin that allows players to easily sell/buy any items from a chest without any commands. In fact, none of the commands that QuickShop provides are ever needed by a player. QuickShop-Reremake is a FREE fork of QuickShop NotLikeMe with more features, bug fixes and other improvements.
QuickShop-Reremake is made by PotatoCraft Studio from KaiKikuchi's QuickShop upstream repository.

Support

Discord Github Issues

Features

Downloads

Spigot BukkitDev MCBBS Jenkins

Contribute

If you're a developer, you can contribute to the QuickShop code! Just make a fork and install the Lombok plugin, then make a pull request when you're done! Please try to follow Google Java Style. Also do not increase the plugin version number. Thank you very much!

To compile the QuickShop and debug it by yourself, please follow these steps:

  1. Make sure you're using Java16 JDK in your PATH.
  2. Compile main-project without signature by using debug profile: mvn install -Pdebug
  3. Start your server with extra flag to skip the QuickShop signature checks: -Dorg.maxgamer.quickshop.util.envcheck.skip.SIGNATURE_VERIFY

Maven


<repository>
    <id>quickshop-repo</id>
    <url>https://repo.codemc.io/repository/maven-public/</url>
</repository>

<dependency>
<groupId>org.maxgamer</groupId>
<artifactId>QuickShop</artifactId>
<version>{VERSION}</version>
<scope>provided</scope>
</dependency>

Bstats

BigImage

License

FOSSA Status

Developer API

Plugin plugin = Bukkit.getPluginManager().getPlugin("QuickShop");
if(plugin != null){
    QuickShopAPI api = (QuickShopAPI)plugin;
    api.xxxx;
}