Skip to content

Instantly share code, notes, and snippets.

View n0ct's full-sized avatar

bZx n0ct

  • Clermont-Ferrand France
View GitHub Profile
@n0ct
n0ct / BukkitSerialization.java
Created January 27, 2019 14:39 — forked from graywolf336/BukkitSerialization.java
Serialize and deserialize the player's inventory, including armor and content.
/**
* Converts the player inventory to a String array of Base64 strings. First string is the content and second string is the armor.
*
* @param playerInventory to turn into an array of strings.
* @return Array of strings: [ main content, armor content ]
* @throws IllegalStateException
*/
public static String[] playerInventoryToBase64(PlayerInventory playerInventory) throws IllegalStateException {
//get the main content part, this doesn't return the armor
String content = toBase64(playerInventory);