| Valor | Descrição | Valores Aceitos |
|---|---|---|
| message_when_spawn | Mensagem transmitida ao servidor quando o NPC nasce. Suporta códigos de cor com '&'. | texto |
| title_when_spawn | Título transmitido ao servidor quando o NPC nasce. Suporta códigos de cor com '&'. | texto |
| subtitle_when_spawn | Subtítulo transmitido ao servidor quando o NPC nasce. Suporta códigos de cor com '&'. | texto |
| title_when_die | Título transmitido ao servidor quando o NPC morre. Suporta códigos de cor com '&'. | texto |
| subtitle_wh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.comphenix.protocol.PacketType; | |
| import com.comphenix.protocol.ProtocolLibrary; | |
| import com.comphenix.protocol.events.PacketAdapter; | |
| import com.comphenix.protocol.events.PacketEvent; | |
| import org.bukkit.entity.Entity; | |
| import org.bukkit.entity.Player; | |
| import org.bukkit.event.Listener; | |
| import org.bukkit.plugin.Plugin; | |
| public class InternalPlayerPacketListener extends PacketAdapter implements Listener { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.draconstudios.plugins.nms.v1_8_R3; | |
| import com.google.common.collect.Lists; | |
| import com.google.common.collect.Sets; | |
| import net.draconstudios.plugins.nms.RedstoneReflectionUtil; | |
| import net.minecraft.server.v1_8_R3.*; | |
| import org.apache.commons.lang3.ArrayUtils; | |
| import org.bukkit.event.block.BlockRedstoneEvent; | |
| import java.util.Iterator; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.github.sasuked.plugins.nametagsplugin.replacement; | |
| import me.clip.placeholderapi.expansion.PlaceholderExpansion; | |
| import org.bukkit.OfflinePlayer; | |
| import org.jetbrains.annotations.NotNull; | |
| import java.util.function.BiFunction; | |
| public class PlaceholderBuilder { | |
| private String author; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package br.com.thelegion.legioncommons.chat.replacer; | |
| import org.bukkit.ChatColor; | |
| import java.util.function.Function; | |
| import java.util.function.Supplier; | |
| /** | |
| * <code> | |
| * Player player = Players.getPlayer("Sasuked"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.github.sasuked.legionguilds.utils.cache; | |
| import java.util.concurrent.TimeUnit; | |
| import java.util.function.Supplier; | |
| public class TemporaryValue<T> { | |
| private final Supplier<T> supplier; | |
| private T currentValue; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import net.milkbowl.vault.economy.Economy; | |
| import net.milkbowl.vault.economy.EconomyResponse; | |
| import org.bukkit.OfflinePlayer; | |
| import java.util.Collections; | |
| import java.util.List; | |
| public abstract class EconomyWrapper implements Economy { | |
| public boolean hasBankSupport() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.github.sasuked.gear.utils.description; | |
| import com.google.common.base.Strings; | |
| import com.google.common.collect.ImmutableList; | |
| import org.bukkit.ChatColor; | |
| import java.util.List; | |
| import java.util.function.Function; | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.github.sasuked.evento.awaiter; | |
| import org.bukkit.Bukkit; | |
| import org.bukkit.event.Event; | |
| import org.bukkit.event.EventPriority; | |
| import org.bukkit.event.HandlerList; | |
| import org.bukkit.event.Listener; | |
| import org.bukkit.plugin.Plugin; | |
| import org.bukkit.plugin.RegisteredListener; |