Skip to content

Instantly share code, notes, and snippets.

View Day-OS's full-sized avatar
🌺
😊 Life gud

Daniela Day-OS

🌺
😊 Life gud
View GitHub Profile
@Day-OS
Day-OS / BukkitSerialization.java
Created March 19, 2023 01:08 — 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);