MinigameSignsAPI for NukkitX

MinigameSignsAPI for NukkitX 1.0.0

Compatible API Versions
1.0.7+
Sourcecode
https://github.com/CimeyClust-Plugins/MinigameSigns
Contributors
Verox001
MinigameSigns for NukkitX
Important: This plugin is an API, so you will likely have to include this plugin in YOUR Plugin dependencies.

Create Sign:
Java:
SignsAPI.createMinigameSign(
    yourPluginInstance,
    locationOfSign,
    "nameOfMinigame",
    "command to execute, when clicked",
    currentPlayerAmountInRound,
    maxPlayerAmountInRound,
    additionalText
);
At the location, where the sign should be created, there already have to be a sign to apply one.

Update a Sign:
Java:
SignsAPI.updateMinigameSign<...>(
    yourPluginInstance,
    blockEntitySignInstane,
    yourValueToPass
);

<...> must be replaced with the parameter, you want to modify.
Valid update methods:
  • updateMinigameSignName
  • updateMinigameSignCommand
  • updateMinigameSignPlayerCount
  • updateMinigameSignMaxPlayerCount
  • updateMinigameSignAdditionalText


Maven Dependency:
XML:
<dependency>
    <groupId>com.cimeyclust.signs</groupId>
    <artifactId>MinigameSigns</artifactId>
    <version>{current version}</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/lib/MinigameSigns-{current version}.jar</systemPath>
</dependency>
Author
Verox007
Downloads
567
Views
1,345
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from Verox007

  • NCP Webpanel
    NCP Webpanel
    Provides a simple, clear dashboard for managing the No Cheat Plus plugin.
Top