MinusKube

Results 47 comments of MinusKube

Is someone actually working on this? Maybe you can create a branch so we can start working on it together? :)

- [ ] https://github.com/SpongePowered/SpongeDocs/blame/stable/source/plugin/optional/basic.rst#L15 - [ ] https://github.com/SpongePowered/SpongeDocs/blame/stable/source/plugin/optional/basic.rst#L94 These two titles are available for translation on Crowdin, but are not getting translated on the final page, example: https://docs.spongepowered.org/stable/fr/plugin/optional/basic.html#implicit-nullable-contracts-and-why-they-suck

Hello, you only have to copy/paste the content of the "core" and "bukkit" (or "sponge" if you're using Sponge) modules into your plugin

If it blinks, it's either because you're using 1.7, either because you're not updating the line correctly just by using `board.set("Test Score", 5);` (maybe you're removing then setting the line...

Yeah, you're recreating the scoreboard for the player every time you call the `setScoreboard` method. You must create the scoreboard only once (when the player join for example), then, inside...

You use the `Netherboard.instance().createBoard(...)` inside your `createScoreboard` method to create the scoreboard only once for the player, then `BPlayerBoard board = Netherboard.instance().getBoard(player)` inside your `setScoreboard` method, in order to get...

You must put the display name of the scoreboard here

```java @EventHandler public void onPlayerJoin(PlayerJoinEvent event) { Player player = event.getPlayer(); // Create the scoreboard when the player joins Netherboard.instance().createBoard(player, "My Scoreboard"); } @EventHandler public void onPlayerQuit(PlayerQuitEvent event) { Player...

> > Hey, you wanted this question to be silly, but once I imported the core and the bukkit from the netherboard src, I have to use Netherboard. as if...

And I didn't understand your problem with your staff thing