Skip to content

Instantly share code, notes, and snippets.

View git-init-wesley's full-sized avatar
:shipit:
Software and cathedrals are the same thing - first we build them, then we pray.

ウェズリー (𝚞 𝚣𝚞𝚛ī) git-init-wesley

:shipit:
Software and cathedrals are the same thing - first we build them, then we pray.
View GitHub Profile
package me.levasseur;
import com.google.common.hash.Hashing;
import org.apache.commons.codec.DecoderException;
import org.apache.commons.codec.binary.Base32;
import org.apache.commons.codec.binary.Hex;
import java.security.SecureRandom;
import java.text.MessageFormat;
@git-init-wesley
git-init-wesley / ServerPing_B.java
Created March 22, 2020 14:31
ServeurPing builder. (BungeeCord)
package net.makiru.bungee.builders;
import net.md_5.bungee.api.Favicon;
import net.md_5.bungee.api.ServerPing;
import net.md_5.bungee.api.chat.BaseComponent;
import org.jetbrains.annotations.NotNull;
/**
* Copyright © LEVASSEUR Wesley
*
@git-init-wesley
git-init-wesley / TextComponent_B.java
Created March 22, 2020 14:30
TextComponent builder (BungeeCord, Normally spigot)
package net.makiru.bungee.builders;
import net.md_5.bungee.api.ChatColor;
import net.md_5.bungee.api.chat.*;
import org.jetbrains.annotations.NotNull;
import java.util.List;
/**
* Copyright © LEVASSEUR Wesley
@git-init-wesley
git-init-wesley / ItemStack_B.java
Created February 22, 2020 19:47
Item builder on Minecraft.
import com.google.common.collect.Multimap;
import org.bukkit.Color;
import org.bukkit.DyeColor;
import org.bukkit.Material;
import org.bukkit.OfflinePlayer;
import org.bukkit.attribute.Attribute;
import org.bukkit.attribute.AttributeModifier;
import org.bukkit.enchantments.Enchantment;
import org.bukkit.inventory.EquipmentSlot;
import org.bukkit.inventory.ItemFlag;