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
EloModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/elo/EloModule.java
package me.patothebest.gamecore.elo; import me.patothebest.gamecore.elo.entities.EloFlatFileEntity; import me.patothebest.gamecore.elo.entities.EloMySQLEntity; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.storage.StorageModule; import me.patothebest.gamecore.storage.flatfile.FlatFileEntity...
873
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
EloMySQLEntity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/elo/entities/EloMySQLEntity.java
package me.patothebest.gamecore.elo.entities; import me.patothebest.gamecore.player.CorePlayer; import me.patothebest.gamecore.player.modifiers.EloModifier; import me.patothebest.gamecore.player.modifiers.PlayerModifier; import me.patothebest.gamecore.player.types.EloPlayer; import me.patothebest.gamecore.storage.mysq...
2,503
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/elo/entities/Queries.java
package me.patothebest.gamecore.elo.entities; import me.patothebest.gamecore.PluginConfig; class Queries { static final String CREATE_TABLE = "CREATE TABLE IF NOT EXISTS `" + PluginConfig.SQL_PREFIX + "_elo` (\n" + " `player_id` int(11) NOT NULL,\n" + " `elo`...
954
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
EloFlatFileEntity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/elo/entities/EloFlatFileEntity.java
package me.patothebest.gamecore.elo.entities; import me.patothebest.gamecore.player.CorePlayer; import me.patothebest.gamecore.player.types.EloPlayer; import me.patothebest.gamecore.storage.StorageException; import me.patothebest.gamecore.storage.flatfile.FlatFileEntity; import me.patothebest.gamecore.storage.flatfile...
1,030
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BlockRestorer.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/block/BlockRestorer.java
package me.patothebest.gamecore.block; import com.google.inject.Inject; import com.google.inject.Provider; import com.google.inject.Singleton; import me.patothebest.gamecore.block.impl.Post1_13RestoringBlock; import me.patothebest.gamecore.block.impl.Pre1_13RestoringBlock; import me.patothebest.gamecore.block.impl.Res...
2,423
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Post1_13RestoringBlock.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/block/impl/Post1_13RestoringBlock.java
package me.patothebest.gamecore.block.impl; import me.patothebest.gamecore.nms.NMS; import org.bukkit.block.Block; import org.bukkit.block.data.BlockData; import org.bukkit.inventory.ItemStack; import javax.annotation.Nullable; public class Post1_13RestoringBlock extends RestoringBlock { private final BlockData...
714
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RestoringBlock.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/block/impl/RestoringBlock.java
package me.patothebest.gamecore.block.impl; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.nms.NMS; import org.bukkit.block.Block; import org.bukkit.inventory.ItemStack; import javax.annotation.Nullable; public abstract class RestoringBlock { protected final NMS nms; ...
1,053
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
Pre1_13RestoringBlock.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/block/impl/Pre1_13RestoringBlock.java
package me.patothebest.gamecore.block.impl; import me.patothebest.gamecore.nms.NMS; import org.bukkit.block.Block; import org.bukkit.inventory.ItemStack; import org.bukkit.material.MaterialData; import javax.annotation.Nullable; public class Pre1_13RestoringBlock extends RestoringBlock { private final MaterialD...
737
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AdminGUIFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/AdminGUIFactory.java
package me.patothebest.gamecore.guis; import me.patothebest.gamecore.guis.admin.AdminChooseTeamUI; import me.patothebest.gamecore.guis.admin.AdminJoinArenaGUI; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.player.IPlayer; import org.bukkit.entity.Player; public interface AdminGUIF...
462
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GUIModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/GUIModule.java
package me.patothebest.gamecore.guis; import com.google.inject.assistedinject.FactoryModuleBuilder; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.cosmetics.shop.ShopFactory; import me.patothebest.gamecore.cosmetics.shop.ShopFactoryImpl; import me.patothebest.gamecore.guis.grouppermissible.P...
1,179
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
UserGUIFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/UserGUIFactory.java
package me.patothebest.gamecore.guis; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.feature.features.gameoptions.GameOptionsFeature; import me.patothebest.gamecore.guis.user.ChooseTeamUI; import me.patothebest.gamecore.guis.user.GameOptionsUI; import me.patothebest.gamecore.guis.us...
1,456
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PotionEffectUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/kit/PotionEffectUI.java
package me.patothebest.gamecore.guis.kit; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.game...
3,828
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChoosePotionEffect.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/kit/ChoosePotionEffect.java
package me.patothebest.gamecore.guis.kit; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.game...
2,965
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitUIFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/kit/KitUIFactory.java
package me.patothebest.gamecore.guis.kit; import me.patothebest.gamecore.kit.Kit; import me.patothebest.gamecore.kit.WrappedPotionEffect; import org.bukkit.entity.Player; public interface KitUIFactory { ChooseKitToEditGUI createChooseKitToEditGUI(Player player); EditKitUI createEditKitGUI(Player player, Kit...
678
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
EditKitUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/kit/EditKitUI.java
package me.patothebest.gamecore.guis.kit; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.gui.anvil.AnvilSlot; import me.patothebest.gamecore.gui.inventory.GUIPage; import me.patothebest.gamecore.gui.inventory.button.AnvilButton; import me.patothebest.g...
7,364
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitPreview.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/kit/KitPreview.java
package me.patothebest.gamecore.guis.kit; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.gui.inventory.GUIPage; import me.patothebest.gamecore.gui.inventory.button.BackButton; import me.patothebest.gamecore.gu...
2,905
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
EditPriceUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/kit/EditPriceUI.java
package me.patothebest.gamecore.guis.kit; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.game...
2,419
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChooseKitToEditGUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/kit/ChooseKitToEditGUI.java
package me.patothebest.gamecore.guis.kit; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.itemstack.ItemStackBuilder; import me.patothebest.gamecore.itemstack.Material; import me.patotheb...
3,049
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChoosePermissionGroup.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/grouppermissible/ChoosePermissionGroup.java
package me.patothebest.gamecore.guis.grouppermissible; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.gui.anvil.AnvilSlot; import me.patothebest.gamecore.gui.inventory.button.AnvilButton; import me.patothebest.gamecore.gui.inventory.button.AnvilButtonA...
3,314
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PermissionGroupUIFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/grouppermissible/PermissionGroupUIFactory.java
package me.patothebest.gamecore.guis.grouppermissible; import me.patothebest.gamecore.gui.inventory.page.GenericGUI; import me.patothebest.gamecore.permission.GroupPermissible; import org.bukkit.entity.Player; public interface PermissionGroupUIFactory { ChoosePermissionGroup create(Player player, GroupPermissibl...
367
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AdminUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/admin/AdminUI.java
package me.patothebest.gamecore.guis.admin; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.feature.features.other.CountdownFeature; import me.patothebest.gamecore.gui.inventory.GUIPage; import me.patothebest.gamecore.gui.inventory.button.Si...
1,859
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AdminJoinArenaGUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/admin/AdminJoinArenaGUI.java
package me.patothebest.gamecore.guis.admin; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.ArenaManager; import me.patothebest.gamecore.gui.inventory.G...
2,346
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AdminChooseTeamUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/admin/AdminChooseTeamUI.java
package me.patothebest.gamecore.guis.admin; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.AbstractGameTeam; import me.patothebest.gamecore.gui.invento...
3,108
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GameOptionsUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/user/GameOptionsUI.java
package me.patothebest.gamecore.guis.user; 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.feature.features.gameoptions.GameOptionsFeature; import me.patothebest.ga...
966
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
JoinArenaGUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/user/JoinArenaGUI.java
package me.patothebest.gamecore.guis.user; import com.google.inject.assistedinject.Assisted; import com.google.inject.assistedinject.AssistedInject; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.CorePlugin; import me.patot...
4,508
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChooseLocale.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/user/ChooseLocale.java
package me.patothebest.gamecore.guis.user; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.lang.CoreLocaleManager; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.gui.inventory.GUIPage; import me.pa...
2,052
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ChooseTeamUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/user/ChooseTeamUI.java
package me.patothebest.gamecore.guis.user; import com.google.inject.Inject; 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...
4,187
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SpectatorUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/user/SpectatorUI.java
package me.patothebest.gamecore.guis.user; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.event.player.PlayerStateChangeEvent; import me.patothebest.gamecore.gui.inventory.pa...
1,716
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitShopUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/user/kit/KitShopUI.java
package me.patothebest.gamecore.guis.user.kit; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.gui.inventory.button.ClickTypeButton; import me.patothebest.gamecore.gui.inventory.button.SimpleButton; import me.patothebest.gamecore.gui.inventory...
3,473
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
BuyKitUsesUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/user/kit/BuyKitUsesUI.java
package me.patothebest.gamecore.guis.user.kit; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.gui.inventory.GUIPage; import me.patothebest.gamecore.gui.inventory.button.IncrementingButton; import me.patothebest.gamecore.gui.inventory.button.I...
4,890
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitOptionsUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/user/kit/KitOptionsUI.java
package me.patothebest.gamecore.guis.user.kit; 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.PlaceHolder; import me.patothebest.gamecore.gui.inventory.bu...
4,285
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitLayoutUI.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/guis/user/kit/KitLayoutUI.java
package me.patothebest.gamecore.guis.user.kit; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.gui.inventory.GUIPage; import me.patothebest.gamecore.gui.inventory.button.NullButton; import me.patothebest.gameco...
4,988
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerFactory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/PlayerFactory.java
package me.patothebest.gamecore.player; import me.patothebest.gamecore.lang.Locale; public interface PlayerFactory { CorePlayer create(Locale defaultLocale); }
168
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerSkinCache.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/PlayerSkinCache.java
package me.patothebest.gamecore.player; import com.google.gson.Gson; import com.google.gson.JsonObject; import com.google.inject.Inject; import me.patothebest.gamecore.modules.Module; import me.patothebest.gamecore.scheduler.PluginScheduler; import me.patothebest.gamecore.util.Callback; import javax.inject.Singleton;...
4,540
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/PlayerManager.java
package me.patothebest.gamecore.player; import me.patothebest.gamecore.file.CoreConfig; import me.patothebest.gamecore.modules.ActivableModule; import me.patothebest.gamecore.modules.ListenerModule; import me.patothebest.gamecore.modules.ModuleName; import me.patothebest.gamecore.storage.StorageManager; import org.apa...
7,214
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
IPlayer.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/IPlayer.java
package me.patothebest.gamecore.player; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.AbstractGameTeam; import me.patothebest.gamecore.cosmetics.shop.ShopItem; import me.patothebest.gamecore.kit.Kit; import me.patothebest.gamecore.kit.KitLayout; import me.patothebest.gamecore...
20,258
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerInventory.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/PlayerInventory.java
package me.patothebest.gamecore.player; import me.patothebest.gamecore.util.Utils; import org.bukkit.GameMode; import org.bukkit.entity.Player; import org.bukkit.inventory.ItemStack; import org.bukkit.potion.PotionEffect; import java.util.Collection; public class PlayerInventory { private final Player player; ...
1,797
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerIdentity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/PlayerIdentity.java
package me.patothebest.gamecore.player; import java.util.UUID; /** * Class used to identify the player in a conversion or in an offline * value update */ public class PlayerIdentity { private final String name; private final UUID uuid; public PlayerIdentity(String name, UUID uuid) { this.name...
631
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CorePlayer.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/CorePlayer.java
package me.patothebest.gamecore.player; import com.google.common.collect.ImmutableMap; import com.google.inject.Inject; import com.google.inject.Provider; import com.google.inject.assistedinject.Assisted; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebe...
24,001
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
EloPlayer.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/types/EloPlayer.java
package me.patothebest.gamecore.player.types; import me.patothebest.gamecore.player.IPlayer; public interface EloPlayer extends IPlayer { /** * Gets the elo from the player * * @return the elo */ int getElo(); /** * Sets the player elo * * @param newElo the new elo ...
357
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
EloModifier.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/modifiers/EloModifier.java
package me.patothebest.gamecore.player.modifiers; public enum EloModifier implements PlayerModifier { MODIFY }
118
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GeneralModifier.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/modifiers/GeneralModifier.java
package me.patothebest.gamecore.player.modifiers; public enum GeneralModifier implements PlayerModifier { LOCALE }
122
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ShopModifier.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/modifiers/ShopModifier.java
package me.patothebest.gamecore.player.modifiers; public enum ShopModifier implements PlayerModifier { BOUGHT_ITEM, BOUGHT_ITEM_USES, USED_ITEM, DEPLETED_ITEM, SELECT_DEFAULT, UPDATE_SELECT_DEFAULT, REMOVE_SELECTED_ITEM, }
254
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
QuestModifier.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/modifiers/QuestModifier.java
package me.patothebest.gamecore.player.modifiers; public enum QuestModifier implements PlayerModifier { START_QUEST, UPDATE_PROGRESS, UPDATE_STATUS }
165
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CageModifier.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/modifiers/CageModifier.java
package me.patothebest.gamecore.player.modifiers; public enum CageModifier implements PlayerModifier { MODIFY_CAGES, MODIFY_CAGE }
142
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
KitModifier.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/modifiers/KitModifier.java
package me.patothebest.gamecore.player.modifiers; public enum KitModifier implements PlayerModifier { ADD_KIT, REMOVE_KIT, MODIFY_KIT, SET_LAYOUT, MODIFY_LAYOUT, SET_DEFAULT }
202
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ExperienceModifier.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/modifiers/ExperienceModifier.java
package me.patothebest.gamecore.player.modifiers; public enum ExperienceModifier implements PlayerModifier { SET_EXPERIENCE, ADD_EXPERIENCE, REMOVE_EXPERIENCE }
176
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PointsModifier.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/modifiers/PointsModifier.java
package me.patothebest.gamecore.player.modifiers; public enum PointsModifier implements PlayerModifier { MODIFY }
121
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
TreasureModifier.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/modifiers/TreasureModifier.java
package me.patothebest.gamecore.player.modifiers; public enum TreasureModifier implements PlayerModifier { MODIFY }
123
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
StatsModifier.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/player/modifiers/StatsModifier.java
package me.patothebest.gamecore.player.modifiers; public enum StatsModifier implements PlayerModifier { INSERT, UPDATE_ADD }
136
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PointsStatistic.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/points/PointsStatistic.java
package me.patothebest.gamecore.points; import me.patothebest.gamecore.leaderboards.TopEntry; import me.patothebest.gamecore.points.entities.PointsQueries; import me.patothebest.gamecore.player.IPlayer; import me.patothebest.gamecore.stats.Statistic; import org.bukkit.entity.Player; import java.sql.Connection; import...
1,959
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PointsModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/points/PointsModule.java
package me.patothebest.gamecore.points; import com.google.inject.multibindings.Multibinder; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.injector.AbstractBukkitModule; import me.patothebest.gamecore.points.entities.PointsFlatFileEntity; import me.patothebest.gamecore.points.entities.Points...
1,315
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PointsManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/points/PointsManager.java
package me.patothebest.gamecore.points; import com.google.inject.Inject; import me.patothebest.gamecore.file.CoreConfig; import me.patothebest.gamecore.modules.ActivableModule; import me.patothebest.gamecore.modules.ListenerModule; import me.patothebest.gamecore.modules.ModuleName; import me.patothebest.gamecore.permi...
4,103
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PointsFlatFileEntity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/points/entities/PointsFlatFileEntity.java
package me.patothebest.gamecore.points.entities; import me.patothebest.gamecore.storage.StorageException; import me.patothebest.gamecore.storage.flatfile.FlatFileEntity; import me.patothebest.gamecore.storage.flatfile.PlayerProfileFile; import me.patothebest.gamecore.player.CorePlayer; public class PointsFlatFileEnti...
973
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PointsMySQLEntity.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/points/entities/PointsMySQLEntity.java
package me.patothebest.gamecore.points.entities; import me.patothebest.gamecore.storage.mysql.MySQLEntity; import me.patothebest.gamecore.player.CorePlayer; import me.patothebest.gamecore.player.modifiers.PlayerModifier; import me.patothebest.gamecore.player.modifiers.PointsModifier; import java.sql.Connection; impor...
2,474
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PointsQueries.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/points/entities/PointsQueries.java
package me.patothebest.gamecore.points.entities; import me.patothebest.gamecore.PluginConfig; public class PointsQueries { static final String CREATE_TABLE = "CREATE TABLE IF NOT EXISTS `" + PluginConfig.SQL_PREFIX + "_points` (\n" + " `player_id` int(11) NOT NULL,\n" + ...
1,274
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PluginHook.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/PluginHook.java
package me.patothebest.gamecore.pluginhooks; import org.bukkit.configuration.ConfigurationSection; public abstract class PluginHook { private boolean lodaded = false; public final void load(ConfigurationSection pluginHookSection) { onHook(pluginHookSection); lodaded = true; } protec...
502
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PluginHookProvider.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/PluginHookProvider.java
package me.patothebest.gamecore.pluginhooks; public class PluginHookProvider { private final Class<? extends PluginHook> pluginHookClass; public PluginHookProvider(Class<? extends PluginHook> pluginHookClass) { this.pluginHookClass = pluginHookClass; } public Class<? extends PluginHook> getP...
379
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PluginHookManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/PluginHookManager.java
package me.patothebest.gamecore.pluginhooks; import com.google.inject.Singleton; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.modules.ModuleName; import me.patothebest.gamecore.file.PluginHookFile; import me.patothebest.gamecore.logger.InjectLogger; import me.patothebest.gamecore.modules.A...
2,793
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PluginHooksModule.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/PluginHooksModule.java
package me.patothebest.gamecore.pluginhooks; import com.google.inject.Provides; import com.google.inject.multibindings.MapBinder; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.pluginhooks.hooks.FastAsyncWorldEditHook; import me.patothebest.gamecore.pluginhooks.hooks.FeatherBoardHook; import...
3,119
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
MVdWPlaceholderAPIHook.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/MVdWPlaceholderAPIHook.java
package me.patothebest.gamecore.pluginhooks.hooks; import be.maximvdw.placeholderapi.PlaceholderAPI; import com.google.inject.Inject; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.PluginConfig; import me.patothebest.gamecore.placeholder.PlaceHolder; import me.patothebest.gamecore.placeholde...
1,483
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
FeatherBoardHook.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/FeatherBoardHook.java
package me.patothebest.gamecore.pluginhooks.hooks; import be.maximvdw.featherboard.api.FeatherBoardAPI; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.event.player.ArenaLeaveEvent; import me.patothebest.gamecore.event.player.LobbyJoinEvent; import me.patothebest.gamecore.modules.ListenerModu...
1,823
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
FastAsyncWorldEditHook.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/FastAsyncWorldEditHook.java
package me.patothebest.gamecore.pluginhooks.hooks; import com.boydti.fawe.bukkit.wrapper.AsyncWorld; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.pluginhooks.PluginHook; import org.bukkit.Bukkit; import org.bukkit.World; import org.bukkit.WorldCreator; import org.bukkit.configuration.Confi...
1,119
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WorldEditHook.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/WorldEditHook.java
package me.patothebest.gamecore.pluginhooks.hooks; import com.sk89q.worldedit.bukkit.WorldEditPlugin; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.lang.CoreLang; import me.patothebest.gamecore.logger.InjectParentLogger; import me.patothebest.gamecore.pluginhooks.PluginHook; import me.patot...
2,065
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SlimeWorldManagerHook.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/SlimeWorldManagerHook.java
package me.patothebest.gamecore.pluginhooks.hooks; import com.grinderwolf.swm.api.SlimePlugin; import com.grinderwolf.swm.api.exceptions.CorruptedWorldException; import com.grinderwolf.swm.api.exceptions.InvalidWorldException; import com.grinderwolf.swm.api.exceptions.NewerFormatException; import com.grinderwolf.swm.a...
10,077
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
VaultHook.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/VaultHook.java
package me.patothebest.gamecore.pluginhooks.hooks; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.modules.ListenerModule; import me.patothebest.gamecore.pluginhooks.PluginHook; import net.milkbowl.vault.chat.Chat; import net.milkbowl.vault.economy.Economy; import net.milkbowl.vault.permissio...
2,232
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
MultiArenaBungeeModeHook.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/MultiArenaBungeeModeHook.java
package me.patothebest.gamecore.pluginhooks.hooks; import com.google.inject.Inject; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.arena.modes.bungee.BungeeMode; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.ArenaManager; import me.patothebest.gamec...
2,838
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
HolographicDisplaysHook.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/HolographicDisplaysHook.java
package me.patothebest.gamecore.pluginhooks.hooks; import com.gmail.filoghost.holographicdisplays.api.Hologram; import com.gmail.filoghost.holographicdisplays.api.HologramsAPI; import com.google.inject.Inject; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.pluginhooks.PluginHook; import org....
897
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CitizensPluginHook.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/CitizensPluginHook.java
package me.patothebest.gamecore.pluginhooks.hooks; import me.patothebest.gamecore.pluginhooks.PluginHook; import net.citizensnpcs.api.CitizensAPI; import net.citizensnpcs.api.npc.NPC; import org.bukkit.Location; import org.bukkit.configuration.ConfigurationSection; import org.bukkit.entity.EntityType; public class Ci...
893
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlaceholderAPIHook.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/PlaceholderAPIHook.java
package me.patothebest.gamecore.pluginhooks.hooks; import me.clip.placeholderapi.PlaceholderAPI; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.placeholder.EzPlaceholderWrapper; import me.patothebest.gamecore.placeholder.PlaceHolderManager; import me.patothebest.gamecore.pluginhooks.PluginHo...
1,447
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WorldEdit7SelectionManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/worldedit/WorldEdit7SelectionManager.java
package me.patothebest.gamecore.pluginhooks.hooks.worldedit; import com.sk89q.worldedit.LocalSession; import com.sk89q.worldedit.bukkit.WorldEditPlugin; import com.sk89q.worldedit.math.BlockVector3; import com.sk89q.worldedit.regions.Region; import me.patothebest.gamecore.selection.Selection; import me.patothebest.gam...
1,612
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
WorldEdit6SelectionManager.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/pluginhooks/hooks/worldedit/WorldEdit6SelectionManager.java
package me.patothebest.gamecore.pluginhooks.hooks.worldedit; import com.sk89q.worldedit.bukkit.WorldEditPlugin; import me.patothebest.gamecore.selection.Selection; import me.patothebest.gamecore.selection.SelectionManager; import me.patothebest.gamecore.util.Utils; import org.bukkit.entity.Player; public class WorldE...
1,189
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ModelPiece.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/model/ModelPiece.java
package me.patothebest.gamecore.model; import me.patothebest.gamecore.util.Utils; import org.bukkit.Location; import org.bukkit.entity.ArmorStand; import org.bukkit.entity.EntityType; import org.bukkit.inventory.ItemStack; import org.bukkit.util.EulerAngle; import org.bukkit.util.Vector; public class ModelPiece { ...
1,721
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
AbstractModel.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/model/AbstractModel.java
package me.patothebest.gamecore.model; import me.patothebest.gamecore.nms.NMS; import org.bukkit.Location; import org.bukkit.inventory.ItemStack; import org.bukkit.util.Vector; import java.util.ArrayList; import java.util.List; public abstract class AbstractModel { private final List<ModelPiece> modelPieces = n...
998
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
EventRegistry.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/EventRegistry.java
package me.patothebest.gamecore.event; import com.google.inject.Inject; import me.patothebest.gamecore.CorePlugin; import me.patothebest.gamecore.modules.ListenerModule; import me.patothebest.gamecore.modules.Module; import me.patothebest.gamecore.scheduler.PluginScheduler; import org.bukkit.Bukkit; import org.bukkit....
2,419
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LeaderboardUpdateEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/other/LeaderboardUpdateEvent.java
package me.patothebest.gamecore.event.other; import org.bukkit.event.Event; import org.bukkit.event.HandlerList; public class LeaderboardUpdateEvent extends Event { private static final HandlerList handlers = new HandlerList(); public LeaderboardUpdateEvent() { super(true); } public Handler...
456
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/arena/ArenaEvent.java
package me.patothebest.gamecore.event.arena; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.event.Event; public abstract class ArenaEvent extends Event { private final AbstractArena arena; public ArenaEvent(AbstractArena arena) { this.arena = arena; } public AbstractA...
367
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaDisableEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/arena/ArenaDisableEvent.java
package me.patothebest.gamecore.event.arena; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.event.HandlerList; public class ArenaDisableEvent extends ArenaEvent { private static final HandlerList handlers = new HandlerList(); public ArenaDisableEvent(AbstractArena arena) { sup...
492
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
CountdownStartEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/arena/CountdownStartEvent.java
package me.patothebest.gamecore.event.arena; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.event.HandlerList; public class CountdownStartEvent extends ArenaEvent { private static final HandlerList handlers = new HandlerList(); public CountdownStartEvent(AbstractArena arena) { ...
496
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GameEndEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/arena/GameEndEvent.java
package me.patothebest.gamecore.event.arena; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.util.PlayerList; import org.bukkit.event.HandlerList; public class GameEndEvent extends ArenaEvent { private static final HandlerList handlers = new HandlerList(); private final Pla...
839
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaPhaseChangeEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/arena/ArenaPhaseChangeEvent.java
package me.patothebest.gamecore.event.arena; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.phase.Phase; import org.bukkit.event.HandlerList; public class ArenaPhaseChangeEvent extends ArenaEvent { private static final HandlerList handlers = new HandlerList(); private fina...
1,016
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaUnLoadEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/arena/ArenaUnLoadEvent.java
package me.patothebest.gamecore.event.arena; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.event.HandlerList; public class ArenaUnLoadEvent extends ArenaEvent { private static final HandlerList handlers = new HandlerList(); public ArenaUnLoadEvent(AbstractArena arena) { super...
490
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaPreRegenEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/arena/ArenaPreRegenEvent.java
package me.patothebest.gamecore.event.arena; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.event.Cancellable; import org.bukkit.event.HandlerList; public class ArenaPreRegenEvent extends ArenaEvent implements Cancellable { private static final HandlerList handlers = new HandlerList(); ...
767
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaPrePhaseChangeEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/arena/ArenaPrePhaseChangeEvent.java
package me.patothebest.gamecore.event.arena; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.phase.Phase; import org.bukkit.event.Cancellable; import org.bukkit.event.HandlerList; public class ArenaPrePhaseChangeEvent extends ArenaEvent implements Cancellable { private static f...
1,456
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaLoadEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/arena/ArenaLoadEvent.java
package me.patothebest.gamecore.event.arena; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.event.HandlerList; public class ArenaLoadEvent extends ArenaEvent { private static final HandlerList handlers = new HandlerList(); public ArenaLoadEvent(AbstractArena arena) { super(are...
486
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaLeaveMidGameEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/ArenaLeaveMidGameEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.AbstractGameTeam; import org.bukkit.entity.Player; import org.bukkit.event.HandlerList; import javax.annotation.Nullable; public class ArenaLeaveMidGameEvent extends ArenaPlayerEvent...
874
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerDeSelectItemEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/PlayerDeSelectItemEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.cosmetics.shop.ShopItem; import me.patothebest.gamecore.player.IPlayer; import org.bukkit.event.Event; import org.bukkit.event.HandlerList; public class PlayerDeSelectItemEvent extends Event { // ----------------------------------------...
1,397
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerJoinPrepareEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/PlayerJoinPrepareEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.player.CorePlayer; import org.bukkit.event.Event; import org.bukkit.event.HandlerList; public class PlayerJoinPrepareEvent extends Event { // -------------------------------------------- // // FIELDS // -------------------------...
1,117
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaPreLeaveEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/ArenaPreLeaveEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.entity.Player; import org.bukkit.event.Cancellable; import org.bukkit.event.HandlerList; public class ArenaPreLeaveEvent extends ArenaPlayerEvent implements Cancellable { private static final Handl...
1,216
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerLoginPrepareEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/PlayerLoginPrepareEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.player.CorePlayer; import org.bukkit.event.Event; import org.bukkit.event.HandlerList; public class PlayerLoginPrepareEvent extends Event { // -------------------------------------------- // // FIELDS // ------------------------...
1,119
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
LobbyJoinEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/LobbyJoinEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.entity.Player; import org.bukkit.event.HandlerList; public class LobbyJoinEvent extends ArenaPlayerEvent { private static final HandlerList handlers = new HandlerList(); public LobbyJoinEvent(P...
547
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerSelectItemEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/PlayerSelectItemEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.cosmetics.shop.ShopItem; import me.patothebest.gamecore.player.IPlayer; import org.bukkit.event.Event; import org.bukkit.event.HandlerList; public class PlayerSelectItemEvent extends Event { // ------------------------------------------...
1,393
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerExperienceUpdateEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/PlayerExperienceUpdateEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.player.IPlayer; import org.bukkit.event.Event; import org.bukkit.event.HandlerList; public class PlayerExperienceUpdateEvent extends Event { private static final HandlerList handlers = new HandlerList(); private final IPlayer player...
1,242
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaLeaveEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/ArenaLeaveEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.arena.AbstractArena; import me.patothebest.gamecore.arena.AbstractGameTeam; import org.bukkit.entity.Player; import org.bukkit.event.HandlerList; import javax.annotation.Nullable; public class ArenaLeaveEvent extends ArenaPlayerEvent { ...
860
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
ArenaPlayerEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/ArenaPlayerEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.entity.Player; import org.bukkit.event.Event; public abstract class ArenaPlayerEvent extends Event { private final AbstractArena arena; private final Player player; public ArenaPlayerEvent...
554
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerLooseEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/PlayerLooseEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.entity.Player; import org.bukkit.event.HandlerList; public class PlayerLooseEvent extends ArenaPlayerEvent { private static final HandlerList handlers = new HandlerList(); public PlayerLooseEv...
553
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
RandomArenaJoinEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/RandomArenaJoinEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.entity.Player; import org.bukkit.event.Cancellable; import org.bukkit.event.HandlerList; public class RandomArenaJoinEvent extends ArenaPlayerEvent implements Cancellable { private static final Han...
985
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
SpectateEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/SpectateEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.entity.Player; import org.bukkit.event.HandlerList; public class SpectateEvent extends ArenaPlayerEvent { private static final HandlerList handlers = new HandlerList(); public SpectateEvent(Pl...
546
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
GameJoinEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/GameJoinEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.entity.Player; import org.bukkit.event.HandlerList; public class GameJoinEvent extends ArenaPlayerEvent { private static final HandlerList handlers = new HandlerList(); public GameJoinEvent(Pla...
545
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z
PlayerStateChangeEvent.java
/FileExtraction/Java_unseen/PatoTheBest_MiniGames/GameCore/src/main/java/me/patothebest/gamecore/event/player/PlayerStateChangeEvent.java
package me.patothebest.gamecore.event.player; import me.patothebest.gamecore.arena.AbstractArena; import org.bukkit.entity.Player; import org.bukkit.event.HandlerList; public class PlayerStateChangeEvent extends ArenaPlayerEvent { private static final HandlerList handlers = new HandlerList(); private final P...
834
Java
.java
PatoTheBest/MiniGames
13
2
1
2020-08-07T03:43:56Z
2022-01-23T23:52:46Z