Skip to content

Instantly share code, notes, and snippets.

View x9nico's full-sized avatar
👍
The friends doing the strength

Nicolas RAYNAUD x9nico

👍
The friends doing the strength
View GitHub Profile
# Welcome into Configuration File
# There is all the documentation
# LobbyServerName: Name of the Server when the Player will interact with BED_ITEM (edit it only if you have enabled Give_backtolobby_item)
# Join_message: Broadcast when the Player join the Server
# Quit_message: Broadcast when the Player quit the Server
# Give_backtolobby_item: Enable or not if the Player will receive at join and respawn the item for back to Lobby's Server
# Death_message: Broadcast when a Player kill someone/ Someone who has been killed
# double_exp: Enable or not Double Exp (can be useful if you do events, etc.). It will multiply the coins given to killer per 2
# coins_given_to_killer: Points who will be given to Player when he kills someone
# rankup_message: Message who will be sent to Player when a Player will have a new Level (1, 2...)
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fr.x9nico</groupId>
<artifactId>PvPBox</artifactId>
<version>2.0.5-SNAPSHOT</version>
<repositories>
@x9nico
x9nico / ScoreboardSign.java
Created October 15, 2017 09:30 — forked from zyuiop/README.MD
A simple tool to manage scoreboards in minecraft (lines up to 48 characters !). 1.10 version : https://gist.github.com/Vinetos/1ed9bfad540452c889b65c3d97b45199 // 1.11 version : https://gist.github.com/MrZalTy/f8895d84979d49af946fbcc108b1bf2b
package net.zyuiop.scoreboard;
import net.minecraft.server.v1_8_R3.*;
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
import org.bukkit.entity.Player;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.List;