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
Utils.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/util/Utils.java
package me.patothebest.gamecore.util; import com.google.common.io.ByteStreams; import me.patothebest.gamecore.PluginConfig; import me.patothebest.gamecore.actionbar.ActionBar; import me.patothebest.gamecore.chat.DefaultFontInfo; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore....
88,658
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
EnchantGlow.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/util/EnchantGlow.java
package me.patothebest.gamecore.util; import org.bukkit.enchantments.Enchantment; public class EnchantGlow { private static Enchantment glow; public static void setGlow(Enchantment glow) { EnchantGlow.glow = glow; } public static Enchantment getGlow() { return glow; } }
311
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ThrowableConsumer.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/util/ThrowableConsumer.java
package me.patothebest.gamecore.util; import java.util.function.Consumer; @FunctionalInterface public interface ThrowableConsumer<T> extends Consumer<T> { default void accept(T t) { try { acceptThrows(t); } catch (final Exception e) { throw new RuntimeException(e); ...
378
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ServerVersion.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/util/ServerVersion.java
package me.patothebest.gamecore.util; import org.bukkit.Bukkit; public class ServerVersion { public static String getVersion() { return Bukkit.getServer().getClass().getPackage().getName().replace(".", ",").split(",")[3]; } public static String getBukkitVersion() { return Bukkit.getVersi...
335
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
StringUtil.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/util/StringUtil.java
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team and contributors * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by the * Free Sof...
10,775
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SerializableObject.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/util/SerializableObject.java
package me.patothebest.gamecore.util; import org.bukkit.configuration.serialization.ConfigurationSerializable; import java.util.HashMap; import java.util.Map; /** * Represents an object that may be serialized. */ public interface SerializableObject extends ConfigurationSerializable { /** * Creates a Map ...
793
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ObjectProvider.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/util/ObjectProvider.java
package me.patothebest.gamecore.util; import java.util.Map; public interface ObjectProvider<T> { T loadObject(String configName, Map<String, Object> data); }
166
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopItem.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/ShopItem.java
package me.patothebest.gamecore.cosmetics.shop; import me.patothebest.gamecore.util.NameableObject; import org.bukkit.inventory.ItemStack; import java.util.List; public interface ShopItem extends NameableObject { List<String> getDescription(); int getPrice(); ItemStack getDisplayItem(); String ge...
465
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopMenu.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/ShopMenu.java
package me.patothebest.gamecore.cosmetics.shop; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.gui.inventory.button.ClickTypeButton; import me.patothebest.gamecore...
6,779
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/ShopFactory.java
package me.patothebest.gamecore.cosmetics.shop; import me.patothebest.gamecore.player.IPlayer; import org.bukkit.entity.Player; import org.bukkit.inventory.ItemStack; public interface ShopFactory { <ShopItemType extends ShopItem, PlayerType extends IPlayer> ShopMenu<ShopItemType, PlayerType> createShopMenu(Playe...
602
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AbstractShopItem.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/AbstractShopItem.java
package me.patothebest.gamecore.cosmetics.shop; import java.util.Collections; import java.util.List; import java.util.Map; public abstract class AbstractShopItem implements ShopItem { private final String configName; private final String displayName; private final List<String> description; private fi...
1,626
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopRegistry.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/ShopRegistry.java
package me.patothebest.gamecore.cosmetics.shop; import com.google.inject.Inject; import com.google.inject.Singleton; import me.patothebest.gamecore.modules.ModuleName; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.logger.InjectLogger; import me.patothebest.gamecore.modules.ActivableModule; ...
1,751
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopAction.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/ShopAction.java
package me.patothebest.gamecore.cosmetics.shop; public enum ShopAction { SELECT, BUY, DO_NOTHING }
114
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopMenuUses.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/ShopMenuUses.java
package me.patothebest.gamecore.cosmetics.shop; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.CorePlugin; import me.patot...
5,546
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/ShopCommand.java
package me.patothebest.gamecore.cosmetics.shop; import me.patothebest.gamecore.lang.CoreLang; 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....
14,475
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/ShopManager.java
package me.patothebest.gamecore.cosmetics.shop; import me.patothebest.gamecore.lang.interfaces.ILang; import java.util.Collection; import java.util.Map; public interface ShopManager<ShopItemType extends ShopItem> { Collection<ShopItemType> getShopItems(); ILang getTitle(); ILang getName(); Map<St...
434
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AbstractShopManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/AbstractShopManager.java
package me.patothebest.gamecore.cosmetics.shop; import me.patothebest.gamecore.logger.InjectImplementationLogger; import me.patothebest.gamecore.phase.phases.GamePhase; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.event.arena.ArenaPhaseChangeEvent; import me.patothebest.gamecore.event.play...
7,779
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopFactoryImpl.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/ShopFactoryImpl.java
package me.patothebest.gamecore.cosmetics.shop; import com.google.inject.Inject; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.player.IPlayer; import me.patothebest.gamecore.player.PlayerManager; import net.milkbowl.vault.economy.Economy; import org.bukkit.entity.Player; import org.bukkit.i...
1,482
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/ShopModule.java
package me.patothebest.gamecore.cosmetics.shop; import me.patothebest.gamecore.storage.StorageModule; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.cosmetics.shop.entities.ShopFlatFileEntity; import me.patothebest.gamecore.cosmetics.shop.entities.ShopMySQLEntity; import me.patothebest.gamec...
963
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopMySQLEntity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/entities/ShopMySQLEntity.java
package me.patothebest.gamecore.cosmetics.shop.entities; import com.google.inject.Inject; import com.google.inject.Singleton; import me.patothebest.gamecore.cosmetics.shop.ShopItem; import me.patothebest.gamecore.cosmetics.shop.ShopManager; import me.patothebest.gamecore.cosmetics.shop.ShopRegistry; import me.patotheb...
7,632
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopFlatFileEntity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/shop/entities/ShopFlatFileEntity.java
package me.patothebest.gamecore.cosmetics.shop.entities; import com.google.inject.Inject; import me.patothebest.gamecore.cosmetics.shop.ShopRegistry; import me.patothebest.gamecore.player.CorePlayer; import me.patothebest.gamecore.storage.StorageException; import me.patothebest.gamecore.storage.flatfile.FlatFileEntity...
877
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/cosmetics/shop/entities/Queries.java
package me.patothebest.gamecore.cosmetics.shop.entities; import me.patothebest.gamecore.PluginConfig; class Queries { private static final String OWNED_ITEMS_TABLE_NAME = PluginConfig.SQL_PREFIX + "_owned_items"; private static final String SELECTED_ITEMS_TABLE_NAME = PluginConfig.SQL_PREFIX + "_selected_ite...
2,704
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CageStructure.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/cage/CageStructure.java
package me.patothebest.gamecore.cosmetics.cage; import com.google.inject.Provider; import me.patothebest.gamecore.nms.NMS; import me.patothebest.gamecore.util.Callback; import org.bukkit.Location; import org.bukkit.block.Block; public enum CageStructure { INDIVIDUAL(new int[3][5][3], structure -> { struc...
4,403
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Cage.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/cage/Cage.java
package me.patothebest.gamecore.cosmetics.cage; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.cosmetics.shop.AbstractShopItem; import me.patothebest.gamecore.file.ParserException; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Sta...
2,308
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CageManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/cage/CageManager.java
package me.patothebest.gamecore.cosmetics.cage; import com.google.inject.Inject; import com.google.inject.Singleton; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.modules.ModuleName; ...
1,534
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CageModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/cage/CageModule.java
package me.patothebest.gamecore.cosmetics.cage; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.injector.AbstractBukkitModule; public class CageModule extends AbstractBukkitModule<CorePlugin> { public CageModule(CorePlugin plugin) { super(plugin); } @Override protec...
394
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CageModel.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/cage/model/CageModel.java
package me.patothebest.gamecore.cosmetics.cage.model; import me.patothebest.gamecore.cosmetics.cage.CageStructure; import me.patothebest.gamecore.itemstack.Material; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.model.AbstractModel; import me.patothebest.gamecore.nms.NMS; im...
1,420
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ProjectileManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/projectiletrails/ProjectileManager.java
package me.patothebest.gamecore.cosmetics.projectiletrails; import com.google.inject.Inject; import com.google.inject.Singleton; import me.patothebest.gamecore.cosmetics.shop.AbstractShopManager; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.g...
2,651
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ProjectileTracker.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/projectiletrails/ProjectileTracker.java
package me.patothebest.gamecore.cosmetics.projectiletrails; import com.google.inject.Inject; import com.google.inject.Singleton; import fr.mrmicky.fastparticle.FastParticle; import me.patothebest.gamecore.modules.ModuleName; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.modules.ActivableMod...
1,838
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ProjectileTrail.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/projectiletrails/ProjectileTrail.java
package me.patothebest.gamecore.cosmetics.projectiletrails; import fr.mrmicky.fastparticle.ParticleType; import me.patothebest.gamecore.cosmetics.shop.AbstractShopItem; import me.patothebest.gamecore.file.ParserValidations; import me.patothebest.gamecore.util.Utils; import org.bukkit.inventory.ItemStack; import java....
1,465
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
TrackedProjectile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/projectiletrails/TrackedProjectile.java
package me.patothebest.gamecore.cosmetics.projectiletrails; import fr.mrmicky.fastparticle.ParticleType; import org.bukkit.entity.Projectile; import java.lang.ref.WeakReference; class TrackedProjectile { private final WeakReference<Projectile> projectile; private final ProjectileTrail projectileTrail; p...
1,321
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
TrackedWalkTrail.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/walkparticles/TrackedWalkTrail.java
package me.patothebest.gamecore.cosmetics.walkparticles; import fr.mrmicky.fastparticle.ParticleType; class TrackedWalkTrail { private final WalkTrail walkTrail; private int ticksLived; TrackedWalkTrail(WalkTrail walkTrail) { this.walkTrail = walkTrail; } ParticleType getParticleType() ...
534
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WalkTrail.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/walkparticles/WalkTrail.java
package me.patothebest.gamecore.cosmetics.walkparticles; import fr.mrmicky.fastparticle.ParticleType; import me.patothebest.gamecore.cosmetics.shop.AbstractShopItem; import me.patothebest.gamecore.file.ParserValidations; import me.patothebest.gamecore.util.Utils; import org.bukkit.inventory.ItemStack; import java.uti...
1,399
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WalkTrailsManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/walkparticles/WalkTrailsManager.java
package me.patothebest.gamecore.cosmetics.walkparticles; import com.google.inject.Inject; import com.google.inject.Singleton; import fr.mrmicky.fastparticle.FastParticle; import fr.mrmicky.fastparticle.ParticleType; import me.patothebest.gamecore.cosmetics.shop.AbstractShopManager; import me.patothebest.gamecore.event...
4,540
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RepeatingVictoryEffect.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/victoryeffects/RepeatingVictoryEffect.java
package me.patothebest.gamecore.cosmetics.victoryeffects; import com.google.inject.Inject; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.player.IPlayer; import me.patothebest.gamecore.util.WrappedBukkitRunnable; import java.util.concurrent.atomic.AtomicInteger; public abstract class Repea...
1,224
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
IVictoryEffect.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/victoryeffects/IVictoryEffect.java
package me.patothebest.gamecore.cosmetics.victoryeffects; import me.patothebest.gamecore.player.IPlayer; import org.bukkit.event.Listener; public interface IVictoryEffect extends Listener { void display(IPlayer player); }
229
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
VictoryEffectItem.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/victoryeffects/VictoryEffectItem.java
package me.patothebest.gamecore.cosmetics.victoryeffects; import com.google.common.base.Preconditions; import me.patothebest.gamecore.cosmetics.shop.AbstractShopItem; import me.patothebest.gamecore.player.IPlayer; import me.patothebest.gamecore.util.Utils; import org.bukkit.inventory.ItemStack; import java.util.Map; ...
1,195
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
VictoryEffectType.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/victoryeffects/VictoryEffectType.java
package me.patothebest.gamecore.cosmetics.victoryeffects; import com.google.inject.Injector; import me.patothebest.gamecore.cosmetics.victoryeffects.types.DayCycleVictoryEffect; import me.patothebest.gamecore.cosmetics.victoryeffects.types.FireworkVictoryEffect; import me.patothebest.gamecore.cosmetics.victoryeffects....
1,315
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
VictoryManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/victoryeffects/VictoryManager.java
package me.patothebest.gamecore.cosmetics.victoryeffects; import com.google.inject.Inject; import com.google.inject.Injector; import com.google.inject.Provider; import com.google.inject.Singleton; import me.patothebest.gamecore.cosmetics.shop.AbstractShopManager; import me.patothebest.gamecore.lang.CoreLang; import me...
1,970
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
DayCycleVictoryEffect.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/victoryeffects/types/DayCycleVictoryEffect.java
package me.patothebest.gamecore.cosmetics.victoryeffects.types; import me.patothebest.gamecore.cosmetics.victoryeffects.RepeatingVictoryEffect; import me.patothebest.gamecore.player.IPlayer; import org.bukkit.World; public class DayCycleVictoryEffect extends RepeatingVictoryEffect { @Override public void dis...
532
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RainDiscoVictoryEffect.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/victoryeffects/types/RainDiscoVictoryEffect.java
package me.patothebest.gamecore.cosmetics.victoryeffects.types; import com.google.inject.Inject; import com.google.inject.Provider; import me.patothebest.gamecore.cosmetics.victoryeffects.RepeatingVictoryEffect; import me.patothebest.gamecore.itemstack.StainedClay; import me.patothebest.gamecore.nms.NMS; import me.pat...
1,788
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LavaPopVictoryEffect.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/victoryeffects/types/LavaPopVictoryEffect.java
package me.patothebest.gamecore.cosmetics.victoryeffects.types; import fr.mrmicky.fastparticle.FastParticle; import fr.mrmicky.fastparticle.ParticleType; import me.patothebest.gamecore.cosmetics.victoryeffects.RepeatingVictoryEffect; import me.patothebest.gamecore.player.IPlayer; public class LavaPopVictoryEffect ext...
655
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RainWoolVictoryEffect.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/victoryeffects/types/RainWoolVictoryEffect.java
package me.patothebest.gamecore.cosmetics.victoryeffects.types; import com.google.inject.Inject; import com.google.inject.Provider; import me.patothebest.gamecore.cosmetics.victoryeffects.RepeatingVictoryEffect; import me.patothebest.gamecore.itemstack.ColoredWool; import me.patothebest.gamecore.nms.NMS; import me.pat...
1,786
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
FireworkVictoryEffect.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/cosmetics/victoryeffects/types/FireworkVictoryEffect.java
package me.patothebest.gamecore.cosmetics.victoryeffects.types; import me.patothebest.gamecore.cosmetics.victoryeffects.RepeatingVictoryEffect; import me.patothebest.gamecore.player.IPlayer; import me.patothebest.gamecore.util.Utils; import org.bukkit.entity.EntityType; import org.bukkit.entity.Firework; import org.bu...
858
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CoreLocaleManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/lang/CoreLocaleManager.java
package me.patothebest.gamecore.lang; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.util.Utils; import org.bukkit.ChatColor; import java.io.File; import java.io.IOException; import java.net.URISyntaxException; import java.util.Map; impo...
2,822
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CoreComments.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/lang/CoreComments.java
package me.patothebest.gamecore.lang; import me.patothebest.gamecore.lang.interfaces.IComment; public enum CoreComments implements IComment { COMMAND_DESCRIPTIONS(false, "Command Descriptions"), USER_COMMANDS(true, "", "User Commands"), ERRORS_IN_CMD_ARGS(false, "", "Errors in command arguments"), S...
2,692
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LocaleFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/lang/LocaleFile.java
package me.patothebest.gamecore.lang; import me.patothebest.gamecore.lang.interfaces.IComment; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.chat.ChatColorEscaper; import me.patothebest.gamecore.file.FlatFile; import org.bukkit.configura...
4,737
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CoreLang.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/lang/CoreLang.java
package me.patothebest.gamecore.lang; import me.patothebest.gamecore.PluginConfig; import me.patothebest.gamecore.chat.ChatColorEscaper; import me.patothebest.gamecore.lang.interfaces.IComment; import me.patothebest.gamecore.lang.interfaces.ILang; import org.apache.commons.lang.StringUtils; import java.util.HashMap; ...
46,780
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LangComment.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/lang/LangComment.java
package me.patothebest.gamecore.lang; import me.patothebest.gamecore.lang.interfaces.IComment; public class LangComment implements IComment { private final String[] lines; private final boolean isHeader; public LangComment(CommentType commentType, String line) { this.isHeader = commentType == Co...
612
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CommentType.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/lang/CommentType.java
package me.patothebest.gamecore.lang; public enum CommentType { HEADER, SUBHEADER_SPACED, SUBHEADER_NOT_SPACED }
128
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LocaleGenerator.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/lang/LocaleGenerator.java
package me.patothebest.gamecore.lang; import me.patothebest.gamecore.chat.ChatColorEscaper; import me.patothebest.gamecore.lang.interfaces.ILang; import java.io.File; import java.io.FileWriter; import java.io.IOException; public class LocaleGenerator { public static void main(String[] args) { if(args[1]...
1,467
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Locale.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/lang/Locale.java
package me.patothebest.gamecore.lang; public class Locale { private final String name; public Locale(String name) { this.name = name; } public String getName() { return name; } }
219
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ILang.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/lang/interfaces/ILang.java
package me.patothebest.gamecore.lang.interfaces; import me.patothebest.gamecore.lang.CoreLocaleManager; import me.patothebest.gamecore.lang.Locale; import me.patothebest.gamecore.player.IPlayer; import me.patothebest.gamecore.player.PlayerManager; import me.patothebest.gamecore.util.NameableObject; import org.bukkit.C...
4,015
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
IComment.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/lang/interfaces/IComment.java
package me.patothebest.gamecore.lang.interfaces; public interface IComment { String[] getLines(); boolean isHeader(); }
132
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaState.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/ArenaState.java
package me.patothebest.gamecore.arena; import me.patothebest.gamecore.command.ChatColor; import org.bukkit.DyeColor; public enum ArenaState { WAITING("Waiting", ChatColor.GREEN, DyeColor.LIME), STARTING("Starting", ChatColor.GREEN, DyeColor.LIME), IN_GAME("In-Game", ChatColor.GOLD, DyeColor.ORANGE), ...
1,109
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/ArenaFile.java
package me.patothebest.gamecore.arena; import me.patothebest.gamecore.file.FlatFile; import java.io.File; public class ArenaFile extends FlatFile { // -------------------------------------------- // // FIELDS // -------------------------------------------- // private final AbstractArena arena; ...
1,147
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/ArenaFactory.java
package me.patothebest.gamecore.arena; import com.google.inject.assistedinject.Assisted; public interface ArenaFactory { AbstractArena create(@Assisted("name") String name, @Assisted("worldName") String worldName); }
225
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AbstractGameTeam.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/AbstractGameTeam.java
package me.patothebest.gamecore.arena; import me.patothebest.gamecore.player.IPlayer; import me.patothebest.gamecore.player.modifiers.KitModifier; import me.patothebest.gamecore.util.Utils; import me.patothebest.gamecore.vector.ArenaLocation; import me.patothebest.gamecore.util.NameableObject; import org.bukkit.DyeCol...
3,781
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaGroup.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/ArenaGroup.java
package me.patothebest.gamecore.arena; public class ArenaGroup { public final static ArenaGroup DEFAULT_GROUP = new ArenaGroup("none"); private final String name; public ArenaGroup(String name) { this.name = name; } public String getName() { return name; } }
304
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AbstractArena.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/AbstractArena.java
package me.patothebest.gamecore.arena; import com.google.inject.Injector; import com.google.inject.Provider; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.actionbar.ActionBar; import me.patothebest.gamecore.arena.modes.bungee.AdvancedBungeeMode; import me.patothebest.gamecore.arena.option.A...
46,111
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/ArenaManager.java
package me.patothebest.gamecore.arena; import com.google.inject.Inject; import com.google.inject.Singleton; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.event.arena.ArenaLoadEvent; import me.patothebest.gamecore.logger.InjectLogger; import me.patothebest.gamecore.logger.Logger; import me.p...
8,241
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AdvancedBungeeModeCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/bungee/AdvancedBungeeModeCommand.java
package me.patothebest.gamecore.arena.modes.bungee; import com.google.inject.Inject; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.chat.CommandPagination; import me.patothebest.gamecore.command.BaseCommand; import me.patothebest.gamecore.command.ChildOf; import me.patothebest.gamecore.co...
4,923
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BungeeModeCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/bungee/BungeeModeCommand.java
package me.patothebest.gamecore.arena.modes.bungee; import com.google.inject.Inject; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.command.ChildOf; import me.patothebest.gamecore.command.Command; import me.patothebest.gamecore.command.CommandContext; import me.patothebest.gamecore.comman...
2,420
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BungeeHandler.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/bungee/BungeeHandler.java
package me.patothebest.gamecore.arena.modes.bungee; import com.google.common.io.ByteArrayDataOutput; import com.google.common.io.ByteStreams; import com.google.inject.Inject; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.modules.ActivableModule; import me.patothebest.gamecore.modules.Module...
1,041
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BungeeMode.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/bungee/BungeeMode.java
package me.patothebest.gamecore.arena.modes.bungee; import com.google.inject.Inject; import me.patothebest.gamecore.api.BungeeStateUpdate; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.ArenaManager; import me.patothebest.gamecore.event.EventRegistry; import me.patothebest.gam...
11,029
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AdvancedBungeeMode.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/bungee/AdvancedBungeeMode.java
package me.patothebest.gamecore.arena.modes.bungee; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; import com.google.inject.Inject; import me.patothebest.gamecore.api.BungeeStateUpdate; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.ArenaMan...
15,182
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SlimeRandomArenaGroup.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/slimerandom/SlimeRandomArenaGroup.java
package me.patothebest.gamecore.arena.modes.slimerandom; import com.google.inject.Provider; import com.grinderwolf.swm.api.loaders.SlimeLoader; import com.grinderwolf.swm.api.world.properties.SlimePropertyMap; import com.grinderwolf.swm.internal.com.flowpowered.nbt.CompoundMap; import com.grinderwolf.swm.internal.com....
4,096
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChooseGroup.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/random/ChooseGroup.java
package me.patothebest.gamecore.arena.modes.random; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.gui.inventory.page.DynamicPaginatedUI; import me.patothebest.gamecore.lang.CoreLang; im...
1,406
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RandomArenaGroup.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/random/RandomArenaGroup.java
package me.patothebest.gamecore.arena.modes.random; import com.google.inject.Provider; import me.patothebest.gamecore.event.player.ArenaPreJoinEvent; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.ArenaManager; import me.patothebes...
11,219
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RandomArenaMode.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/random/RandomArenaMode.java
package me.patothebest.gamecore.arena.modes.random; import com.google.inject.Inject; import com.google.inject.Provider; import me.patothebest.gamecore.PluginConfig; import me.patothebest.gamecore.arena.ArenaManager; import me.patothebest.gamecore.event.EventRegistry; import me.patothebest.gamecore.file.CoreConfig; imp...
6,031
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChooseMap.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/random/ChooseMap.java
package me.patothebest.gamecore.arena.modes.random; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.gui.inventory.page.DynamicPaginatedUI; import me.patothebest.gamecore.lang.CoreLang; im...
2,823
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RandomArenaModeModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/random/RandomArenaModeModule.java
package me.patothebest.gamecore.arena.modes.random; import com.google.inject.assistedinject.FactoryModuleBuilder; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.injector.AbstractBukkitModule; public class RandomArenaModeModule extends AbstractBukkitModule<CorePlugin> { public RandomAre...
626
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RandomArenaUIFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/random/RandomArenaUIFactory.java
package me.patothebest.gamecore.arena.modes.random; import org.bukkit.entity.Player; public interface RandomArenaUIFactory { ChooseGroup createChooseGroupUI(Player player); ChooseMap createChooseMapUI(Player player, RandomArenaGroup randomArenaGroup); }
267
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RandomArenaModeCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/modes/random/RandomArenaModeCommand.java
package me.patothebest.gamecore.arena.modes.random; import com.google.inject.Inject; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.chat.CommandPagination; import me.patothebest.gamecore.command.BaseCommand; import me.patothebest.gamecore.command.ChildOf; import me.patothebest.gamecore.co...
4,123
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChestArena.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/types/ChestArena.java
package me.patothebest.gamecore.arena.types; import me.patothebest.gamecore.feature.features.chests.refill.ChestLocation; import me.patothebest.gamecore.vector.ArenaLocation; import java.util.List; public interface ChestArena { List<ArenaLocation> getArenaChests(ChestLocation chestLocation); }
304
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CentrableArena.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/types/CentrableArena.java
package me.patothebest.gamecore.arena.types; import org.bukkit.Location; public interface CentrableArena { Location getCenterLocation(); }
147
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SpawneableArena.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/types/SpawneableArena.java
package me.patothebest.gamecore.arena.types; import me.patothebest.gamecore.vector.ArenaLocation; import java.util.List; public interface SpawneableArena { List<ArenaLocation> getSpawns(); int getSpawnHeight(); }
227
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaOption.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/option/ArenaOption.java
package me.patothebest.gamecore.arena.option; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.feature.AbstractFeature; import me.patothebest.gamecore.util.NameableObject; import me.patothebest.gamecore.util.SerializableObject; import org.bukkit.command.CommandSender; import java.u...
646
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
OptionCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/option/OptionCommand.java
package me.patothebest.gamecore.arena.option; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.ArenaManager; import me.patothebest.gamecore.arena.option.options.EnableableOption; import me.patothebest.gamecore.arena.option.options.En...
9,848
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
TNTExplosionOption.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/option/options/TNTExplosionOption.java
package me.patothebest.gamecore.arena.option.options; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.lang.interfaces.ILang; import org.bukkit.Material; import org.bukkit.entity.EntityType; import org.bukkit.event.EventHandler; import org.bukkit.event.entity.EntityExplodeEvent; public cla...
1,001
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
TimeOfDayOption.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/option/options/TimeOfDayOption.java
package me.patothebest.gamecore.arena.option.options; import me.patothebest.gamecore.arena.option.ArenaOption; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.util.Utils; import org.bukkit.command.CommandSender; import java.util.Map; ...
1,714
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
EnableableOption.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/option/options/EnableableOption.java
package me.patothebest.gamecore.arena.option.options; import me.patothebest.gamecore.arena.option.ArenaOption; import me.patothebest.gamecore.lang.CoreLang; import org.bukkit.command.CommandSender; import java.util.Map; public abstract class EnableableOption extends ArenaOption { private boolean enabled; p...
1,071
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
EnvironmentOption.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/arena/option/options/EnvironmentOption.java
package me.patothebest.gamecore.arena.option.options; import me.patothebest.gamecore.arena.option.ArenaOption; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.lang.interfaces.ILang; import me.patothebest.gamecore.util.Utils; import org.bukkit.World; import org.bukkit.command.CommandSender;...
1,625
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestType.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/QuestType.java
package me.patothebest.gamecore.quests; import me.patothebest.gamecore.util.NameableObject; import org.bukkit.event.Listener; public interface QuestType extends NameableObject, Listener { }
192
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestsStatus.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/QuestsStatus.java
package me.patothebest.gamecore.quests; public enum QuestsStatus { IN_PROGRESS(0), COMPLETED(1), FAILED(2); private final int statusCode; QuestsStatus(int statusCode) { this.statusCode = statusCode; } public static QuestsStatus fromCode(int code) { return values()[code];...
396
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestsCommand.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/QuestsCommand.java
package me.patothebest.gamecore.quests; import com.google.inject.Inject; import me.patothebest.gamecore.command.*; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.modules.RegisteredCommandModule; import me.patothebest.gamecore.quests.ui.QuestGUIFactory; import me.patothebest.gamecore.util....
1,119
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestFile.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/QuestFile.java
package me.patothebest.gamecore.quests; import com.google.inject.Inject; import me.patothebest.gamecore.file.ReadOnlyFile; import me.patothebest.gamecore.modules.Module; import me.patothebest.gamecore.util.Utils; import org.bukkit.plugin.Plugin; import java.io.BufferedWriter; import java.io.IOException; public class...
773
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Quest.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/Quest.java
package me.patothebest.gamecore.quests; import me.patothebest.gamecore.file.ParserException; import me.patothebest.gamecore.util.Utils; import java.util.Map; public class Quest { private final String name; private final String displayName; private final QuestType questType; private final int goal; ...
1,781
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/QuestManager.java
package me.patothebest.gamecore.quests; import com.google.inject.Inject; import com.google.inject.Singleton; import me.patothebest.gamecore.event.EventRegistry; import me.patothebest.gamecore.file.ParserException; import me.patothebest.gamecore.logger.InjectLogger; import me.patothebest.gamecore.logger.Logger; import ...
3,213
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AbstractQuestType.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/AbstractQuestType.java
package me.patothebest.gamecore.quests; import com.google.inject.Inject; import me.patothebest.gamecore.event.EventRegistry; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.player.CorePlayer; import me.patothebest.gamecore.player.PlayerManager; import java.util.Set; public abstract class...
1,498
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ActiveQuest.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/ActiveQuest.java
package me.patothebest.gamecore.quests; import me.patothebest.gamecore.player.IPlayer; import me.patothebest.gamecore.player.modifiers.QuestModifier; public class ActiveQuest { private final IPlayer player; private final Quest quest; private final long startDate; private int entryId; private int ...
2,206
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestsModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/QuestsModule.java
package me.patothebest.gamecore.quests; import com.google.inject.assistedinject.FactoryModuleBuilder; import com.google.inject.multibindings.Multibinder; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.quests.entities.QuestsFlatFileEntity; import me.patothebest.gamecore.quests.entities.Quests...
1,570
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestsSQLEntity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/entities/QuestsSQLEntity.java
package me.patothebest.gamecore.quests.entities; import com.google.inject.Inject; import me.patothebest.gamecore.player.CorePlayer; import me.patothebest.gamecore.player.modifiers.PlayerModifier; import me.patothebest.gamecore.player.modifiers.QuestModifier; import me.patothebest.gamecore.quests.ActiveQuest; import me...
4,849
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestQueries.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/entities/QuestQueries.java
package me.patothebest.gamecore.quests.entities; import me.patothebest.gamecore.PluginConfig; public class QuestQueries { static final String CREATE_TABLE = "CREATE TABLE IF NOT EXISTS `" + PluginConfig.SQL_PREFIX + "_quests` (\n" + " `entry_id` int(11) NOT NULL AUTO_INCREMENT,\...
1,304
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestsFlatFileEntity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/entities/QuestsFlatFileEntity.java
package me.patothebest.gamecore.quests.entities; import me.patothebest.gamecore.player.CorePlayer; import me.patothebest.gamecore.storage.StorageException; import me.patothebest.gamecore.storage.flatfile.FlatFileEntity; import me.patothebest.gamecore.storage.flatfile.PlayerProfileFile; public class QuestsFlatFileEnti...
878
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WinGameQuestType.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/types/WinGameQuestType.java
package me.patothebest.gamecore.quests.types; import me.patothebest.gamecore.event.arena.GameEndEvent; import me.patothebest.gamecore.player.CorePlayer; import me.patothebest.gamecore.player.IPlayer; import me.patothebest.gamecore.quests.AbstractQuestType; import org.bukkit.entity.Player; import org.bukkit.event.Event...
713
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KillPlayersQuestType.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/types/KillPlayersQuestType.java
package me.patothebest.gamecore.quests.types; import me.patothebest.gamecore.combat.CombatDeathEvent; import me.patothebest.gamecore.player.CorePlayer; import me.patothebest.gamecore.player.IPlayer; import me.patothebest.gamecore.quests.AbstractQuestType; import org.bukkit.event.EventHandler; public class KillPlayers...
724
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestGUIFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/ui/QuestGUIFactory.java
package me.patothebest.gamecore.quests.ui; import me.patothebest.gamecore.quests.ui.QuestsGUI; import org.bukkit.entity.Player; public interface QuestGUIFactory { QuestsGUI createQuestGUI(Player player); }
214
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestsGUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/quests/ui/QuestsGUI.java
package me.patothebest.gamecore.quests.ui; import com.google.inject.assistedinject.Assisted; import com.google.inject.assistedinject.AssistedInject; import me.patothebest.gamecore.gui.inventory.GUIPage; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.ItemStack...
3,683
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
EloManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/elo/EloManager.java
package me.patothebest.gamecore.elo; import me.patothebest.gamecore.modules.ActivableModule; public class EloManager implements ActivableModule { }
153
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z