├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── resources ├── game_info │ ├── Arena.json │ ├── Arena.php │ ├── Battlegrounds.json │ ├── Battlegrounds.php │ ├── Paintball.json │ ├── Paintball.php │ ├── README.md │ ├── SkyClash.json │ ├── SkyClash.php │ ├── SkyWars.json │ ├── SkyWars.php │ ├── SuperSmash.json │ ├── SuperSmash.php │ ├── SurvivalGames.json │ ├── SurvivalGames.php │ ├── Walls3.json │ ├── Walls3.php │ └── tntgames │ │ ├── Wizards.php │ │ └── wizards.json └── guild │ └── RankWhitelist.php ├── src ├── HypixelPHP.php ├── cache │ ├── CacheHandler.php │ ├── CacheTimes.php │ ├── CacheTypes.php │ └── impl │ │ ├── FlatFileCacheHandler.php │ │ ├── MongoCacheHandler.php │ │ └── NoCacheHandler.php ├── classes │ ├── APIHolding.php │ ├── APIObject.php │ ├── DataHolding.php │ ├── HypixelObject.php │ ├── Module.php │ └── serverType │ │ ├── GameType.php │ │ ├── LobbyType.php │ │ ├── ServerType.php │ │ └── ServerTypes.php ├── color │ ├── ColorParser.php │ └── ColorUtils.php ├── exceptions │ ├── BadResponseCodeException.php │ ├── CurlException.php │ ├── ExceptionCodes.php │ ├── FileGetContentsException.php │ ├── HypixelPHPException.php │ ├── InvalidUUIDException.php │ └── NoPairsException.php ├── fetch │ ├── FetchParams.php │ ├── FetchTypes.php │ ├── Fetcher.php │ ├── Response.php │ ├── adapter │ │ └── ResponseAdapter.php │ └── impl │ │ ├── DefaultCurlFetcher.php │ │ └── DefaultFGCFetcher.php ├── log │ ├── Formatter.php │ ├── Logger.php │ └── impl │ │ ├── BasicLogger.php │ │ ├── NoLogger.php │ │ └── SysLogger.php ├── provider │ └── Provider.php ├── resources │ ├── GameResources.php │ ├── GeneralResources.php │ ├── GuildResources.php │ ├── ResourceManager.php │ ├── Resources.php │ └── games │ │ └── SkyBlockResources.php ├── responses │ ├── KeyInfo.php │ ├── Leaderboards.php │ ├── PunishmentStats.php │ ├── RecentGames.php │ ├── Resource.php │ ├── Status.php │ ├── booster │ │ ├── Booster.php │ │ └── Boosters.php │ ├── counts │ │ ├── Counts.php │ │ └── GameCount.php │ ├── guild │ │ ├── Guild.php │ │ ├── GuildLevelUtil.php │ │ ├── GuildMember.php │ │ ├── GuildMemberList.php │ │ ├── GuildRank.php │ │ └── GuildRanks.php │ ├── player │ │ ├── GameStats.php │ │ ├── Player.php │ │ ├── Rank.php │ │ ├── RankTypes.php │ │ └── Stats.php │ └── skyblock │ │ └── SkyBlockProfile.php ├── util │ ├── CacheUtil.php │ ├── CachedGetter.php │ ├── InputType.php │ ├── Leveling.php │ ├── Utilities.php │ ├── Validator.php │ └── games │ │ ├── BlitzUtils.php │ │ ├── GameUtils.php │ │ ├── MegaWallsUtils.php │ │ ├── bedwars │ │ ├── BedWarsPrestige.php │ │ ├── BedWarsUtils.php │ │ └── ExpCalculator.php │ │ └── skywars │ │ ├── ExpCalculator.php │ │ └── SkyWarsUtils.php └── wrappers │ ├── Kart.php │ ├── PetStats.php │ └── battlegrounds │ ├── Abilities.php │ ├── Ability.php │ ├── AbilityType.php │ ├── PlayerClass.php │ ├── PlayerClasses.php │ ├── Spec.php │ └── weapon │ ├── Rarity.php │ ├── RarityValues.php │ ├── Weapon.php │ ├── WeaponGrader.php │ ├── WeaponInventory.php │ ├── WeaponStat.php │ └── WeaponStats.php └── tests ├── CacheTest.php ├── ColorTest.php ├── DataHoldingTest.php ├── ResponseTest.php ├── ValidatorTest.php ├── bootstrap.php ├── games └── bedwars │ └── LevelTest.php └── util └── TestUtil.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /resources/game_info/Arena.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/Arena.json -------------------------------------------------------------------------------- /resources/game_info/Arena.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/Arena.php -------------------------------------------------------------------------------- /resources/game_info/Battlegrounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/Battlegrounds.json -------------------------------------------------------------------------------- /resources/game_info/Battlegrounds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/Battlegrounds.php -------------------------------------------------------------------------------- /resources/game_info/Paintball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/Paintball.json -------------------------------------------------------------------------------- /resources/game_info/Paintball.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/Paintball.php -------------------------------------------------------------------------------- /resources/game_info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/README.md -------------------------------------------------------------------------------- /resources/game_info/SkyClash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/SkyClash.json -------------------------------------------------------------------------------- /resources/game_info/SkyClash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/SkyClash.php -------------------------------------------------------------------------------- /resources/game_info/SkyWars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/SkyWars.json -------------------------------------------------------------------------------- /resources/game_info/SkyWars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/SkyWars.php -------------------------------------------------------------------------------- /resources/game_info/SuperSmash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/SuperSmash.json -------------------------------------------------------------------------------- /resources/game_info/SuperSmash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/SuperSmash.php -------------------------------------------------------------------------------- /resources/game_info/SurvivalGames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/SurvivalGames.json -------------------------------------------------------------------------------- /resources/game_info/SurvivalGames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/SurvivalGames.php -------------------------------------------------------------------------------- /resources/game_info/Walls3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/Walls3.json -------------------------------------------------------------------------------- /resources/game_info/Walls3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/Walls3.php -------------------------------------------------------------------------------- /resources/game_info/tntgames/Wizards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/tntgames/Wizards.php -------------------------------------------------------------------------------- /resources/game_info/tntgames/wizards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/game_info/tntgames/wizards.json -------------------------------------------------------------------------------- /resources/guild/RankWhitelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/resources/guild/RankWhitelist.php -------------------------------------------------------------------------------- /src/HypixelPHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/HypixelPHP.php -------------------------------------------------------------------------------- /src/cache/CacheHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/cache/CacheHandler.php -------------------------------------------------------------------------------- /src/cache/CacheTimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/cache/CacheTimes.php -------------------------------------------------------------------------------- /src/cache/CacheTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/cache/CacheTypes.php -------------------------------------------------------------------------------- /src/cache/impl/FlatFileCacheHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/cache/impl/FlatFileCacheHandler.php -------------------------------------------------------------------------------- /src/cache/impl/MongoCacheHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/cache/impl/MongoCacheHandler.php -------------------------------------------------------------------------------- /src/cache/impl/NoCacheHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/cache/impl/NoCacheHandler.php -------------------------------------------------------------------------------- /src/classes/APIHolding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/classes/APIHolding.php -------------------------------------------------------------------------------- /src/classes/APIObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/classes/APIObject.php -------------------------------------------------------------------------------- /src/classes/DataHolding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/classes/DataHolding.php -------------------------------------------------------------------------------- /src/classes/HypixelObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/classes/HypixelObject.php -------------------------------------------------------------------------------- /src/classes/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/classes/Module.php -------------------------------------------------------------------------------- /src/classes/serverType/GameType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/classes/serverType/GameType.php -------------------------------------------------------------------------------- /src/classes/serverType/LobbyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/classes/serverType/LobbyType.php -------------------------------------------------------------------------------- /src/classes/serverType/ServerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/classes/serverType/ServerType.php -------------------------------------------------------------------------------- /src/classes/serverType/ServerTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/classes/serverType/ServerTypes.php -------------------------------------------------------------------------------- /src/color/ColorParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/color/ColorParser.php -------------------------------------------------------------------------------- /src/color/ColorUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/color/ColorUtils.php -------------------------------------------------------------------------------- /src/exceptions/BadResponseCodeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/exceptions/BadResponseCodeException.php -------------------------------------------------------------------------------- /src/exceptions/CurlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/exceptions/CurlException.php -------------------------------------------------------------------------------- /src/exceptions/ExceptionCodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/exceptions/ExceptionCodes.php -------------------------------------------------------------------------------- /src/exceptions/FileGetContentsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/exceptions/FileGetContentsException.php -------------------------------------------------------------------------------- /src/exceptions/HypixelPHPException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/exceptions/HypixelPHPException.php -------------------------------------------------------------------------------- /src/exceptions/InvalidUUIDException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/exceptions/InvalidUUIDException.php -------------------------------------------------------------------------------- /src/exceptions/NoPairsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/exceptions/NoPairsException.php -------------------------------------------------------------------------------- /src/fetch/FetchParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/fetch/FetchParams.php -------------------------------------------------------------------------------- /src/fetch/FetchTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/fetch/FetchTypes.php -------------------------------------------------------------------------------- /src/fetch/Fetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/fetch/Fetcher.php -------------------------------------------------------------------------------- /src/fetch/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/fetch/Response.php -------------------------------------------------------------------------------- /src/fetch/adapter/ResponseAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/fetch/adapter/ResponseAdapter.php -------------------------------------------------------------------------------- /src/fetch/impl/DefaultCurlFetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/fetch/impl/DefaultCurlFetcher.php -------------------------------------------------------------------------------- /src/fetch/impl/DefaultFGCFetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/fetch/impl/DefaultFGCFetcher.php -------------------------------------------------------------------------------- /src/log/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/log/Formatter.php -------------------------------------------------------------------------------- /src/log/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/log/Logger.php -------------------------------------------------------------------------------- /src/log/impl/BasicLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/log/impl/BasicLogger.php -------------------------------------------------------------------------------- /src/log/impl/NoLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/log/impl/NoLogger.php -------------------------------------------------------------------------------- /src/log/impl/SysLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/log/impl/SysLogger.php -------------------------------------------------------------------------------- /src/provider/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/provider/Provider.php -------------------------------------------------------------------------------- /src/resources/GameResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/resources/GameResources.php -------------------------------------------------------------------------------- /src/resources/GeneralResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/resources/GeneralResources.php -------------------------------------------------------------------------------- /src/resources/GuildResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/resources/GuildResources.php -------------------------------------------------------------------------------- /src/resources/ResourceManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/resources/ResourceManager.php -------------------------------------------------------------------------------- /src/resources/Resources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/resources/Resources.php -------------------------------------------------------------------------------- /src/resources/games/SkyBlockResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/resources/games/SkyBlockResources.php -------------------------------------------------------------------------------- /src/responses/KeyInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/KeyInfo.php -------------------------------------------------------------------------------- /src/responses/Leaderboards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/Leaderboards.php -------------------------------------------------------------------------------- /src/responses/PunishmentStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/PunishmentStats.php -------------------------------------------------------------------------------- /src/responses/RecentGames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/RecentGames.php -------------------------------------------------------------------------------- /src/responses/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/Resource.php -------------------------------------------------------------------------------- /src/responses/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/Status.php -------------------------------------------------------------------------------- /src/responses/booster/Booster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/booster/Booster.php -------------------------------------------------------------------------------- /src/responses/booster/Boosters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/booster/Boosters.php -------------------------------------------------------------------------------- /src/responses/counts/Counts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/counts/Counts.php -------------------------------------------------------------------------------- /src/responses/counts/GameCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/counts/GameCount.php -------------------------------------------------------------------------------- /src/responses/guild/Guild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/guild/Guild.php -------------------------------------------------------------------------------- /src/responses/guild/GuildLevelUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/guild/GuildLevelUtil.php -------------------------------------------------------------------------------- /src/responses/guild/GuildMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/guild/GuildMember.php -------------------------------------------------------------------------------- /src/responses/guild/GuildMemberList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/guild/GuildMemberList.php -------------------------------------------------------------------------------- /src/responses/guild/GuildRank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/guild/GuildRank.php -------------------------------------------------------------------------------- /src/responses/guild/GuildRanks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/guild/GuildRanks.php -------------------------------------------------------------------------------- /src/responses/player/GameStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/player/GameStats.php -------------------------------------------------------------------------------- /src/responses/player/Player.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/player/Player.php -------------------------------------------------------------------------------- /src/responses/player/Rank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/player/Rank.php -------------------------------------------------------------------------------- /src/responses/player/RankTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/player/RankTypes.php -------------------------------------------------------------------------------- /src/responses/player/Stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/player/Stats.php -------------------------------------------------------------------------------- /src/responses/skyblock/SkyBlockProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/responses/skyblock/SkyBlockProfile.php -------------------------------------------------------------------------------- /src/util/CacheUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/CacheUtil.php -------------------------------------------------------------------------------- /src/util/CachedGetter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/CachedGetter.php -------------------------------------------------------------------------------- /src/util/InputType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/InputType.php -------------------------------------------------------------------------------- /src/util/Leveling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/Leveling.php -------------------------------------------------------------------------------- /src/util/Utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/Utilities.php -------------------------------------------------------------------------------- /src/util/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/Validator.php -------------------------------------------------------------------------------- /src/util/games/BlitzUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/games/BlitzUtils.php -------------------------------------------------------------------------------- /src/util/games/GameUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/games/GameUtils.php -------------------------------------------------------------------------------- /src/util/games/MegaWallsUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/games/MegaWallsUtils.php -------------------------------------------------------------------------------- /src/util/games/bedwars/BedWarsPrestige.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/games/bedwars/BedWarsPrestige.php -------------------------------------------------------------------------------- /src/util/games/bedwars/BedWarsUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/games/bedwars/BedWarsUtils.php -------------------------------------------------------------------------------- /src/util/games/bedwars/ExpCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/games/bedwars/ExpCalculator.php -------------------------------------------------------------------------------- /src/util/games/skywars/ExpCalculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/games/skywars/ExpCalculator.php -------------------------------------------------------------------------------- /src/util/games/skywars/SkyWarsUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/util/games/skywars/SkyWarsUtils.php -------------------------------------------------------------------------------- /src/wrappers/Kart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/Kart.php -------------------------------------------------------------------------------- /src/wrappers/PetStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/PetStats.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/Abilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/Abilities.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/Ability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/Ability.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/AbilityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/AbilityType.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/PlayerClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/PlayerClass.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/PlayerClasses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/PlayerClasses.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/Spec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/Spec.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/weapon/Rarity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/weapon/Rarity.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/weapon/RarityValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/weapon/RarityValues.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/weapon/Weapon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/weapon/Weapon.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/weapon/WeaponGrader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/weapon/WeaponGrader.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/weapon/WeaponInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/weapon/WeaponInventory.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/weapon/WeaponStat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/weapon/WeaponStat.php -------------------------------------------------------------------------------- /src/wrappers/battlegrounds/weapon/WeaponStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/src/wrappers/battlegrounds/weapon/WeaponStats.php -------------------------------------------------------------------------------- /tests/CacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/tests/CacheTest.php -------------------------------------------------------------------------------- /tests/ColorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/tests/ColorTest.php -------------------------------------------------------------------------------- /tests/DataHoldingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/tests/DataHoldingTest.php -------------------------------------------------------------------------------- /tests/ResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/tests/ResponseTest.php -------------------------------------------------------------------------------- /tests/ValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/tests/ValidatorTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/games/bedwars/LevelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/tests/games/bedwars/LevelTest.php -------------------------------------------------------------------------------- /tests/util/TestUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plancke/hypixel-php/HEAD/tests/util/TestUtil.php --------------------------------------------------------------------------------