All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.cwcode.commands.paperplatform.features.ItemToGsonCommand Maven / Gradle / Ivy

package ru.cwcode.commands.paperplatform.features;

import com.google.gson.Gson;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.event.ClickEvent;
import net.kyori.adventure.text.event.HoverEvent;
import ru.cwcode.commands.paperplatform.executor.Executor;
import ru.cwcode.cwutils.messages.MessageReturn;
import ru.cwcode.cwutils.messages.TargetableMessageReturn;

public class ItemToGsonCommand extends Executor {
  @Override
  public void executeForPlayer() throws MessageReturn, TargetableMessageReturn {
    String json = new Gson().toJson(player().getInventory().getItemInMainHand().serialize());
    
    player().sendMessage(Component.text(json)
                                  .clickEvent(ClickEvent.copyToClipboard(json))
                                  .hoverEvent(HoverEvent.showText(Component.text(""))));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy