Skip to content

Instantly share code, notes, and snippets.

View Kr1lle's full-sized avatar

Krille Kr1lle

View GitHub Profile
@Kr1lle
Kr1lle / MoreColor.java
Last active March 19, 2024 19:05
Improved ChatColor class
package me.krille.chatcolor;
import java.awt.Color;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.annotation.Nonnull;
@Kr1lle
Kr1lle / Cape.java
Last active November 8, 2018 17:16
A utility class that allows you to create particle capes. Created by: iSach and Chris/Krille.
import org.bukkit.Color;
import org.bukkit.Location;
import org.bukkit.util.Vector;
public class Cape {
private boolean[][] shape;
private Color color;
public Cape(Color color, boolean[][] shape) {
@Kr1lle
Kr1lle / FloatingItem.java
Last active April 25, 2024 09:43
Recreation of the Emerald and Diamond generators from Hypixel BedWars
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.bukkit.Location;
import org.bukkit.entity.ArmorStand;
import org.bukkit.entity.EntityType;
import org.bukkit.inventory.ItemStack;
import org.bukkit.plugin.java.JavaPlugin;
import org.bukkit.scheduler.BukkitRunnable;