file_name
stringlengths
6
86
file_path
stringlengths
45
249
content
stringlengths
47
6.26M
file_size
int64
47
6.26M
language
stringclasses
1 value
extension
stringclasses
1 value
repo_name
stringclasses
767 values
repo_stars
int64
8
14.4k
repo_forks
int64
0
1.17k
repo_open_issues
int64
0
788
repo_created_at
stringclasses
767 values
repo_pushed_at
stringclasses
767 values
ChatColorEscaper.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/chat/ChatColorEscaper.java
package me.patothebest.gamecore.chat; import me.patothebest.gamecore.command.ChatColor; import java.util.regex.Matcher; import java.util.regex.Pattern; public class ChatColorEscaper { private static final char COLOR_CHAR = '\u00A7'; private static final Pattern STRIP_COLOR_PATTERN = Pattern.compile("(?i)[" ...
2,108
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DefaultWorldHandler.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/world/DefaultWorldHandler.java
package me.patothebest.gamecore.world; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.util.Utils; import org.bukkit.Bukkit; import org.bukkit.World; import org.bukkit.WorldCreator; import java.io.File; import java.util.concurrent.CompletableFuture; public class DefaultWorldHandler...
1,553
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaWorld.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/world/ArenaWorld.java
package me.patothebest.gamecore.world; import io.papermc.lib.PaperLib; import me.patothebest.gamecore.PluginConfig; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.option.options.EnvironmentOption; import me.patothebest.gamecore.arena.option.options.TimeOfDayOption; import me.p...
11,467
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WorldManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/world/WorldManager.java
package me.patothebest.gamecore.world; import com.google.inject.Inject; import me.patothebest.gamecore.arena.ArenaManager; import me.patothebest.gamecore.modules.ListenerModule; public class WorldManager implements ListenerModule { private final ArenaManager arenaManager; @Inject private WorldManager(ArenaM...
841
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BlankChunkGenerator.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/world/BlankChunkGenerator.java
package me.patothebest.gamecore.world; import me.patothebest.gamecore.itemstack.Material; import org.bukkit.World; import org.bukkit.block.Biome; import org.bukkit.generator.BlockPopulator; import org.bukkit.generator.ChunkGenerator; import java.util.ArrayList; import java.util.List; import java.util.Random; class B...
1,373
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WorldHandler.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/world/WorldHandler.java
package me.patothebest.gamecore.world; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.World; import java.io.File; import java.util.concurrent.CompletableFuture; public interface WorldHandler { CompletableFuture<World> loadWorld(AbstractArena arena, String worldName, World.Environment envi...
528
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
InfinityWorld.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/world/infinity/InfinityWorld.java
package me.patothebest.gamecore.world.infinity; import com.grinderwolf.swm.api.exceptions.CorruptedWorldException; import com.grinderwolf.swm.api.exceptions.NewerFormatException; import com.grinderwolf.swm.api.exceptions.UnknownWorldException; import com.grinderwolf.swm.api.exceptions.WorldInUseException; import com.g...
3,035
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SlimeWorldUtils.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/world/infinity/SlimeWorldUtils.java
package me.patothebest.gamecore.world.infinity; import com.github.luben.zstd.Zstd; import com.grinderwolf.swm.api.exceptions.CorruptedWorldException; import com.grinderwolf.swm.api.exceptions.NewerFormatException; import com.grinderwolf.swm.api.utils.NibbleArray; import com.grinderwolf.swm.api.utils.SlimeFormat; impor...
16,457
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
VersionFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/file/VersionFile.java
package me.patothebest.gamecore.file; import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.plugin.java.JavaPlugin; import java.util.HashMap; import java.util.Map; public class VersionFile extends FlatFile { // -------------------------------------------- // // FIELDS // ------------...
2,441
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
FlatFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/file/FlatFile.java
package me.patothebest.gamecore.file; import com.google.common.io.Files; import me.patothebest.gamecore.util.Utils; import org.apache.commons.lang.StringUtils; import org.bukkit.configuration.InvalidConfigurationException; import org.bukkit.configuration.file.YamlConfiguration; import org.bukkit.plugin.java.JavaPlugin...
8,925
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ParserException.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/file/ParserException.java
package me.patothebest.gamecore.file; public class ParserException extends RuntimeException { public ParserException() { } public ParserException(String message) { super(message); } public ParserException(String message, Throwable cause) { super(message, cause); } }
311
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ParserValidations.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/file/ParserValidations.java
package me.patothebest.gamecore.file; public class ParserValidations { public static void isTrue(boolean expression) { isTrue(expression, "The validated expression is false"); } public static void isTrue(boolean expression, String message) { if (!expression) { throw new Parser...
630
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PluginHookFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/file/PluginHookFile.java
package me.patothebest.gamecore.file; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.modules.Module; import me.patothebest.gamecore.util.Utils; import javax.inject.Inject; import java.io.BufferedWriter; import java.io.IOException; public class PluginHookFile extends VersionFile implements ...
951
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DeathMessagesFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/file/DeathMessagesFile.java
package me.patothebest.gamecore.file; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.modules.Module; import me.patothebest.gamecore.util.Utils; import javax.inject.Inject; import java.io.BufferedWriter; import java.io.IOException; public class DeathMessagesFile extends VersionFile implemen...
963
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
InventoryItem.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/file/InventoryItem.java
package me.patothebest.gamecore.file; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.util.Utils; import org.bukkit.configuration.serialization.ConfigurationSerializable; import org.bukkit.inventory.ItemStack; import java.util.HashMap; import java.util.List; import java.util....
2,222
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ReadOnlyFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/file/ReadOnlyFile.java
package me.patothebest.gamecore.file; import org.apache.commons.lang.StringUtils; import java.io.BufferedReader; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.nio.charset.StandardCharsets; public class ReadOnlyFile extends FlatFile { /...
2,377
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CoreConfig.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/file/CoreConfig.java
package me.patothebest.gamecore.file; import me.patothebest.gamecore.lang.CoreLocaleManager; import me.patothebest.gamecore.lang.Locale; import me.patothebest.gamecore.modules.ReloadPriority; import me.patothebest.gamecore.modules.ReloadableModule; import me.patothebest.gamecore.util.Utils; import me.patothebest.gamec...
3,349
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BungeeStateUpdate.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/api/BungeeStateUpdate.java
package me.patothebest.gamecore.api; import org.bukkit.event.Event; import org.bukkit.event.HandlerList; public class BungeeStateUpdate extends Event { private static final HandlerList handlers = new HandlerList(); private final String newMOTD; public BungeeStateUpdate(String newMOTD) { this.new...
636
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ReloadPriority.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/modules/ReloadPriority.java
package me.patothebest.gamecore.modules; import me.patothebest.gamecore.util.Priority; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * Defines the priority in which the module will be reloaded * This annotation is optional and must be used exclusively * on the class whic...
754
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ActivableModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/modules/ActivableModule.java
package me.patothebest.gamecore.modules; import me.patothebest.gamecore.injector.Activatable; public interface ActivableModule extends Module, Activatable { default void onPreEnable() {} default void onPostEnable() {} }
233
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ModulePriority.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/modules/ModulePriority.java
package me.patothebest.gamecore.modules; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.util.Priority; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * Defines the priority in which the module will be loaded * in on the {@link CorePlugin#onEnable(...
823
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ReloadableModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/modules/ReloadableModule.java
package me.patothebest.gamecore.modules; public interface ReloadableModule extends Module { void onReload(); String getReloadName(); }
147
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ModuleName.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/modules/ModuleName.java
package me.patothebest.gamecore.modules; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(value = RetentionPolicy.RUNTIME) @Target(value = ElementType.TYPE) public @interface ModuleName { St...
337
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ListenerModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/modules/ListenerModule.java
package me.patothebest.gamecore.modules; import org.bukkit.event.Listener; public interface ListenerModule extends Module, Listener { }
139
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/KitFile.java
package me.patothebest.gamecore.kit; import me.patothebest.gamecore.file.FlatFile; import java.io.File; import java.io.IOException; public class KitFile extends FlatFile { // -------------------------------------------- // // FIELDS // -------------------------------------------- // private final K...
1,130
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
NullKit.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/NullKit.java
package me.patothebest.gamecore.kit; import com.google.inject.Inject; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.permission.PermissionGroupManager; import org.bukkit.inventory.ItemStack; public class NullKit extends Kit { @Inject private NullKit(CorePlugin plugin, PermissionGroupMa...
454
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/KitModule.java
package me.patothebest.gamecore.kit; import com.google.inject.TypeLiteral; import com.google.inject.assistedinject.FactoryModuleBuilder; import com.google.inject.multibindings.MapBinder; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.commands.kit.KitCommand; import me.patothebest.gamecore.co...
1,808
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WrappedPotionEffect.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/WrappedPotionEffect.java
package me.patothebest.gamecore.kit; import com.google.common.collect.ImmutableMap; import org.apache.commons.lang.Validate; import org.bukkit.Color; import org.bukkit.configuration.serialization.SerializableAs; import org.bukkit.entity.LivingEntity; import org.bukkit.potion.PotionEffect; import org.bukkit.potion.Poti...
5,463
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/KitFactory.java
package me.patothebest.gamecore.kit; import org.bukkit.inventory.PlayerInventory; import java.sql.ResultSet; public interface KitFactory { Kit createKit(ResultSet resultSet); Kit createKit(String kitName, PlayerInventory playerInventory); }
254
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/KitManager.java
package me.patothebest.gamecore.kit; import com.google.inject.Inject; import com.google.inject.Provider; import com.google.inject.Singleton; import com.google.inject.name.Named; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstac...
4,833
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Kit.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/Kit.java
package me.patothebest.gamecore.kit; import com.google.inject.Provider; import com.google.inject.assistedinject.Assisted; import com.google.inject.assistedinject.AssistedInject; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstac...
17,454
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitLayout.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/KitLayout.java
package me.patothebest.gamecore.kit; import me.patothebest.gamecore.file.ParserException; public class KitLayout { private int[] remap = new int[36]; public KitLayout() {} public KitLayout(int[] remap) { this.remap = remap; } public KitLayout(String layout) { parseLayout(layout...
1,049
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitMySQLEntity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/entities/KitMySQLEntity.java
package me.patothebest.gamecore.kit.entities; import me.patothebest.gamecore.PluginConfig; import me.patothebest.gamecore.file.ParserException; import me.patothebest.gamecore.kit.KitLayout; import me.patothebest.gamecore.storage.mysql.MySQLEntity; import me.patothebest.gamecore.util.Utils; import me.patothebest.gameco...
7,399
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitFlatFileEntity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/entities/KitFlatFileEntity.java
package me.patothebest.gamecore.kit.entities; import me.patothebest.gamecore.kit.KitLayout; import me.patothebest.gamecore.storage.StorageException; import me.patothebest.gamecore.storage.flatfile.FlatFileEntity; import me.patothebest.gamecore.storage.flatfile.PlayerProfileFile; import me.patothebest.gamecore.kit.Kit;...
1,943
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Queries.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/entities/Queries.java
package me.patothebest.gamecore.kit.entities; import me.patothebest.gamecore.PluginConfig; class Queries { private static final String TABLE_NAME_KITS = PluginConfig.SQL_PREFIX + "_kits"; private static final String TABLE_NAME_LAYOUT = PluginConfig.SQL_PREFIX + "_kits_layouts"; static final String CREAT...
3,247
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitDefault.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/kit/defaults/KitDefault.java
package me.patothebest.gamecore.kit.defaults; import com.google.inject.Inject; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.permission.PermissionGroupManager; import me.patothebest...
1,432
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
TopEntry.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/TopEntry.java
package me.patothebest.gamecore.leaderboards; public class TopEntry { private final String name; private final Integer amount; public TopEntry(String name, Integer amount) { this.name = name; this.amount = amount; } public String getName() { return name; } public...
374
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderboardCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/LeaderboardCommand.java
package me.patothebest.gamecore.leaderboards; import me.patothebest.gamecore.chat.CommandPagination; import me.patothebest.gamecore.command.BaseCommand; import me.patothebest.gamecore.command.ChildOf; import me.patothebest.gamecore.command.Command; import me.patothebest.gamecore.command.CommandContext; import me.patot...
1,608
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderboardModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/LeaderboardModule.java
package me.patothebest.gamecore.leaderboards; import com.google.inject.assistedinject.FactoryModuleBuilder; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.injector.AbstractBukkitModule; import me.patothebest.gamecore.leaderboards.signs.AttachmentCommand; import me.patothebest.gamecore.leader...
1,481
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderboardQueries.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/LeaderboardQueries.java
package me.patothebest.gamecore.leaderboards; import me.patothebest.gamecore.PluginConfig; public class LeaderboardQueries { private final static String TABLE_NAME = PluginConfig.SQL_PREFIX + "_stats"; private final static String ORDER = " ORDER BY stat " + "DESC LIMI...
1,743
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderboardManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/LeaderboardManager.java
package me.patothebest.gamecore.leaderboards; import com.google.inject.Inject; import com.google.inject.Singleton; import me.patothebest.gamecore.modules.ModuleName; import me.patothebest.gamecore.event.EventRegistry; import me.patothebest.gamecore.event.other.LeaderboardUpdateEvent; import me.patothebest.gamecore.fil...
6,671
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
HolographicStat.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/holograms/HolographicStat.java
package me.patothebest.gamecore.leaderboards.holograms; import com.gmail.filoghost.holographicdisplays.api.Hologram; import com.gmail.filoghost.holographicdisplays.api.HologramsAPI; import com.google.inject.assistedinject.Assisted; import com.google.inject.assistedinject.AssistedInject; import me.patothebest.gamecore....
4,842
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
HolographicFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/holograms/HolographicFile.java
package me.patothebest.gamecore.leaderboards.holograms; import com.google.inject.Inject; import me.patothebest.gamecore.file.FlatFile; import me.patothebest.gamecore.modules.Module; public class HolographicFile extends FlatFile implements Module { @Inject private HolographicFile() { super("leader-hologra...
398
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
HolographicFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/holograms/HolographicFactory.java
package me.patothebest.gamecore.leaderboards.holograms; import me.patothebest.gamecore.stats.StatPeriod; import me.patothebest.gamecore.stats.Statistic; import org.bukkit.Location; import java.util.Map; public interface HolographicFactory { HolographicStat createHoloStat(LeaderHologram parent, Statistic statist...
588
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderHologramManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/holograms/LeaderHologramManager.java
package me.patothebest.gamecore.leaderboards.holograms; import com.google.inject.Inject; import com.google.inject.Singleton; import me.patothebest.gamecore.event.other.LeaderboardUpdateEvent; import me.patothebest.gamecore.file.CoreConfig; import me.patothebest.gamecore.file.ParserException; import me.patothebest.game...
4,692
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderHologram.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/holograms/LeaderHologram.java
package me.patothebest.gamecore.leaderboards.holograms; import com.gmail.filoghost.holographicdisplays.api.handler.TouchHandler; import com.google.inject.assistedinject.Assisted; import com.google.inject.assistedinject.AssistedInject; import me.patothebest.gamecore.stats.StatPeriod; import me.patothebest.gamecore.stat...
4,356
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
HolographicCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/holograms/HolographicCommand.java
package me.patothebest.gamecore.leaderboards.holograms; import me.patothebest.gamecore.chat.CommandPagination; import me.patothebest.gamecore.chat.Pagination; import me.patothebest.gamecore.command.ChatColor; import me.patothebest.gamecore.command.ChildOf; import me.patothebest.gamecore.command.Command; import me.pato...
13,435
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AttachmentCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/AttachmentCommand.java
package me.patothebest.gamecore.leaderboards.signs; import me.patothebest.gamecore.chat.CommandPagination; import me.patothebest.gamecore.command.ChildOf; import me.patothebest.gamecore.command.Command; import me.patothebest.gamecore.command.CommandContext; import me.patothebest.gamecore.command.CommandException; impo...
4,166
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AttachmentType.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/AttachmentType.java
package me.patothebest.gamecore.leaderboards.signs; import com.google.inject.Injector; import me.patothebest.gamecore.leaderboards.signs.attachments.ArmorStandAttachment; import me.patothebest.gamecore.leaderboards.signs.attachments.HologramAttachment; import me.patothebest.gamecore.leaderboards.signs.attachments.NPCA...
2,590
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Attachment.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/Attachment.java
package me.patothebest.gamecore.leaderboards.signs; import me.patothebest.gamecore.leaderboards.TopEntry; import me.patothebest.gamecore.util.SerializableObject; import javax.annotation.Nullable; import java.util.HashMap; import java.util.Map; public interface Attachment extends SerializableObject { /** * ...
1,194
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderSign.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/LeaderSign.java
package me.patothebest.gamecore.leaderboards.signs; import me.patothebest.gamecore.file.ParserValidations; import me.patothebest.gamecore.leaderboards.TopEntry; import me.patothebest.gamecore.stats.StatPeriod; import me.patothebest.gamecore.stats.Statistic; import me.patothebest.gamecore.stats.StatsManager; import me....
5,244
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderSignsFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/LeaderSignsFile.java
package me.patothebest.gamecore.leaderboards.signs; import com.google.inject.Inject; import me.patothebest.gamecore.file.FlatFile; import me.patothebest.gamecore.modules.Module; public class LeaderSignsFile extends FlatFile implements Module { @Inject private LeaderSignsFile() { super("leader-signs"); ...
386
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderSignsCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/LeaderSignsCommand.java
package me.patothebest.gamecore.leaderboards.signs; import me.patothebest.gamecore.chat.CommandPagination; import me.patothebest.gamecore.chat.Pagination; import me.patothebest.gamecore.command.ChatColor; import me.patothebest.gamecore.command.ChildOf; import me.patothebest.gamecore.command.Command; import me.patotheb...
6,105
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderSignsManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/LeaderSignsManager.java
package me.patothebest.gamecore.leaderboards.signs; import com.google.inject.Inject; import com.google.inject.Injector; import com.google.inject.Provider; import com.google.inject.Singleton; import me.patothebest.gamecore.event.other.LeaderboardUpdateEvent; import me.patothebest.gamecore.file.CoreConfig; import me.pat...
6,103
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderSignListener.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/LeaderSignListener.java
package me.patothebest.gamecore.leaderboards.signs; import com.google.inject.Inject; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.modules.ListenerModule; import me.patothebest.gamecore.permission.Permission; import me.patothebest.gamecore.util.Callback; import org.bukkit.block.Block; im...
2,989
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArmorStandAttachment.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/attachments/ArmorStandAttachment.java
package me.patothebest.gamecore.leaderboards.signs.attachments; import me.patothebest.gamecore.leaderboards.TopEntry; import me.patothebest.gamecore.leaderboards.signs.Attachment; import me.patothebest.gamecore.leaderboards.signs.AttachmentType; import me.patothebest.gamecore.leaderboards.signs.LeaderSign; import jav...
814
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SkullAttachment.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/attachments/SkullAttachment.java
package me.patothebest.gamecore.leaderboards.signs.attachments; import com.google.inject.Inject; import com.google.inject.Provider; import me.patothebest.gamecore.leaderboards.TopEntry; import me.patothebest.gamecore.leaderboards.signs.Attachment; import me.patothebest.gamecore.logger.InjectLogger; import me.patothebe...
4,451
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
HologramAttachment.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/attachments/HologramAttachment.java
package me.patothebest.gamecore.leaderboards.signs.attachments; import me.patothebest.gamecore.leaderboards.TopEntry; import me.patothebest.gamecore.leaderboards.signs.Attachment; import me.patothebest.gamecore.leaderboards.signs.AttachmentType; import me.patothebest.gamecore.leaderboards.signs.LeaderSign; import jav...
809
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
NPCAttachment.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/leaderboards/signs/attachments/NPCAttachment.java
package me.patothebest.gamecore.leaderboards.signs.attachments; import com.google.inject.Inject; import com.google.inject.Provider; import me.patothebest.gamecore.leaderboards.TopEntry; import me.patothebest.gamecore.leaderboards.signs.Attachment; import me.patothebest.gamecore.nms.NMS; import me.patothebest.gamecore....
3,198
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
StainedClay.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/itemstack/StainedClay.java
package me.patothebest.gamecore.itemstack; import me.patothebest.gamecore.util.Utils; import org.bukkit.inventory.ItemStack; public class StainedClay { public static final ItemStack WHITE = Material.WHITE_TERRACOTTA.parseItem(); public static final ItemStack ORANGE = Material.ORANGE_TERRACOTTA.parseItem(); ...
3,689
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ColoredWool.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/itemstack/ColoredWool.java
package me.patothebest.gamecore.itemstack; import me.patothebest.gamecore.util.Utils; import org.bukkit.inventory.ItemStack; public class ColoredWool { public static final ItemStack WHITE = Material.WHITE_WOOL.parseItem(); public static final ItemStack ORANGE = Material.ORANGE_WOOL.parseItem(); public st...
3,491
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
StainedGlassPane.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/itemstack/StainedGlassPane.java
package me.patothebest.gamecore.itemstack; import me.patothebest.gamecore.util.Utils; import org.bukkit.inventory.ItemStack; public class StainedGlassPane { public static final ItemStack WHITE = Material.WHITE_STAINED_GLASS_PANE.parseItem(); public static final ItemStack ORANGE = Material.ORANGE_STAINED_GLAS...
2,539
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Material.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/itemstack/Material.java
/* * The MIT License (MIT) * * Copyright (c) 2018 Hex_27 * Copyright (c) 2020 Crypto Morin * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without lim...
80,464
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
StainedGlass.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/itemstack/StainedGlass.java
package me.patothebest.gamecore.itemstack; import me.patothebest.gamecore.util.Utils; import org.bukkit.inventory.ItemStack; public class StainedGlass { public static final ItemStack WHITE = Material.WHITE_STAINED_GLASS.parseItem(); public static final ItemStack ORANGE = Material.ORANGE_STAINED_GLASS.parseIt...
2,454
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ItemStackBuilder.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/itemstack/ItemStackBuilder.java
package me.patothebest.gamecore.itemstack; import com.google.common.base.Strings; import com.google.common.collect.Lists; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.player.IPlayer; import me.patothebest.gamecore.util.EnchantGlow; i...
17,986
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PotionBuilder.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/itemstack/PotionBuilder.java
package me.patothebest.gamecore.itemstack; import org.bukkit.potion.Potion; import org.bukkit.potion.PotionType; /** * The PotionBuilder. */ @SuppressWarnings("deprecation") public class PotionBuilder extends Potion { /** * Instantiates a new potion builder. */ public PotionBuilder() { su...
1,385
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GhostFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/ghost/GhostFactory.java
package me.patothebest.gamecore.ghost; import com.google.inject.Singleton; import me.patothebest.gamecore.modules.ActivableModule; import me.patothebest.gamecore.modules.ModuleName; import org.bukkit.ChatColor; import org.bukkit.entity.Player; import org.bukkit.potion.PotionEffect; import org.bukkit.potion.PotionEffec...
4,934
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PrivateArenasModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/PrivateArenasModule.java
package me.patothebest.gamecore.privatearenas; import com.google.inject.assistedinject.FactoryModuleBuilder; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.injector.AbstractBukkitModule; import me.patothebest.gamecore.privatearenas.ui.PrivateArenaUIFactory; public class PrivateArenasModule ...
685
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PrivateArena.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/PrivateArena.java
package me.patothebest.gamecore.privatearenas; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.Bukkit; import org.bukkit.entity.Player; import java.util.ArrayList; import java.util.List; public class PrivateArena { private final String owner; private final List<String> coHosts = new Ar...
985
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PrivateArenasManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/PrivateArenasManager.java
package me.patothebest.gamecore.privatearenas; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.ArenaManager; import me.patothebest.gamecore.event.arena.ArenaPreRegenEvent; import me.patothebest.gamecore.event.player.ArenaPreLeaveEvent; import me.patothebest.gamecore.feature.fea...
7,602
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PrivateArenasCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/PrivateArenasCommand.java
package me.patothebest.gamecore.privatearenas; import me.patothebest.gamecore.command.BaseCommand; import me.patothebest.gamecore.command.ChildOf; import me.patothebest.gamecore.command.Command; import me.patothebest.gamecore.command.CommandContext; import me.patothebest.gamecore.command.CommandException; import me.pa...
2,516
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChangeMapUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/ChangeMapUI.java
package me.patothebest.gamecore.privatearenas.ui; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.gui.inventory.page.StaticPaginatedUI; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.privat...
1,816
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaOptionsUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/ArenaOptionsUI.java
package me.patothebest.gamecore.privatearenas.ui; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.privatearenas.PrivateArena; import me.patothebest.gamecore.gui.inventory.GU...
2,893
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AddPlayerToWhitelistUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/AddPlayerToWhitelistUI.java
package me.patothebest.gamecore.privatearenas.ui; import me.patothebest.gamecore.gui.inventory.button.ConfirmButton; import me.patothebest.gamecore.gui.inventory.page.StaticPaginatedUI; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.priva...
3,318
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
MovePlayersUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/MovePlayersUI.java
package me.patothebest.gamecore.privatearenas.ui; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.gui.inventory.page.DualListPage; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.arena.Abstr...
4,961
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PrivateArenaUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/PrivateArenaUI.java
package me.patothebest.gamecore.privatearenas.ui; import com.google.inject.assistedinject.Assisted; import com.google.inject.assistedinject.AssistedInject; import me.patothebest.gamecore.gui.inventory.button.ConfirmButton; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore...
6,645
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RemoveCoHostUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/RemoveCoHostUI.java
package me.patothebest.gamecore.privatearenas.ui; import me.patothebest.gamecore.gui.inventory.button.ConfirmButton; import me.patothebest.gamecore.gui.inventory.page.StaticPaginatedUI; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.priva...
3,000
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SelectTeamUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/SelectTeamUI.java
package me.patothebest.gamecore.privatearenas.ui; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.gui.inventory.page.DynamicPaginatedUI; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.arena...
2,533
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GiveCoHostUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/GiveCoHostUI.java
package me.patothebest.gamecore.privatearenas.ui; import me.patothebest.gamecore.gui.inventory.button.ConfirmButton; import me.patothebest.gamecore.gui.inventory.page.StaticPaginatedUI; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.priva...
2,797
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RemovePlayerFromWhitelistUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/RemovePlayerFromWhitelistUI.java
package me.patothebest.gamecore.privatearenas.ui; import me.patothebest.gamecore.gui.inventory.button.ConfirmButton; import me.patothebest.gamecore.gui.inventory.page.StaticPaginatedUI; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.privatearenas.PrivateArena; import me.patothebest.gameco...
2,267
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PrivateArenaUIFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/PrivateArenaUIFactory.java
package me.patothebest.gamecore.privatearenas.ui; import me.patothebest.gamecore.privatearenas.PrivateArena; import org.bukkit.entity.Player; public interface PrivateArenaUIFactory { PrivateArenaUI createPrivateArenaMenu(Player player, PrivateArena privateArena); }
274
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
MoveSpectatorsUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/MoveSpectatorsUI.java
package me.patothebest.gamecore.privatearenas.ui; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.gui.inventory.page.DualListPage; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.arena.Abstr...
3,461
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KickPlayerUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/privatearenas/ui/KickPlayerUI.java
package me.patothebest.gamecore.privatearenas.ui; import me.patothebest.gamecore.gui.inventory.button.ConfirmButton; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.gui.inventory.page.StaticPaginatedUI; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest...
2,352
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ActionBar.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/actionbar/ActionBar.java
package me.patothebest.gamecore.actionbar; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.util.Utils; import net.md_5.bungee.api.ChatMessageType; import net.md_5.bungee.api.chat.TextComponent; import org.bukkit.entity.Player; import java.lang.reflect.Method; public class ActionB...
2,805
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Activatable.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/injector/Activatable.java
package me.patothebest.gamecore.injector; /** * The Interface Activatable. */ public interface Activatable { /** * Method called on plugin enable. */ default void onEnable() {} /** * Method called on plugin disable. */ default void onDisable() {} }
291
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
InstanceProvider.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/injector/InstanceProvider.java
package me.patothebest.gamecore.injector; public interface InstanceProvider<T> { /** * Provides an instance of {@code T}. Must never return {@code null}. */ T newInstance(); }
197
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BukkitInjector.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/injector/BukkitInjector.java
package me.patothebest.gamecore.injector; import com.google.inject.Guice; import com.google.inject.Injector; import com.google.inject.Stage; import me.patothebest.gamecore.CorePlugin; /** * The class that creates the injector * * @param <T> the plugin */ public class BukkitInjector<T extends CorePlugin> { /*...
642
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BukkitModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/injector/BukkitModule.java
package me.patothebest.gamecore.injector; import com.google.inject.AbstractModule; import me.patothebest.gamecore.CorePlugin; import org.bukkit.plugin.Plugin; import org.bukkit.plugin.java.JavaPlugin; /** * A Guice module used by our plugins that can be * installed in guice * * @param <T> the generic type */ pub...
1,050
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GuiceInjectorAdapter.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/injector/GuiceInjectorAdapter.java
package me.patothebest.gamecore.injector; import com.google.inject.Injector; import javax.inject.Inject; import javax.inject.Provider; /** * An adpater for the injector from the command framework. */ public class GuiceInjectorAdapter implements me.patothebest.gamecore.command.Injector { /** The injector. */ ...
1,032
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AbstractBukkitModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/injector/AbstractBukkitModule.java
package me.patothebest.gamecore.injector; import com.google.inject.AbstractModule; import com.google.inject.Singleton; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.modules.Module; /** * The Class AbstractBukkitModule. * * @param <T> the plugin type */ public abstract class AbstractBuk...
1,176
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Selection.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/selection/Selection.java
package me.patothebest.gamecore.selection; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.vector.Cuboid; import org.bukkit.Location; public class Selection { private Location pointA; private Location pointB; public Location getPointA() { return pointA; } ...
819
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DefaultSelectionManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/selection/DefaultSelectionManager.java
package me.patothebest.gamecore.selection; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.permission.Permission; import me.patothebest.gamecore.modules.Module; import me.patothebest.gamecore.player.PlayerManager; import org.bukkit.Material; import org.bukkit.entity.Player; import org.bukk...
2,996
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SelectionManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/selection/SelectionManager.java
package me.patothebest.gamecore.selection; import org.bukkit.entity.Player; import org.bukkit.event.Listener; public interface SelectionManager extends Listener { Selection getSelection(Player player); }
211
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaLocation.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/vector/ArenaLocation.java
package me.patothebest.gamecore.vector; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.Bukkit; import org.bukkit.Chunk; import org.bukkit.Location; import org.bukkit.Utility; import org.bukkit.World; import org.bukkit.block.Block; import org.bukkit.configuration.serialization.ConfigurationSerial...
21,004
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Cuboid.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/vector/Cuboid.java
package me.patothebest.gamecore.vector; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.util.NameableObject; import org.bukkit.Bukkit; import org.bukkit.Chunk; import org.bukkit.Location; import org.bukkit.Material; import org.bukkit.Worl...
15,734
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CuboidIterator.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/vector/CuboidIterator.java
package me.patothebest.gamecore.vector; import org.bukkit.World; import org.bukkit.block.Block; import java.util.Iterator; class CuboidIterator implements Iterator<Block> { // -------------------------------------------- // // FIELDS // -------------------------------------------- // private final ...
1,663
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BungeeArena.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/bungee/BungeeArena.java
package me.patothebest.gamecore.bungee; import com.google.inject.Injector; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.AbstractGameTeam; import org.bukkit.DyeColor; import java.util.Map; public class BungeeArena extends AbstractArena { public BungeeArena(String name,...
1,115
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ConfirmCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/commands/ConfirmCommand.java
package me.patothebest.gamecore.commands; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; import com.google.inject.Singleton; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.command.BaseCommand; import me.patothebest.gamecore.command.ChildOf; import me.pa...
1,776
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DebugCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/commands/DebugCommand.java
package me.patothebest.gamecore.commands; import com.google.inject.Inject; import com.google.inject.Provider; import me.patothebest.gamecore.combat.CombatEntry; import me.patothebest.gamecore.command.ChatColor; import me.patothebest.gamecore.command.HiddenCommand; import me.patothebest.gamecore.cosmetics.cage.CageStru...
16,720
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaSetupCommands.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/commands/setup/ArenaSetupCommands.java
package me.patothebest.gamecore.commands.setup; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.selection.Selection; import me.patothebest.gamecore.selection.SelectionManager; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.ArenaManager; import me.p...
15,584
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z