Full Code of bowser0000/SkyblockMod for AI

master 2b3568c76269 cached
187 files
1.3 MB
308.0k tokens
1065 symbols
1 requests
Download .txt
Showing preview only (1,430K chars total). Download the full file or copy to clipboard to get everything.
Repository: bowser0000/SkyblockMod
Branch: master
Commit: 2b3568c76269
Files: 187
Total size: 1.3 MB

Directory structure:
gitextract_8s_ua0uz/

├── .github/
│   └── workflows/
│       └── build.yml
├── .gitignore
├── COPYING
├── COPYING.LESSER
├── README.md
├── build.gradle.kts
├── gradle/
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── root.gradle.kts
├── settings.gradle.kts
├── src/
│   └── main/
│       ├── java/
│       │   ├── DefenitlyNotAJoikedInstallerFrame.java
│       │   └── me/
│       │       └── Danker/
│       │           ├── DankersSkyblockMod.java
│       │           ├── commands/
│       │           │   ├── CrystalHollowWaypointCommand.java
│       │           │   ├── DHelpCommand.java
│       │           │   ├── DankerGuiCommand.java
│       │           │   ├── PowderTrackerCommand.java
│       │           │   ├── ReloadConfigCommand.java
│       │           │   ├── ReloadRepoCommand.java
│       │           │   ├── RepartyCommand.java
│       │           │   ├── SkillTrackerCommand.java
│       │           │   ├── StopLobbyCommand.java
│       │           │   ├── api/
│       │           │   │   ├── ArmourCommand.java
│       │           │   │   ├── BankCommand.java
│       │           │   │   ├── DungeonsCommand.java
│       │           │   │   ├── FairySoulsCommand.java
│       │           │   │   ├── GuildOfCommand.java
│       │           │   │   ├── HOTMCommand.java
│       │           │   │   ├── HOTMTreeCommand.java
│       │           │   │   ├── InventoryCommand.java
│       │           │   │   ├── LobbyBankCommand.java
│       │           │   │   ├── LobbySkillsCommand.java
│       │           │   │   ├── PetsCommand.java
│       │           │   │   ├── PlayerCommand.java
│       │           │   │   ├── SkillsCommand.java
│       │           │   │   ├── SkyblockPlayersCommand.java
│       │           │   │   ├── SlayerCommand.java
│       │           │   │   ├── TrophyFishCommand.java
│       │           │   │   └── WeightCommand.java
│       │           │   ├── loot/
│       │           │   │   ├── DisplayCommand.java
│       │           │   │   ├── ImportFishingCommand.java
│       │           │   │   ├── LootCommand.java
│       │           │   │   └── ResetLootCommand.java
│       │           │   └── warp/
│       │           │       ├── WarpCommand.java
│       │           │       └── WarpCommandHandler.java
│       │           ├── config/
│       │           │   ├── CfgConfig.java
│       │           │   ├── JsonConfig.java
│       │           │   └── ModConfig.java
│       │           ├── containers/
│       │           │   └── GuiChestDynamic.java
│       │           ├── events/
│       │           │   ├── ChestSlotClickedEvent.java
│       │           │   ├── GuiChestBackgroundDrawnEvent.java
│       │           │   ├── ModInitEvent.java
│       │           │   ├── PacketReadEvent.java
│       │           │   ├── PacketWriteEvent.java
│       │           │   ├── PostConfigInitEvent.java
│       │           │   ├── RenderOverlayEvent.java
│       │           │   └── SlayerLootDropEvent.java
│       │           ├── features/
│       │           │   ├── AbilityCooldowns.java
│       │           │   ├── Alerts.java
│       │           │   ├── AnnounceVanquishers.java
│       │           │   ├── ArachneESP.java
│       │           │   ├── AutoAcceptReparty.java
│       │           │   ├── AutoDisplay.java
│       │           │   ├── AutoJoinSkyblock.java
│       │           │   ├── AutoSwapToPickBlock.java
│       │           │   ├── BazaarTimeToFill.java
│       │           │   ├── BlockPlacingFlowers.java
│       │           │   ├── BlockWrongSlayer.java
│       │           │   ├── BonzoMaskTimer.java
│       │           │   ├── CakeTimer.java
│       │           │   ├── ChatAliases.java
│       │           │   ├── ColouredNames.java
│       │           │   ├── CoordsOptimizer.java
│       │           │   ├── CrimsonMinibossTimer.java
│       │           │   ├── CrystalHollowWaypoints.java
│       │           │   ├── CustomMusic.java
│       │           │   ├── Debug.java
│       │           │   ├── DisableMovement.java
│       │           │   ├── DrillFix.java
│       │           │   ├── DungeonScore.java
│       │           │   ├── DungeonTimer.java
│       │           │   ├── EndOfFarmAlert.java
│       │           │   ├── ExpertiseLore.java
│       │           │   ├── FasterMaddoxCalling.java
│       │           │   ├── FilletMagmafish.java
│       │           │   ├── FirePillarDisplay.java
│       │           │   ├── FishingSpawnAlerts.java
│       │           │   ├── GemstonesLore.java
│       │           │   ├── GetPearlFromSack.java
│       │           │   ├── GiantHPDisplay.java
│       │           │   ├── GoldenEnchants.java
│       │           │   ├── GolemSpawningAlert.java
│       │           │   ├── GpartyNotifications.java
│       │           │   ├── HidePetCandy.java
│       │           │   ├── HidePlayerArmour.java
│       │           │   ├── HideTooltipsInExperiments.java
│       │           │   ├── HideTooltipsMisc.java
│       │           │   ├── HighlightCommissions.java
│       │           │   ├── HighlightFilledOrders.java
│       │           │   ├── HighlightPests.java
│       │           │   ├── HighlightSkeletonMasters.java
│       │           │   ├── KuudraNotifications.java
│       │           │   ├── LocrawSpamFix.java
│       │           │   ├── LowHealthNotifications.java
│       │           │   ├── MeterTracker.java
│       │           │   ├── MinionLastCollected.java
│       │           │   ├── NecronNotifications.java
│       │           │   ├── NoF3Coords.java
│       │           │   ├── NotifySlayerSlain.java
│       │           │   ├── PetColours.java
│       │           │   ├── PowderTracker.java
│       │           │   ├── Reparty.java
│       │           │   ├── Skill50Display.java
│       │           │   ├── SkillTracker.java
│       │           │   ├── SlayerESP.java
│       │           │   ├── SpamHider.java
│       │           │   ├── SpiritBearAlert.java
│       │           │   ├── SpiritBootsFix.java
│       │           │   ├── SpiritMaskTimer.java
│       │           │   ├── StopSalvagingStarredItems.java
│       │           │   ├── TetherDisplay.java
│       │           │   ├── UpdateChecker.java
│       │           │   ├── WatcherReadyAlert.java
│       │           │   ├── loot/
│       │           │   │   ├── BlazeTracker.java
│       │           │   │   ├── CatacombsTracker.java
│       │           │   │   ├── EndermanTracker.java
│       │           │   │   ├── FishingTracker.java
│       │           │   │   ├── GhostTracker.java
│       │           │   │   ├── LootDisplay.java
│       │           │   │   ├── LootTracker.java
│       │           │   │   ├── MythologicalTracker.java
│       │           │   │   ├── SpiderTracker.java
│       │           │   │   ├── TrophyFishTracker.java
│       │           │   │   ├── VampireTracker.java
│       │           │   │   ├── WolfTracker.java
│       │           │   │   └── ZombieTracker.java
│       │           │   └── puzzlesolvers/
│       │           │       ├── ArrowTerminalSolver.java
│       │           │       ├── BlazeSolver.java
│       │           │       ├── BlockWrongTerminalClicks.java
│       │           │       ├── BoulderSolver.java
│       │           │       ├── ChronomatronSolver.java
│       │           │       ├── ClickInOrderSolver.java
│       │           │       ├── CreeperSolver.java
│       │           │       ├── IceWalkSolver.java
│       │           │       ├── LividSolver.java
│       │           │       ├── SameColourSolver.java
│       │           │       ├── SelectAllColourSolver.java
│       │           │       ├── SilverfishSolver.java
│       │           │       ├── StartsWithSolver.java
│       │           │       ├── SuperpairsSolver.java
│       │           │       ├── TeleportPadSolver.java
│       │           │       ├── ThreeManSolver.java
│       │           │       ├── TicTacToeSolver.java
│       │           │       ├── TriviaSolver.java
│       │           │       ├── UltrasequencerSolver.java
│       │           │       └── WaterSolver.java
│       │           ├── gui/
│       │           │   ├── WarningGui.java
│       │           │   ├── WarningGuiRedirect.java
│       │           │   ├── alerts/
│       │           │   │   ├── AlertActionGui.java
│       │           │   │   ├── AlertAddGui.java
│       │           │   │   └── AlertsGui.java
│       │           │   ├── aliases/
│       │           │   │   ├── AliasesActionGui.java
│       │           │   │   ├── AliasesAddGui.java
│       │           │   │   └── AliasesGui.java
│       │           │   ├── buttons/
│       │           │   │   ├── FeatureButton.java
│       │           │   │   └── LocationButton.java
│       │           │   └── crystalhollowwaypoints/
│       │           │       ├── CrystalHollowAddWaypointGui.java
│       │           │       ├── CrystalHollowWaypointActionGui.java
│       │           │       └── CrystalHollowWaypointsGui.java
│       │           ├── handlers/
│       │           │   ├── APIHandler.java
│       │           │   ├── ConfigHandler.java
│       │           │   ├── HypixelAPIHandler.java
│       │           │   ├── PacketHandler.java
│       │           │   ├── ScoreboardHandler.java
│       │           │   └── TextRenderer.java
│       │           ├── locations/
│       │           │   ├── DungeonFloor.java
│       │           │   └── Location.java
│       │           └── utils/
│       │               ├── BoulderUtils.java
│       │               ├── IceWalkUtils.java
│       │               ├── RenderUtils.java
│       │               ├── SilverfishUtils.java
│       │               ├── TicTacToeUtils.java
│       │               └── Utils.java
│       └── resources/
│           └── mcmod.info
└── versions/
    └── mainProject

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/workflows/build.yml
================================================
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Compile Beta

on:
  push:
    branches: [ development ]
  pull_request:
    branches: [ development ]

jobs:
  build:
   runs-on: windows-latest
   steps:
    - uses: actions/checkout@v2
    - uses: actions/setup-java@v1
      with: 
        java-version: 17
    - name: Cache Gradle packages
      uses: actions/cache@v2
      with:
        path: |
          ~/.gradle/caches
          ~/.gradle/wrapper
        key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle', '**/gradle-wrapper.properties') }}
        restore-keys: ${{ runner.os }}-gradle
    - run: ./gradlew build --no-daemon
    - name: Upload
      uses: actions/upload-artifact@v2
      with:
       name: Beta Version (Unstable)
       path: |
         versions/1.8.9-forge/build/libs/*.jar
         !versions/1.8.9-forge/build/libs/*-dev.jar

================================================
FILE: .gitignore
================================================
# eclipse
bin
*.launch
.settings
.metadata
.classpath
.project

# idea
out
*.ipr
*.iws
*.iml
.idea

# gradle
build
.gradle

# other
eclipse
run
*.txt
*.cfg
*.gz
*.log
*.dat
*.mca
*.json
*.dat_mcr
*.lock
*.dat_old


================================================
FILE: COPYING
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: COPYING.LESSER
================================================
                   GNU LESSER GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.


  This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.

  0. Additional Definitions.

  As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.

  "The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.

  An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.

  A "Combined Work" is a work produced by combining or linking an
Application with the Library.  The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".

  The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.

  The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.

  1. Exception to Section 3 of the GNU GPL.

  You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.

  2. Conveying Modified Versions.

  If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:

   a) under this License, provided that you make a good faith effort to
   ensure that, in the event an Application does not supply the
   function or data, the facility still operates, and performs
   whatever part of its purpose remains meaningful, or

   b) under the GNU GPL, with none of the additional permissions of
   this License applicable to that copy.

  3. Object Code Incorporating Material from Library Header Files.

  The object code form of an Application may incorporate material from
a header file that is part of the Library.  You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:

   a) Give prominent notice with each copy of the object code that the
   Library is used in it and that the Library and its use are
   covered by this License.

   b) Accompany the object code with a copy of the GNU GPL and this license
   document.

  4. Combined Works.

  You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:

   a) Give prominent notice with each copy of the Combined Work that
   the Library is used in it and that the Library and its use are
   covered by this License.

   b) Accompany the Combined Work with a copy of the GNU GPL and this license
   document.

   c) For a Combined Work that displays copyright notices during
   execution, include the copyright notice for the Library among
   these notices, as well as a reference directing the user to the
   copies of the GNU GPL and this license document.

   d) Do one of the following:

       0) Convey the Minimal Corresponding Source under the terms of this
       License, and the Corresponding Application Code in a form
       suitable for, and under terms that permit, the user to
       recombine or relink the Application with a modified version of
       the Linked Version to produce a modified Combined Work, in the
       manner specified by section 6 of the GNU GPL for conveying
       Corresponding Source.

       1) Use a suitable shared library mechanism for linking with the
       Library.  A suitable mechanism is one that (a) uses at run time
       a copy of the Library already present on the user's computer
       system, and (b) will operate properly with a modified version
       of the Library that is interface-compatible with the Linked
       Version.

   e) Provide Installation Information, but only if you would otherwise
   be required to provide such information under section 6 of the
   GNU GPL, and only to the extent that such information is
   necessary to install and execute a modified version of the
   Combined Work produced by recombining or relinking the
   Application with a modified version of the Linked Version. (If
   you use option 4d0, the Installation Information must accompany
   the Minimal Corresponding Source and Corresponding Application
   Code. If you use option 4d1, you must provide the Installation
   Information in the manner specified by section 6 of the GNU GPL
   for conveying Corresponding Source.)

  5. Combined Libraries.

  You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:

   a) Accompany the combined library with a copy of the same work based
   on the Library, uncombined with any other library facilities,
   conveyed under the terms of this License.

   b) Give prominent notice with the combined library that part of it
   is a work based on the Library, and explaining where to find the
   accompanying uncombined form of the same work.

  6. Revised Versions of the GNU Lesser General Public License.

  The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.

  Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.

  If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.

================================================
FILE: README.md
================================================
# Danker's Skyblock Mod
QOL changes that enhances your Hypixel Skyblock experience. Created to add features I couldn't find in a mod, or if the mod was paid (which is against the [Mojang TOS](https://account.mojang.com/documents/commercial_guidelines)).

Discord Server: https://discord.gg/QsEkNQS

Modrinth Link: https://modrinth.com/mod/dankers-skyblock-mod

<details>
<summary>Incompatibilites</summary>

## Incompatibilities
- Old Animations <2.6.4 - Frequent crashes
- Old Animations 2.6.4
  - Pet colors does not color slots
  - Catacombs F7 terminal solvers do not color slots
  - Enchanting solvers do not color slots
- Old tab display
  - Many features rely on using the location found in the new tab display
</details>

<details>
<summary>Current Features</summary>

## Current Features
- Guild party desktop notifications
- Coordinate and angle display
- Golden T10/T6/T4 enchant display
- Disable Spirit Sceptre messages
- Disable Midas Staff messages
- Disable Implosion messages
- Disable heal messages
- Disable ability cooldown messages
- Disable out of mana messages
- Disable kill combo messages
- Slayer item tracker
- Ghosts item tracker  
- RNGesus drop alerts
- Click anywhere on-screen to open Maddox
- Maddox menu keybind
- Block starting other slayer quests
- Slayer slain alert
- Fishing, jerry fishing, fishing festival, spooky fishing, crystal hollows fishing, lava fishing, trophy fishing trackers
- Expertise kills in fishing rod lore
- Gemstones applied in item lore
- Catacombs trackers
- Dungeons puzzle solver (Riddle, trivia, blaze, creeper, water, tic tac toe, boulder, silverfish, ice walk)
- Dungeons timer (similar to LiveSplit)
- Misc. dungeon info
- Watcher ready message
- Catacombs F7 Stage 3 solvers (Starts with letter, select all colour, ignore arrows on sea lanterns)
- Find correct Livid (with graphic display of HP)
- Catacombs F6 and F7 Giant HP display
- Use custom music in supported locations
- Experimentation solvers (Ultrasequencer, Chronomatron, Superpairs)
- Hide tooltips in experiment addons
- Hide tooltips in Melody's Harp
- Pet background colors based on level
- Golem spawning alerts + 20 second timer
- Skill xp/hour tracker
- Show total skill xp instead of progress to next level
- Show time until century cakes run out
- Mythological event (Diana) tracker
- Low health alert in dungeons
- API commands
- Update checker
- Reparty command
- Auto accept reparty
- Highlight Slayer Bosses
- Highlight Arachne
- Highlight Skeleton Masters
- Show teammates in 30 block radius
- Hide pet candy in pet tooltip
- Highlighting completed commissions
- Custom name colors
- Crystal Hollows waypoints (with SkyblockExtras support)
- Ability cooldowns display
- Custom alerts based on chat
- Predicted dungeon score display
- Hide player armour
- Automatically join skyblock
- Fire pillar display
- Chat aliases
- Thunder/Lord Jawbus spawn alerts
- Show when minion was last collected
- Show amount of Magmafish if trophy fish are filleted
- Show estimated time until bazaar order is filled
- Show timer until Crimson Isle minibosses respawn
- Automatically announce Vanquishers in chat
- Kuudra notifications (stun/ballista/cloak)
- Powder/hour tracker
- Fix drill animation resetting
- Highlight filled bazaar orders
- Dungeon RNG meter info display
- Optimize mining route
</details>

<details>
<summary>Commands</summary>

## Commands
- /dhelp - Returns this message in-game.
- /dsm - Opens the GUI for Danker's Skyblock Mod.
- /loot <zombie/spider/wolf/enderman/blaze/vampire/fishing/catacombs/mythological/> [winter/festival/spooky/ch/lava/trophy/f(1-7)/mm/session] - Returns loot received from slayer quests or fishing stats. /loot fishing winter returns winter sea creatures instead.
- /display <zombie/spider/wolf/enderman/blaze/vampire/fishing/catacombs/mythological/ghosts/auto/off> [winter/festival/spooky/ch/lava/trophy/f(1-7)/mm/session] - Text display for trackers. /display fishing winter displays winter sea creatures instead. /display auto automatically displays the loot for the slayer quest you have active.
- /resetloot <zombie/spider/wolf/enderman/blaze/vampire/fishing/catacombs/mythological/confirm/cancel> -  - Resets loot for trackers. /resetloot confirm confirms the reset.
- /slayer [player] - Uses API to get slayer xp of a person. If no name is provided, it checks yours.
- /skill [player] - Uses API to get skill levels of a person. If no name is provided, it checks yours.
- /lobbyskills - Uses API to find the average skills of the lobby, as well the three players with the highest skill average.
- /guildof [player] - Uses API to get guild name and guild master of a person. If no name is provided, it checks yours.
- /petsof [player] - Uses API to get pets of a person. If no name is provided, it checks yours.
- /bank [player] - Uses API to get bank and purse coins of a person. If no name is provided, it checks yours.
- /armor [player] - Uses API to get armor of a person. If no name is provided, it checks yours.
- /dungeons [player] - Uses API to get dungeon levels of a person. If no name is provided, it checks yours.
- /weight [player] [lily/farming] - Uses API to get weight of a person. If no name is provided, it checks yours. Adding lily uses lily's weight. Adding farming uses Kaeso's farming weight.
- /importfishing - Imports your fishing stats from your latest profile to your fishing tracker using the API.
- /sbplayers - Uses API to find how many players are on each Skyblock island.
- /reparty - Disbands and reparties all members in the party
- /fairysouls - Check the fairysouls of a player
- /skilltracker <start/stop/reset> - Text display for skill xp/hour.
- /lobbybank - Uses API to find the average bank total of the lobby, as well the three players with the highest total money in the bank (and purse).
- /player [player] - Uses API to find skills, slayers, coins and weight of a player.
- /reloadconfig - Reloads Danker's Skyblock Mod config.
- /reloaddsmrepo - Reloads Danker's Skyblock Mod repository.
- /hotmof [player] - Uses API to find total powder and HotM tree of a person. If no name is provided, it checks yours.
- /trophyfish [player] - Uses API to find trophy fish stats of a person. If no name is provided, it checks yours.
- /stoplobby - Stops currently running /lobbyskills or /lobbybank command.
- /powdertracker <start/stop/reset> - Text display for powder/hour.
</details>

<details>
<summary>Keybinds</summary>

## Keybinds
- Open Maddox menu - M by default.
- Regular Ability - Numpad 4 by default.
- Start/Stop Skill Tracker - Numpad 5 by default.
- Create Waypoint - Numpad 6 by default.
- Start/Stop Powder Tracker - Numpad 8 by default.
- Disable Mouse Movement - None by default.
- Disable Moving Forwards/Back - None by default.
- Disable Moving Left/Right - None by default.
</details>

<details>
<summary>Warps</summary>

## Warps
Shortcut commands that save you the time of typing the whole warp command.
- /deep - Warps you to the Deep Caverns.
- /nether - Warps you to the Crimson Isle.
- /isle - Warps you to the Crimson Isle.
- /crimson - Warps you to the Crimson Isle.
- /mines - Warps you to the Dwarven Mines.
- /forge - Warps you to the Dwarven Forge.
- /crystals - Warps you to the Crystal Hollows.
- /gold - Warps you to the Gold Mine.
- /desert - Warps you to the Desert.
- /spider - Warps you to the Spiders Den.
- /barn - Warps you to the Barn.
- /end - Warps you to the End.
- /park - Warps you to the Park.
- /castle - Warps you to the Hub Castle.
- /da - Warps you to the Dark Auction.
- /crypt - Warps you to the Crypt in the Hub.
- /nest - Warps you to the top of the Spider's Den.
- /void - Warps you to the Void Sepulture in the End.
- /drag - Warps you to the Dragons Nest in the End.
- /jungle - Warps you to the Jungle.
- /howl - Warps you to the Howling Cave in the Park.
- /dun - Warps you to the Dungeon Hub.
</details>

<details>
<summary>Custom Music</summary>

## Custom Music
1. Place a music file with the given name in the `.minecraft/config/dsmmusic` folder:
  - Dungeon: `dungeon.wav`
  - Blood room: `bloodroom.wav`
  - Dungeon boss: `dungeonboss.wav`
  - Dungeon hub: `dungeonhub.wav`
  - F7 Phase 2 (Storm): `phasetwo.wav`
  - F7 Phase 3 (Goldor): `phasethree.wav`
  - F7 Phase 4 (Necron): `phasefour.wav`
  - F7 Phase 5 (Wither King): `phasefive.wav`
  - Hub: `hub.wav`
  - Private Island: `island.wav`
  - Farming Islands: `farmingislands.wav`
  - Garden: `garden.wav`
  - Gold Mine: `goldmine.wav`
  - Deep Caverns: `deepcaverns.wav`
  - Dwarven Mines: `dwarvenmines.wav`
  - Crystal Hollows: `crystalhollows.wav`
  - Spider's Den: `spidersden.wav`
  - Crimson Isle: `crimsonisle.wav`
  - Kuudra: `kuudra.wav`
  - The End: `end.wav`
  - The Park: `park.wav`
2. Either run `/dsmmusic reload` or restart your game.
3. Enable the custom music in `/dsm`.
4. (Optional) Change the volume of the music with `/dsmmusic volume`.

#### Shuffling
By adding numbers to the end of the file, you can have multiple music files for the same area. One of them will be randomly selected (the same song could play twice in a row). For example:
- dungeon.wav
- dungeon1.wav
- dungeon2.wav
- dungeon99.wav
</details>

<details>
<summary>Alert Regex</summary>

## Alert Regex
To replace alert text with a captured group, add `$$x$$` to the alert text, with `x` being the number of the capture group. `$$0$$` will always be replaced with the entire trigger message.

For example, with the following alert

Regex: `From (.*) (.*): (.*)`  
Alert Text: `$$2$$ says $$3$$`  
Trigger Message: `From [ADMIN] Plancke: Nice autogg`  

the following alert text would appear

`Plancke says Nice autogg`.
</details>

<details>
<summary>Notes</summary>

### Notes
- Slayer tracker for token drops and 20% chance drops uses a 12x12x12 bounding box centered on the player to detect the drops. If you are out of the range of the item drop, it will not count on the tracker.
- API commands may take a while depending on your internet connection. The API may also go down.
- If you use too many API commands too fast, you can and will get rate-limited.
- Importing fishing uses your sea creature kills, which may not always be exactly correct (e.x. someone else kills your sea creature).
</details>

### Credits to Open Source Software
Credit to all the following open source software used in this mod.

Software | License
------------ | -------------
[SkyblockAddons](https://github.com/BiscuitDevelopment/SkyblockAddons/) | [MIT License](https://github.com/BiscuitDevelopment/SkyblockAddons/blob/master/LICENSE)
[Zealot Counter](https://github.com/symt/zealot-counter/) | [Apache License](https://github.com/symt/zealot-counter/blob/master/LICENSE.md)
[NotEnoughUpdates](https://github.com/Moulberry/NotEnoughUpdates/) | [Creative Commons Public License](https://github.com/Moulberry/NotEnoughUpdates/blob/master/LICENSE)
[HyChat](https://github.com/Moulberry/Hychat) | [Creative Commons Public License](https://github.com/Moulberry/Hychat/blob/master/LICENSE)
[SkyblockCatia](https://github.com/SteveKunG/SkyBlockcatia) | [MIT License](https://github.com/SteveKunG/SkyBlockcatia/blob/1.8.9/LICENSE.md)
[MatterOverdrive (Legacy Edition)](https://bitbucket.org/hrznstudio/mo-legacy-edition/) | [GNU General Public License](https://bitbucket.org/hrznstudio/mo-legacy-edition/src/1.12.2/LICENSE.md)
[Hide Armour](https://github.com/Furgl/Hide-Armor/tree/1.15.2) | No License
[Elite Discord Bot](https://github.com/ptlthg/EliteDiscordBot) | [MIT License](https://github.com/ptlthg/EliteDiscordBot/blob/master/LICENSE)
[Baeldung Tutorials](https://github.com/eugenp/tutorials) | [MIT License](https://github.com/eugenp/tutorials/blob/master/LICENSE)


================================================
FILE: build.gradle.kts
================================================
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import gg.essential.gradle.util.noServerRunConfigs

plugins {
    id("gg.essential.multi-version")
    id("gg.essential.defaults.repo")
    id("gg.essential.defaults.java")
    id("gg.essential.defaults.loom")
    id("com.github.johnrengelman.shadow")
    id("net.kyori.blossom") version "1.3.0"
    id("io.github.juuxel.loom-quiltflower-mini")
    id("signing")
    java
}

val mod_name: String by project
val mod_version: String by project
val mod_id: String by project

preprocess {
    vars.put("MODERN", if (project.platform.mcMinor >= 16) 1 else 0)
}

blossom {
    replaceToken("@VER@", mod_version)
    replaceToken("@NAME@", mod_name)
    replaceToken("@ID@", mod_id)
}

version = mod_version
group = "me.Danker"
base {
    archivesName.set(mod_name)
}
loom {
    noServerRunConfigs()
    if (project.platform.isLegacyForge) {
        launchConfigs.named("client") {
            arg("--tweakClass", "cc.polyfrost.oneconfig.loader.stage0.LaunchWrapperTweaker")
            property("mixin.debug.export", "true")
        }
        runConfigs.named("client") {
            vmArgs.remove("-XstartOnFirstThread")
        }
    }
}

val shade: Configuration by configurations.creating {
    configurations.implementation.get().extendsFrom(this)
}

sourceSets {
    main {
        output.setResourcesDir(java.classesDirectory)
    }
}

repositories {
    maven("https://repo.polyfrost.cc/releases")
}

dependencies {
    modCompileOnly("cc.polyfrost:oneconfig-$platform:0.2.2-alpha+")

    if (platform.isLegacyForge) {
        shade("cc.polyfrost:oneconfig-wrapper-launchwrapper:1.0.0-beta17")
        runtimeOnly("me.djtheredstoner:DevAuth-forge-legacy:1.1.0")
    }
}

tasks.processResources {
    inputs.property("id", mod_id)
    inputs.property("name", mod_name)
    val java = if (project.platform.mcMinor >= 18) {
        17
    } else {
        if (project.platform.mcMinor == 17) 16 else 8
    }
    val compatLevel = "JAVA_${java}"
    inputs.property("java", java)
    inputs.property("java_level", compatLevel)
    inputs.property("version", mod_version)
    inputs.property("mcVersionStr", project.platform.mcVersionStr)
    filesMatching(listOf("mcmod.info", "mixins.${mod_id}.json", "mods.toml")) {
        expand(
                mapOf(
                        "id" to mod_id,
                        "name" to mod_name,
                        "java" to java,
                        "java_level" to compatLevel,
                        "version" to mod_version,
                        "mcVersionStr" to project.platform.mcVersionStr
                )
        )
    }
    filesMatching("fabric.mod.json") {
        expand(
                mapOf(
                        "id" to mod_id,
                        "name" to mod_name,
                        "java" to java,
                        "java_level" to compatLevel,
                        "version" to mod_version,
                        "mcVersionStr" to project.platform.mcVersionStr.substringBeforeLast(".") + ".x"
                )
        )
    }
}

tasks {
    withType(Jar::class.java) {
        if (project.platform.isFabric) {
            exclude("mcmod.info", "mods.toml")
        } else {
            exclude("fabric.mod.json")
            if (project.platform.isLegacyForge) {
                exclude("mods.toml")
            } else {
                exclude("mcmod.info")
            }
        }
    }
    named<ShadowJar>("shadowJar") {
        archiveClassifier.set("dev")
        configurations = listOf(shade)
        duplicatesStrategy = DuplicatesStrategy.EXCLUDE
    }
    remapJar {
        input.set(shadowJar.get().archiveFile)
        archiveClassifier.set("")
    }
    jar {
        manifest {
            attributes(
                    mapOf(
                            "ModSide" to "CLIENT",
                            "ForceLoadAsMod" to true,
                            "TweakOrder" to "0",
                            "TweakClass" to "cc.polyfrost.oneconfig.loader.stage0.LaunchWrapperTweaker",
                            "Main-Class" to "DefenitlyNotAJoikedInstallerFrame"
                    )
            )
        }
        dependsOn(shadowJar)
        archiveClassifier.set("")
        enabled = false
    }
}

================================================
FILE: gradle/wrapper/gradle-wrapper.properties
================================================
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

================================================
FILE: gradle.properties
================================================
mod_name = Danker's Skyblock Mod
mod_id = Danker's Skyblock Mod
mod_version = 2.3.1

essential.defaults.loom=0

org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.configureoncommand=true
org.gradle.parallel.threads=4
org.gradle.jvmargs=-Xmx2G

================================================
FILE: gradlew
================================================
#!/usr/bin/env sh

#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

##############################################################################
##
##  Gradle start up script for UN*X
##
##############################################################################

# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
    ls=`ls -ld "$PRG"`
    link=`expr "$ls" : '.*-> \(.*\)$'`
    if expr "$link" : '/.*' > /dev/null; then
        PRG="$link"
    else
        PRG=`dirname "$PRG"`"/$link"
    fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null

APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

warn () {
    echo "$*"
}

die () {
    echo
    echo "$*"
    echo
    exit 1
}

# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
  CYGWIN* )
    cygwin=true
    ;;
  Darwin* )
    darwin=true
    ;;
  MINGW* )
    msys=true
    ;;
  NONSTOP* )
    nonstop=true
    ;;
esac

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar


# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
        # IBM's JDK on AIX uses strange locations for the executables
        JAVACMD="$JAVA_HOME/jre/sh/java"
    else
        JAVACMD="$JAVA_HOME/bin/java"
    fi
    if [ ! -x "$JAVACMD" ] ; then
        die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
    fi
else
    JAVACMD="java"
    which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi

# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
    MAX_FD_LIMIT=`ulimit -H -n`
    if [ $? -eq 0 ] ; then
        if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
            MAX_FD="$MAX_FD_LIMIT"
        fi
        ulimit -n $MAX_FD
        if [ $? -ne 0 ] ; then
            warn "Could not set maximum file descriptor limit: $MAX_FD"
        fi
    else
        warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
    fi
fi

# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
    GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi

# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
    APP_HOME=`cygpath --path --mixed "$APP_HOME"`
    CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`

    JAVACMD=`cygpath --unix "$JAVACMD"`

    # We build the pattern for arguments to be converted via cygpath
    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
    SEP=""
    for dir in $ROOTDIRSRAW ; do
        ROOTDIRS="$ROOTDIRS$SEP$dir"
        SEP="|"
    done
    OURCYGPATTERN="(^($ROOTDIRS))"
    # Add a user-defined pattern to the cygpath arguments
    if [ "$GRADLE_CYGPATTERN" != "" ] ; then
        OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
    fi
    # Now convert the arguments - kludge to limit ourselves to /bin/sh
    i=0
    for arg in "$@" ; do
        CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
        CHECK2=`echo "$arg"|egrep -c "^-"`                                 ### Determine if an option

        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition
            eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
        else
            eval `echo args$i`="\"$arg\""
        fi
        i=`expr $i + 1`
    done
    case $i in
        0) set -- ;;
        1) set -- "$args0" ;;
        2) set -- "$args0" "$args1" ;;
        3) set -- "$args0" "$args1" "$args2" ;;
        4) set -- "$args0" "$args1" "$args2" "$args3" ;;
        5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
        6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
        7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
        8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
        9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
    esac
fi

# Escape application args
save () {
    for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
    echo " "
}
APP_ARGS=`save "$@"`

# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"

exec "$JAVACMD" "$@"


================================================
FILE: gradlew.bat
================================================
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem      https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem

@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem  Gradle startup script for Windows
@rem
@rem ##########################################################################

@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal

set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"

@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome

set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute

echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto execute

echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:execute
@rem Setup the command line

set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar


@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*

:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd

:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if  not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1

:mainEnd
if "%OS%"=="Windows_NT" endlocal

:omega


================================================
FILE: root.gradle.kts
================================================
plugins {
    kotlin("jvm") version "1.6.21" apply false
    id("gg.essential.multi-version.root")
    id("com.github.johnrengelman.shadow") version "7.1.2" apply false
    id("io.github.juuxel.loom-quiltflower-mini") version "171a6e2e49" apply false
}

preprocess {
    "1.8.9-forge"(10809, "srg") {}
}

================================================
FILE: settings.gradle.kts
================================================
pluginManagement {
    repositories {
        gradlePluginPortal()
        mavenCentral()
        maven("https://repo.polyfrost.cc/releases")
        maven("https://maven.architectury.dev/")
    }
    plugins {
        val egtVersion = "0.1.11"
        id("gg.essential.multi-version.root") version egtVersion
    }
    resolutionStrategy {
        eachPlugin {
            if (requested.id.id == "io.github.juuxel.loom-quiltflower-mini") {
                useModule("com.github.wyvest:loom-quiltflower-mini:${requested.version}")
            }
        }
    }
}

val mod_name: String by settings

rootProject.name = mod_name
rootProject.buildFileName = "root.gradle.kts"

listOf(
        "1.8.9-forge"
).forEach { version ->
    include(":$version")
    project(":$version").apply {
        projectDir = file("versions/$version")
        buildFileName = "../../build.gradle.kts"
    }
}

================================================
FILE: src/main/java/DefenitlyNotAJoikedInstallerFrame.java
================================================
import me.Danker.DankersSkyblockMod;

import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.image.BufferedImage;
import java.io.*;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.file.Files;
import java.util.Locale;
import java.util.Objects;
import java.util.jar.JarFile;
import java.util.regex.Pattern;
import java.util.zip.ZipEntry;

public class DefenitlyNotAJoikedInstallerFrame extends JFrame implements ActionListener, MouseListener {

    private static final Pattern IN_MODS_SUBFOLDER = Pattern.compile("1\\.8\\.9[/\\\\]?$");

    private JLabel logo = null;
    private JLabel versionInfo = null;
    private JLabel labelFolder = null;

    private JPanel panelCenter = null;
    private JPanel panelBottom = null;
    private JPanel totalContentPane = null;

    private JTextArea descriptionText = null;
    private JTextArea forgeDescriptionText = null;

    private JTextField textFieldFolderLocation = null;
    private JButton buttonChooseFolder = null;

    private JButton buttonInstall = null;
    private JButton buttonOpenFolder = null;
    private JButton buttonClose = null;

    private static final int TOTAL_HEIGHT = 442; //435
    private static final int TOTAL_WIDTH = 404;

    private int x = 0;
    private int y = 0; 

    private int w = TOTAL_WIDTH;
    private int h;
    private int margin;

    public DefenitlyNotAJoikedInstallerFrame() {
        try {
            setName("DankersSkyblockModInstallerFrame");
            setTitle("DSM Installer");
            setResizable(false);
            setSize(TOTAL_WIDTH, TOTAL_HEIGHT);
            setContentPane(getPanelContentPane());

            getButtonFolder().addActionListener(this);
            getButtonInstall().addActionListener(this);
            getButtonOpenFolder().addActionListener(this);
            getButtonClose().addActionListener(this);
            getForgeTextArea().addMouseListener(this);

            pack();
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

            getFieldFolder().setText(getModsFolder().getPath());
            getButtonInstall().setEnabled(true);
            getButtonInstall().requestFocus();
        } catch (Exception ex) {
            showErrorPopup(ex);
        }
    }

    public static void main(String[] args) {
        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            DefenitlyNotAJoikedInstallerFrame frame = new DefenitlyNotAJoikedInstallerFrame();
            frame.centerFrame(frame);
            frame.setVisible(true);

        } catch (Exception ex) {
            showErrorPopup(ex);
        }
    }

    private JPanel getPanelContentPane() {
        if (totalContentPane == null) {
            try {
                totalContentPane = new JPanel();
                totalContentPane.setName("PanelContentPane");
                totalContentPane.setLayout(new BorderLayout(5, 5));
                totalContentPane.setPreferredSize(new Dimension(TOTAL_WIDTH, TOTAL_HEIGHT));
                totalContentPane.add(getPanelCenter(), "Center");
                totalContentPane.add(getPanelBottom(), "South");
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }
        }
        return totalContentPane;
    }

    private JPanel getPanelCenter() {
        if (panelCenter == null) {
            try {
                (panelCenter = new JPanel()).setName("PanelCenter");
                panelCenter.setLayout(null);
                panelCenter.add(getPictureLabel(), getPictureLabel().getName());
                panelCenter.add(getVersionInfo(), getVersionInfo().getName());
                panelCenter.add(getTextArea(), getTextArea().getName());
                panelCenter.add(getForgeTextArea(), getForgeTextArea().getName());
                panelCenter.add(getLabelFolder(), getLabelFolder().getName());
                panelCenter.add(getFieldFolder(), getFieldFolder().getName());
                panelCenter.add(getButtonFolder(), getButtonFolder().getName());
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }
        }
        return panelCenter;
    }

    private JLabel getPictureLabel() {
        if (logo == null) {
            try {
                h = w/2;
                margin = 5;

                BufferedImage myPicture = ImageIO.read(Objects.requireNonNull(getClass().getClassLoader()
                        .getResourceAsStream("assets/dsm/icons/logo.png"), "Logo not found."));
                Image scaled = myPicture.getScaledInstance(w-margin*2, h-margin, Image.SCALE_SMOOTH);
                logo = new JLabel(new ImageIcon(scaled));
                logo.setName("logo");
                logo.setBounds(x+margin, y+margin, w-margin*2, h-margin);
                logo.setFont(new Font(Font.DIALOG, Font.BOLD, 18));
                logo.setHorizontalAlignment(SwingConstants.CENTER);
                logo.setPreferredSize(new Dimension(w, h));

                y += h;
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }
        }
        return logo;
    }

    private JLabel getVersionInfo() {
        if (versionInfo == null) {
            try {
                h = 47; //34

                versionInfo = new JLabel();
                versionInfo.setName("LabelMcVersion");
                versionInfo.setBounds(x, y+1, w, h); 
                versionInfo.setFont(new Font(Font.DIALOG, Font.BOLD, 14));
                versionInfo.setHorizontalAlignment(SwingConstants.CENTER);
                versionInfo.setPreferredSize(new Dimension(w, h));
                versionInfo.setText("<html><body>Danker's Skyblock Mod - Installer by Biscuit <br><center> for Minecraft 1.8.9</center></body></html>");

                y += h-5;
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }
        }
        return versionInfo;
    }


    private JTextArea getTextArea() {
        if (descriptionText == null) {
            try {
                h = 60;
                margin = 10;

                descriptionText = new JTextArea();
                descriptionText.setName("TextArea");
                setTextAreaProperties(descriptionText);
                descriptionText.setText("This installer will copy Danker's Skyblock Mod into your forge mods folder for you, and replace any old versions that already exist. " +
                        "Close this if you prefer to do this yourself!");
                descriptionText.setWrapStyleWord(true);

                y += h;
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }
        }
        return descriptionText;
    }

    private void setTextAreaProperties(JTextArea textArea) {
        textArea.setBounds(x+margin, y+margin, w-margin*2, h-margin);
        textArea.setEditable(false);
        textArea.setHighlighter(null);
        textArea.setEnabled(true);
        textArea.setFont(new Font(Font.DIALOG, Font.PLAIN, 12));
        textArea.setLineWrap(true);
        textArea.setOpaque(false);
        textArea.setPreferredSize(new Dimension(w-margin*2, h-margin));
    }

    private JTextArea getForgeTextArea() {
        if (forgeDescriptionText == null) {
            try {
                h = 55;
                margin = 10;

                forgeDescriptionText = new JTextArea();
                forgeDescriptionText.setName("TextAreaForge");


                setTextAreaProperties(forgeDescriptionText);





                forgeDescriptionText.setText("However, you still need to install Forge client in order to be able to run this mod. Click here to visit the download page for Forge 1.8.9!");
                forgeDescriptionText.setForeground(Color.BLUE.darker());
                forgeDescriptionText.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
                forgeDescriptionText.setWrapStyleWord(true);

                y += h;
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }
        }
        return forgeDescriptionText;
    }

    private JLabel getLabelFolder() {
        if (labelFolder == null) {
            h = 16;
            w = 65;

            x += 10; // Padding

            try {
                labelFolder = new JLabel();
                labelFolder.setName("LabelFolder");
                labelFolder.setBounds(x, y+2, w, h);
                labelFolder.setPreferredSize(new Dimension(w, h));
                labelFolder.setText("Mods Folder");
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }

            x += w;
        }
        return labelFolder;
    }

    private JTextField getFieldFolder() {
        if (textFieldFolderLocation == null) {
            h = 20;
            w = 287;

            try {
                textFieldFolderLocation = new JTextField();
                textFieldFolderLocation.setName("FieldFolder");
                textFieldFolderLocation.setBounds(x, y, w, h);
                textFieldFolderLocation.setEditable(false);
                textFieldFolderLocation.setPreferredSize(new Dimension(w, h));
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }

            x += w;
        }
        return textFieldFolderLocation;
    }

    private JButton getButtonFolder() {
        if (buttonChooseFolder == null) {
            h = 20;
            w = 25;

            x += 10; // Padding

            try {
                BufferedImage myPicture = ImageIO.read(Objects.requireNonNull(getClass().getClassLoader()
                        .getResourceAsStream("assets/dsm/icons/folder.png"), "Folder icon not found."));
                Image scaled = myPicture.getScaledInstance(w-8, h-6, Image.SCALE_SMOOTH);
                buttonChooseFolder = new JButton(new ImageIcon(scaled));
                buttonChooseFolder.setName("ButtonFolder");
                buttonChooseFolder.setBounds(x, y, w, h);
                buttonChooseFolder.setPreferredSize(new Dimension(w, h));
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }
        }
        return buttonChooseFolder;
    }

    private JPanel getPanelBottom() {
        if (panelBottom == null) {
            try {
                panelBottom = new JPanel();
                panelBottom.setName("PanelBottom");
                panelBottom.setLayout(new FlowLayout(FlowLayout.CENTER, 15, 10));
                panelBottom.setPreferredSize(new Dimension(390, 55));
                panelBottom.add(getButtonInstall(), getButtonInstall().getName());
                panelBottom.add(getButtonOpenFolder(), getButtonOpenFolder().getName());
                panelBottom.add(getButtonClose(), getButtonClose().getName());
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }
        }
        return panelBottom;
    }

    private JButton getButtonInstall() {
        if (buttonInstall == null) {
            w = 100;
            h = 26;

            try {
                buttonInstall = new JButton();
                buttonInstall.setName("ButtonInstall");
                buttonInstall.setPreferredSize(new Dimension(w, h));
                buttonInstall.setText("Install");
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }
        }
        return buttonInstall;
    }

    private JButton getButtonOpenFolder() {
        if (buttonOpenFolder == null) {
            w = 130;
            h = 26;

            try {
                buttonOpenFolder = new JButton();
                buttonOpenFolder.setName("ButtonOpenFolder");
                buttonOpenFolder.setPreferredSize(new Dimension(w, h));
                buttonOpenFolder.setText("Open Mods Folder");
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }
        }
        return buttonOpenFolder;
    }

    private JButton getButtonClose() {
        if (buttonClose == null) {
            w = 100;
            h = 26;

            try {
                (buttonClose = new JButton()).setName("ButtonClose");
                buttonClose.setPreferredSize(new Dimension(w, h));
                buttonClose.setText("Cancel");
            } catch (Throwable ivjExc) {
                showErrorPopup(ivjExc);
            }
        }
        return buttonClose;
    }

    public void onFolderSelect() {
        File currentDirectory = new File(getFieldFolder().getText());

        JFileChooser jFileChooser = new JFileChooser(currentDirectory);
        jFileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
        jFileChooser.setAcceptAllFileFilterUsed(false);
        if (jFileChooser.showOpenDialog(this) == 0) {
            File newDirectory = jFileChooser.getSelectedFile();
            getFieldFolder().setText(newDirectory.getPath());
        }
    }

    @Override
    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == getButtonClose()) {
            dispose();
            System.exit(0);
        }
        if (e.getSource() == getButtonFolder()) {
            onFolderSelect();
        }
        if (e.getSource() == getButtonInstall()) {
            onInstall();
        }
        if (e.getSource() == getButtonOpenFolder()) {
            onOpenFolder();
        }
    }

    @Override
    public void mouseClicked(MouseEvent e) {
        if (e.getSource() == getForgeTextArea()) {
            try {
                Desktop.getDesktop().browse(new URI("http://files.minecraftforge.net/maven/net/minecraftforge/forge/index_1.8.9.html"));
            } catch (IOException | URISyntaxException ex) {
                showErrorPopup(ex);
            }
        }
    }

    public void onInstall() {
        try {
            File modsFolder = new File(getFieldFolder().getText());
            if (!modsFolder.exists()) {
                showErrorMessage("Folder not found: " + modsFolder.getPath());
                return;
            }
            if (!modsFolder.isDirectory()) {
                showErrorMessage("Not a folder: " + modsFolder.getPath());
                return;
            }
            tryInstall(modsFolder);
        } catch (Exception e) {
            showErrorPopup(e);
        }
    }

    private void tryInstall(File modsFolder) {
        File thisFile = getThisFile();

        if (thisFile != null) {
            boolean inSubFolder = IN_MODS_SUBFOLDER.matcher(modsFolder.getPath()).find();

            File newFile = new File(modsFolder, "Danker's Skyblock Mod - " + DankersSkyblockMod.VERSION + ".jar");

            if (thisFile.equals(newFile)) {
                showErrorMessage("You are opening this file from where the file should be installed... there's nothing to be done!");
                return;
            }

            boolean deletingFailure = false;
            if (modsFolder.isDirectory()) { // Delete in this current folder.
                boolean failed = findDSMAndDelete(modsFolder.listFiles());
                if (failed) deletingFailure = true;
            }
            if (inSubFolder) { // We are in the 1.8.9 folder, delete in the parent folder as well.
                if (modsFolder.getParentFile().isDirectory()) {
                    boolean failed = findDSMAndDelete(modsFolder.getParentFile().listFiles());
                    if (failed) deletingFailure = true;
                }
            } else { // We are in the main mods folder, but the 1.8.9 subfolder exists... delete in there too.
                File subFolder = new File(modsFolder, "1.8.9");
                if (subFolder.exists() && subFolder.isDirectory()) {
                    boolean failed = findDSMAndDelete(subFolder.listFiles());
                    if (failed) deletingFailure = true;
                }
            }

            if (deletingFailure) return;

            if (thisFile.isDirectory()) {
                showErrorMessage("This file is a directory... Are we in a development environment?");
                return;
            }

            try {
                Files.copy(thisFile.toPath(), newFile.toPath());
            } catch (Exception ex) {
                showErrorPopup(ex);
                return;
            }

            showMessage("Danker's Skyblock Mod has been successfully installed into your mods folder.");
            dispose();
            System.exit(0);
        }
    }

    private boolean findDSMAndDelete(File[] files) {
        if (files == null) return false;

        for (File file : files) {
            if (!file.isDirectory() && file.getPath().endsWith(".jar")) {
                try {
                    JarFile jarFile = new JarFile(file);
                    ZipEntry mcModInfo = jarFile.getEntry("mcmod.info");
                    if (mcModInfo != null) {
                        InputStream inputStream = jarFile.getInputStream(mcModInfo);
                        String modID = getModIDFromInputStream(inputStream);
                        if (modID.equals("Danker's Skyblock Mod")) {
                            jarFile.close();
                            try {
                                boolean deleted = file.delete();
                                if (!deleted) {
                                    throw new Exception();
                                }
                            } catch (Exception ex) {
                                ex.printStackTrace();
                                showErrorMessage("Was not able to delete the other DSM files found in your mods folder!" + System.lineSeparator() +
                                        "Please make sure that your minecraft is currently closed and try again, or feel" + System.lineSeparator() +
                                        "free to open your mods folder and delete those files manually.");
                                return true;
                            }
                            continue;
                        }
                    }
                    jarFile.close();
                } catch (Exception ex) {
                    // Just don't check the file I guess, move on to the next...
                }
            }
        }
        return false;
    }

    public void onOpenFolder() {
        try {
            Desktop.getDesktop().open(getModsFolder());
        } catch (Exception e) {
            showErrorPopup(e);
        }
    }

    public File getModsFolder() {
        String userHome = System.getProperty("user.home", ".");

        File modsFolder = getFile(userHome, "minecraft/mods/1.8.9");
        if (!modsFolder.exists()) {
            modsFolder = getFile(userHome, "minecraft/mods");
        }

        if (!modsFolder.exists() && !modsFolder.mkdirs()) {
            throw new RuntimeException("The working directory could not be created: " + modsFolder);
        }
        return modsFolder;
    }

    public File getFile(String userHome, String minecraftPath) {
        File workingDirectory;
        switch (getOperatingSystem()) {
            case LINUX:
            case SOLARIS: {
                workingDirectory = new File(userHome, '.' + minecraftPath + '/');
                break;
            }
            case WINDOWS: {
                String applicationData = System.getenv("APPDATA");
                if (applicationData != null) {
                    workingDirectory = new File(applicationData, "." + minecraftPath + '/');
                    break;
                }
                workingDirectory = new File(userHome, '.' + minecraftPath + '/');
                break;
            }
            case MACOS: {
                workingDirectory = new File(userHome, "Library/Application Support/" + minecraftPath);
                break;
            }
            default: {
                workingDirectory = new File(userHome, minecraftPath + '/');
                break;
            }
        }
        return workingDirectory;
    }

    public OperatingSystem getOperatingSystem() {
        String osName = System.getProperty("os.name").toLowerCase(Locale.US);
        if (osName.contains("win")) {
            return OperatingSystem.WINDOWS;

        } else if (osName.contains("mac")) {
            return OperatingSystem.MACOS;

        } else if (osName.contains("solaris") || osName.contains("sunos")) {

            return OperatingSystem.SOLARIS;
        } else if (osName.contains("linux") || osName.contains("unix")) {

            return OperatingSystem.LINUX;
        }
        return OperatingSystem.UNKNOWN;
    }

    public void centerFrame(JFrame frame) {
        Rectangle rectangle = frame.getBounds();
        Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
        Rectangle screenRectangle = new Rectangle(0, 0, screenSize.width, screenSize.height);

        int newX = screenRectangle.x + (screenRectangle.width - rectangle.width) / 2;
        int newY = screenRectangle.y + (screenRectangle.height - rectangle.height) / 2;

        if (newX < 0) newX = 0;
        if (newY < 0) newY = 0;

        frame.setBounds(newX, newY, rectangle.width, rectangle.height);
    }

    public void showMessage(String message) {
        JOptionPane.showMessageDialog(null, message, "Danker's Skyblock Mod", JOptionPane.INFORMATION_MESSAGE);
    }

    public void showErrorMessage(String message) {
        JOptionPane.showMessageDialog(null, message, "Danker's Skyblock Mod - Error", JOptionPane.ERROR_MESSAGE);
    }

    public enum OperatingSystem {
        LINUX,
        SOLARIS,
        WINDOWS,
        MACOS,
        UNKNOWN
    }

    private static String getStacktraceText(Throwable ex) {
        StringWriter stringWriter = new StringWriter();
        ex.printStackTrace(new PrintWriter(stringWriter));
        return stringWriter.toString().replace("\t", "  ");
    }

    private static void showErrorPopup(Throwable ex) {
        ex.printStackTrace();

        JTextArea textArea = new JTextArea(getStacktraceText(ex));
        textArea.setEditable(false);
        Font currentFont = textArea.getFont();
        Font newFont = new Font(Font.MONOSPACED, currentFont.getStyle(), currentFont.getSize());
        textArea.setFont(newFont);

        JScrollPane errorScrollPane = new JScrollPane(textArea);
        errorScrollPane.setPreferredSize(new Dimension(600, 400));
        JOptionPane.showMessageDialog(null, errorScrollPane, "Error", JOptionPane.ERROR_MESSAGE);
    }

    private String getModIDFromInputStream(InputStream inputStream) {
        String version = "";
        try {
            BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));
            while ((version = bufferedReader.readLine()) != null) {
                if (version.contains("\"modid\": \"")) {
                    version = version.split(Pattern.quote("\"modid\": \""))[1];
                    version = version.substring(0, version.length() - 2);
                    break;
                }
            }
        } catch (Exception ex) {
            // RIP, couldn't find the modid...
        }
        return version;
    }

    private File getThisFile() {
        try {
            return new File(DefenitlyNotAJoikedInstallerFrame.class.getProtectionDomain().getCodeSource().getLocation().toURI());
        } catch (URISyntaxException ex) {
            showErrorPopup(ex);
        }
        return null;
    }

    @Override
    public void mousePressed(MouseEvent e) {}

    @Override
    public void mouseReleased(MouseEvent e) {}

    @Override
    public void mouseEntered(MouseEvent e) {}

    @Override
    public void mouseExited(MouseEvent e) {}
}


================================================
FILE: src/main/java/me/Danker/DankersSkyblockMod.java
================================================
package me.Danker;

import com.google.gson.JsonObject;
import me.Danker.commands.*;
import me.Danker.commands.api.*;
import me.Danker.commands.loot.DisplayCommand;
import me.Danker.commands.loot.ImportFishingCommand;
import me.Danker.commands.loot.LootCommand;
import me.Danker.commands.loot.ResetLootCommand;
import me.Danker.commands.warp.WarpCommandHandler;
import me.Danker.config.CfgConfig;
import me.Danker.config.ModConfig;
import me.Danker.events.*;
import me.Danker.features.*;
import me.Danker.features.loot.*;
import me.Danker.features.puzzlesolvers.*;
import me.Danker.gui.WarningGui;
import me.Danker.gui.WarningGuiRedirect;
import me.Danker.handlers.ConfigHandler;
import me.Danker.handlers.PacketHandler;
import me.Danker.utils.RenderUtils;
import me.Danker.utils.Utils;
import net.minecraft.client.Minecraft;
import net.minecraft.client.entity.EntityPlayerSP;
import net.minecraft.client.gui.GuiMainMenu;
import net.minecraft.client.gui.inventory.GuiChest;
import net.minecraft.command.ICommand;
import net.minecraft.event.ClickEvent;
import net.minecraft.event.ClickEvent.Action;
import net.minecraft.event.HoverEvent;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.ContainerChest;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.IChatComponent;
import net.minecraft.util.StringUtils;
import net.minecraftforge.client.ClientCommandHandler;
import net.minecraftforge.client.GuiIngameForge;
import net.minecraftforge.client.event.ClientChatReceivedEvent;
import net.minecraftforge.client.event.GuiOpenEvent;
import net.minecraftforge.client.event.GuiScreenEvent;
import net.minecraftforge.client.event.RenderGameOverlayEvent;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.EntityJoinWorldEvent;
import net.minecraftforge.fml.common.Loader;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent.Phase;
import net.minecraftforge.fml.common.network.FMLNetworkEvent.ClientConnectedToServerEvent;
import org.lwjgl.input.Mouse;

import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.UnsupportedAudioFileException;
import java.io.IOException;
import java.util.List;
import java.util.Locale;
import java.util.Map;

@Mod(modid = DankersSkyblockMod.MODID, version = DankersSkyblockMod.VERSION, clientSideOnly = true)
public class DankersSkyblockMod {
    public static final String MODID = "@ID@";
    public static final String VERSION = "@VER@";
    public static ModConfig config;

    public static int titleTimer = -1;
    public static boolean showTitle = false;
    public static String titleText = "";
    public static int tickAmount = 1;
    public static int repoTickAmount = 1;
    public static boolean usingLabymod = false;
    public static boolean usingOAM = false;
    static boolean OAMWarning = false;
    public static String guiToOpen = null;
    public static boolean firstLaunch = false;
    public static String configDirectory;
    public static JsonObject data = null;
    public static WarpCommandHandler warpCommandHandler;

    public static int farmingLevel;
    public static int miningLevel;
    public static int combatLevel;
    public static int foragingLevel;
    public static int fishingLevel;
    public static int enchantingLevel;
    public static int alchemyLevel;
    public static int carpentryLevel;

    @EventHandler
    public void init(FMLInitializationEvent event) throws UnsupportedAudioFileException, IOException, LineUnavailableException {
        MinecraftForge.EVENT_BUS.register(this);
        MinecraftForge.EVENT_BUS.register(new AbilityCooldowns());
        MinecraftForge.EVENT_BUS.register(new Alerts());
        MinecraftForge.EVENT_BUS.register(new AnnounceVanquishers());
        MinecraftForge.EVENT_BUS.register(new ArachneESP());
        MinecraftForge.EVENT_BUS.register(new ArrowTerminalSolver());
        MinecraftForge.EVENT_BUS.register(new AutoAcceptReparty());
        MinecraftForge.EVENT_BUS.register(new AutoDisplay());
        MinecraftForge.EVENT_BUS.register(new AutoJoinSkyblock());
        MinecraftForge.EVENT_BUS.register(new AutoSwapToPickBlock());
        MinecraftForge.EVENT_BUS.register(new BazaarTimeToFill());
        MinecraftForge.EVENT_BUS.register(new BlazeSolver());
        MinecraftForge.EVENT_BUS.register(new BlockPlacingFlowers());
        MinecraftForge.EVENT_BUS.register(new BlockWrongSlayer());
        MinecraftForge.EVENT_BUS.register(new BlockWrongTerminalClicks());
        MinecraftForge.EVENT_BUS.register(new BonzoMaskTimer());
        MinecraftForge.EVENT_BUS.register(new SpiritMaskTimer());
        MinecraftForge.EVENT_BUS.register(new BoulderSolver());
        MinecraftForge.EVENT_BUS.register(new CakeTimer());
        MinecraftForge.EVENT_BUS.register(new ChatAliases());
        MinecraftForge.EVENT_BUS.register(new ChronomatronSolver());
        MinecraftForge.EVENT_BUS.register(new ClickInOrderSolver());
        MinecraftForge.EVENT_BUS.register(new ColouredNames());
        MinecraftForge.EVENT_BUS.register(new CreeperSolver());
        MinecraftForge.EVENT_BUS.register(new CrimsonMinibossTimer());
        MinecraftForge.EVENT_BUS.register(new CrystalHollowWaypoints());
        MinecraftForge.EVENT_BUS.register(new CustomMusic());
        MinecraftForge.EVENT_BUS.register(new Debug());
        MinecraftForge.EVENT_BUS.register(new DisableMovement());
        MinecraftForge.EVENT_BUS.register(new DrillFix());
        MinecraftForge.EVENT_BUS.register(new DungeonScore());
        MinecraftForge.EVENT_BUS.register(new DungeonTimer());
        MinecraftForge.EVENT_BUS.register(new EndOfFarmAlert());
        MinecraftForge.EVENT_BUS.register(new ExpertiseLore());
        MinecraftForge.EVENT_BUS.register(new FasterMaddoxCalling());
        MinecraftForge.EVENT_BUS.register(new FilletMagmafish());
        MinecraftForge.EVENT_BUS.register(new FirePillarDisplay());
        MinecraftForge.EVENT_BUS.register(new FishingSpawnAlerts());
        MinecraftForge.EVENT_BUS.register(new GemstonesLore());
        MinecraftForge.EVENT_BUS.register(new GiantHPDisplay());
        MinecraftForge.EVENT_BUS.register(new GoldenEnchants());
        MinecraftForge.EVENT_BUS.register(new GolemSpawningAlert());
        MinecraftForge.EVENT_BUS.register(new GpartyNotifications());
        MinecraftForge.EVENT_BUS.register(new HidePetCandy());
        MinecraftForge.EVENT_BUS.register(new HidePlayerArmour());
        MinecraftForge.EVENT_BUS.register(new HideTooltipsInExperiments());
        MinecraftForge.EVENT_BUS.register(new HideTooltipsMisc());
        MinecraftForge.EVENT_BUS.register(new HighlightCommissions());
        MinecraftForge.EVENT_BUS.register(new HighlightFilledOrders());
        MinecraftForge.EVENT_BUS.register(new HighlightPests());
        MinecraftForge.EVENT_BUS.register(new HighlightSkeletonMasters());
        MinecraftForge.EVENT_BUS.register(new IceWalkSolver());
        MinecraftForge.EVENT_BUS.register(new KuudraNotifications());
        MinecraftForge.EVENT_BUS.register(new LividSolver());
        MinecraftForge.EVENT_BUS.register(new LocrawSpamFix());
        MinecraftForge.EVENT_BUS.register(new LowHealthNotifications());
        MinecraftForge.EVENT_BUS.register(new MeterTracker());
        MinecraftForge.EVENT_BUS.register(new MinionLastCollected());
        MinecraftForge.EVENT_BUS.register(new NecronNotifications());
        MinecraftForge.EVENT_BUS.register(new NoF3Coords());
        MinecraftForge.EVENT_BUS.register(new NotifySlayerSlain());
        MinecraftForge.EVENT_BUS.register(new PetColours());
        MinecraftForge.EVENT_BUS.register(new PowderTracker());
        MinecraftForge.EVENT_BUS.register(new Reparty());
        MinecraftForge.EVENT_BUS.register(new SameColourSolver());
        MinecraftForge.EVENT_BUS.register(new SelectAllColourSolver());
        MinecraftForge.EVENT_BUS.register(new SilverfishSolver());
        MinecraftForge.EVENT_BUS.register(new Skill50Display());
        MinecraftForge.EVENT_BUS.register(new SkillTracker());
        MinecraftForge.EVENT_BUS.register(new SlayerESP());
        MinecraftForge.EVENT_BUS.register(new SpamHider());
        MinecraftForge.EVENT_BUS.register(new SpiritBearAlert());
        MinecraftForge.EVENT_BUS.register(new SpiritBootsFix());
        MinecraftForge.EVENT_BUS.register(new StartsWithSolver());
        MinecraftForge.EVENT_BUS.register(new StopSalvagingStarredItems());
        MinecraftForge.EVENT_BUS.register(new SuperpairsSolver());
        MinecraftForge.EVENT_BUS.register(new TetherDisplay());
        MinecraftForge.EVENT_BUS.register(new ThreeManSolver());
        MinecraftForge.EVENT_BUS.register(new TicTacToeSolver());
        MinecraftForge.EVENT_BUS.register(new TriviaSolver());
        MinecraftForge.EVENT_BUS.register(new UltrasequencerSolver());
        MinecraftForge.EVENT_BUS.register(new UpdateChecker());
        MinecraftForge.EVENT_BUS.register(new WatcherReadyAlert());
        MinecraftForge.EVENT_BUS.register(new WaterSolver());

        MinecraftForge.EVENT_BUS.register(new LootDisplay());
        MinecraftForge.EVENT_BUS.register(new LootTracker());
        MinecraftForge.EVENT_BUS.register(new BlazeTracker());
        MinecraftForge.EVENT_BUS.register(new CatacombsTracker());
        MinecraftForge.EVENT_BUS.register(new EndermanTracker());
        MinecraftForge.EVENT_BUS.register(new FishingTracker());
        MinecraftForge.EVENT_BUS.register(new GhostTracker());
        MinecraftForge.EVENT_BUS.register(new MythologicalTracker());
        MinecraftForge.EVENT_BUS.register(new SpiderTracker());
        MinecraftForge.EVENT_BUS.register(new TrophyFishTracker());
        MinecraftForge.EVENT_BUS.register(new VampireTracker());
        MinecraftForge.EVENT_BUS.register(new WolfTracker());
        MinecraftForge.EVENT_BUS.register(new ZombieTracker());
        
        MinecraftForge.EVENT_BUS.post(new ModInitEvent(configDirectory));
        config = new ModConfig();
        ConfigHandler.reloadConfig();
        MinecraftForge.EVENT_BUS.post(new PostConfigInitEvent(configDirectory));

        new Thread(Utils::refreshRepo).start();
    }

    @EventHandler
    public void preInit(FMLPreInitializationEvent event) {
        ClientCommandHandler.instance.registerCommand(new ArmourCommand());
        ClientCommandHandler.instance.registerCommand(new BankCommand());
        ClientCommandHandler.instance.registerCommand(new CrystalHollowWaypointCommand());
        ClientCommandHandler.instance.registerCommand(new DankerGuiCommand());
        ClientCommandHandler.instance.registerCommand(new DHelpCommand());
        ClientCommandHandler.instance.registerCommand(new DisplayCommand());
        ClientCommandHandler.instance.registerCommand(new DungeonsCommand());
        ClientCommandHandler.instance.registerCommand(new FairySoulsCommand());
        ClientCommandHandler.instance.registerCommand(new GuildOfCommand());
        ClientCommandHandler.instance.registerCommand(new HOTMCommand());
        ClientCommandHandler.instance.registerCommand(new HOTMTreeCommand());
        ClientCommandHandler.instance.registerCommand(new ImportFishingCommand());
        ClientCommandHandler.instance.registerCommand(new InventoryCommand());
        ClientCommandHandler.instance.registerCommand(new LobbyBankCommand());
        ClientCommandHandler.instance.registerCommand(new LobbySkillsCommand());
        ClientCommandHandler.instance.registerCommand(new LootCommand());
        ClientCommandHandler.instance.registerCommand(new PetsCommand());
        ClientCommandHandler.instance.registerCommand(new PlayerCommand());
        ClientCommandHandler.instance.registerCommand(new PowderTrackerCommand());
        ClientCommandHandler.instance.registerCommand(new ReloadConfigCommand());
        ClientCommandHandler.instance.registerCommand(new ReloadRepoCommand());
        ClientCommandHandler.instance.registerCommand(new ResetLootCommand());
        ClientCommandHandler.instance.registerCommand(new SkillsCommand());
        ClientCommandHandler.instance.registerCommand(new SkillTrackerCommand());
        ClientCommandHandler.instance.registerCommand(new SkyblockPlayersCommand());
        ClientCommandHandler.instance.registerCommand(new SlayerCommand());
        ClientCommandHandler.instance.registerCommand(new StopLobbyCommand());
        ClientCommandHandler.instance.registerCommand(new TrophyFishCommand());
        ClientCommandHandler.instance.registerCommand(new WeightCommand());

        warpCommandHandler = new WarpCommandHandler();

        configDirectory = event.getModConfigurationDirectory().toString();
    }

    @EventHandler
    public void postInit(FMLPostInitializationEvent event) {
        Package[] packages = Package.getPackages();
        for (Package p : packages){
            if (p.getName().startsWith("com.spiderfrog.gadgets") || p.getName().startsWith("com.spiderfrog.oldanimations")){
                usingOAM = true;
                break;
            }
        }
        System.out.println("OAM detection: " + usingOAM);

        usingLabymod = Loader.isModLoaded("labymod");
        System.out.println("LabyMod detection: " + usingLabymod);
        
        if (!ClientCommandHandler.instance.getCommands().containsKey("reparty")) {
            ClientCommandHandler.instance.registerCommand(new RepartyCommand());
        } else if (CfgConfig.getBoolean("commands", "reparty")) {
            for (Map.Entry<String, ICommand> entry : ClientCommandHandler.instance.getCommands().entrySet()) {
                if (entry.getKey().equals("reparty") || entry.getKey().equals("rp")) {
                    entry.setValue(new RepartyCommand());
                }
            }
        }

    }

    @SubscribeEvent
    public void onGuiOpenEvent(GuiOpenEvent event) {
        if (event.gui instanceof GuiMainMenu && usingOAM && !OAMWarning) {
            event.gui = new WarningGuiRedirect(new WarningGui());
            OAMWarning = true;
        }
    }

    @SubscribeEvent
    public void onJoin(EntityJoinWorldEvent event) {
        if (firstLaunch) {
            firstLaunch = false;
            CfgConfig.writeBooleanConfig("misc", "firstLaunch", false);

            IChatComponent chatComponent = new ChatComponentText(
                    EnumChatFormatting.GOLD + "Thank you for downloading Danker's Skyblock Mod.\n" +
                         "To get started, run the command " + EnumChatFormatting.GOLD + "/dsm" + EnumChatFormatting.RESET + " to view all the mod features."
            );
            chatComponent.setChatStyle(chatComponent.getChatStyle().setChatHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, new ChatComponentText("Click to open the DSM menu."))).setChatClickEvent(new ClickEvent(Action.RUN_COMMAND, "/dsm")));

            new Thread(() -> {
                while (true) {
                    if (Minecraft.getMinecraft().thePlayer == null) {
                        try {
                            Thread.sleep(500);
                        } catch (InterruptedException e) {
                            e.printStackTrace();
                        }
                        continue;
                    }
                    try {
                        Thread.sleep(2000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    Minecraft.getMinecraft().thePlayer.addChatMessage(chatComponent);
                    break;
                }
            }).start();
        }
    }

    @SubscribeEvent
    public void onChat(ClientChatReceivedEvent event) {
        String message = StringUtils.stripControlCodes(event.message.getUnformattedText());

        if (Utils.inSkyblock && !message.contains(":") && message.contains("  SKILL LEVEL UP ")) {
            // Handle skill level ups
            String skill = message.substring(message.indexOf("UP") + 3, message.lastIndexOf(" "));
            int level = Utils.getIntFromString(message.substring(message.indexOf("➜") + 1), true);

            switch (skill) {
                case "Farming":
                    DankersSkyblockMod.farmingLevel = level;
                    break;
                case "Mining":
                    DankersSkyblockMod.miningLevel = level;
                    break;
                case "Combat":
                    DankersSkyblockMod.combatLevel = level;
                    break;
                case "Foraging":
                    DankersSkyblockMod.foragingLevel = level;
                    break;
                case "Fishing":
                    DankersSkyblockMod.fishingLevel = level;
                    break;
                case "Enchanting":
                    DankersSkyblockMod.enchantingLevel = level;
                    break;
                case "Alchemy":
                    DankersSkyblockMod.alchemyLevel = level;
                    break;
                case "Carpentry":
                    DankersSkyblockMod.carpentryLevel = level;
                    break;
                default:
                    System.err.println("Unknown skill leveled up.");
            }

            CfgConfig.writeIntConfig("skills", skill.toLowerCase(Locale.US), level);
        }
    }

    @SubscribeEvent
    public void renderPlayerInfo(RenderGameOverlayEvent.Post event) {
        if (usingLabymod && !(Minecraft.getMinecraft().ingameGUI instanceof GuiIngameForge)) return;
        if (event.type != RenderGameOverlayEvent.ElementType.EXPERIENCE && event.type != RenderGameOverlayEvent.ElementType.JUMPBAR)
            return;
        MinecraftForge.EVENT_BUS.post(new RenderOverlayEvent());
    }

    // LabyMod Support
    @SubscribeEvent
    public void renderPlayerInfoLabyMod(RenderGameOverlayEvent event) {
        if (!usingLabymod) return;
        if (event.type != null) return;
        MinecraftForge.EVENT_BUS.post(new RenderOverlayEvent());
    }

    @SubscribeEvent
    public void renderPlayerInfo(RenderOverlayEvent event) {
        if (showTitle) {
            RenderUtils.drawTitle(titleText);
        }
    }

    @SubscribeEvent
    public void onTick(TickEvent.ClientTickEvent event) {
        if (event.phase != Phase.START) return;

        Minecraft mc = Minecraft.getMinecraft();
        EntityPlayerSP player = mc.thePlayer;

        tickAmount++;
        if (tickAmount % 20 == 0) {
            repoTickAmount++;
            if (player != null) {
                Utils.checkForSkyblock();
                Utils.checkTabLocation();
                Utils.checkForDungeonFloor();
            }

            tickAmount = 0;
        }

        if (repoTickAmount % 3601 == 0) {
            // I didn't want to change everything so I just made a new tick variable
            new Thread(Utils::refreshRepo).start();
            repoTickAmount = 1;
        }

        if (titleTimer >= 0) {
            if (titleTimer == 0) {
                showTitle = false;
            }
            titleTimer--;
        }

        // New skill level detection
        if (mc.currentScreen instanceof GuiChest && tickAmount % 5 == 0 && player != null) {
            ContainerChest chest = (ContainerChest) player.openContainer;
            String chestName = chest.getLowerChestInventory().getDisplayName().getUnformattedText().trim();

            if (chestName.equals("Your Skills")) {
                List<Slot> invSlots = ((GuiChest) mc.currentScreen).inventorySlots.inventorySlots;

                combatLevel = Utils.initializeSkill(invSlots.get(19).getStack(), "combat");
                farmingLevel = Utils.initializeSkill(invSlots.get(20).getStack(), "farming");
                fishingLevel = Utils.initializeSkill(invSlots.get(21).getStack(), "fishing");
                miningLevel = Utils.initializeSkill(invSlots.get(22).getStack(), "mining");
                foragingLevel = Utils.initializeSkill(invSlots.get(23).getStack(), "foraging");
                enchantingLevel = Utils.initializeSkill(invSlots.get(24).getStack(), "enchanting");
                alchemyLevel = Utils.initializeSkill(invSlots.get(25).getStack(), "alchemy");
                carpentryLevel = Utils.initializeSkill(invSlots.get(29).getStack(), "carpentry");

                System.out.println("Updated skill levels.");
            }
        }
    }

    // Delay GUI by 1 tick
    @SubscribeEvent
    public void onRenderTick(TickEvent.RenderTickEvent event) {
        if (guiToOpen != null) {
            Minecraft mc = Minecraft.getMinecraft();
            switch (guiToOpen) {
                case "inventory":
                    mc.displayGuiScreen(InventoryCommand.chest);
                    break;
                case "hotminventory":
                    mc.displayGuiScreen(HOTMTreeCommand.chest);
                    break;
            }
            guiToOpen = null;
        }
    }

    @SubscribeEvent
    public void onGuiMouseInputPre(GuiScreenEvent.MouseInputEvent.Pre event) {
        if (Mouse.getEventButton() != 0 && Mouse.getEventButton() != 1 && Mouse.getEventButton() != 2)
            return; // Left click, middle click or right click
        if (!Mouse.getEventButtonState()) return;

        if (event.gui == InventoryCommand.chest || event.gui == HOTMTreeCommand.chest) {
            event.setCanceled(true);
            return;
        }

        if (!Utils.inSkyblock) return;

        if (event.gui instanceof GuiChest) {
            Container containerChest = ((GuiChest) event.gui).inventorySlots;
            if (containerChest instanceof ContainerChest) {
                // a lot of declarations here, if you get scarred, my bad
                GuiChest chest = (GuiChest) event.gui;
                IInventory inventory = ((ContainerChest) containerChest).getLowerChestInventory();
                Slot slot = chest.getSlotUnderMouse();
                if (slot == null) return;
                ItemStack item = slot.getStack();
                String inventoryName = inventory.getDisplayName().getUnformattedText();

                if (MinecraftForge.EVENT_BUS.post(new ChestSlotClickedEvent(chest, inventory, inventoryName, slot, item))) event.setCanceled(true);
            }
        }
    }

    @SubscribeEvent
    public void onGuiRender(GuiScreenEvent.BackgroundDrawnEvent event) {
        if (!Utils.inSkyblock) return;
        if (event.gui instanceof GuiChest) {
            GuiChest inventory = (GuiChest) event.gui;
            Container containerChest = inventory.inventorySlots;
            if (containerChest instanceof ContainerChest) {
                List<Slot> invSlots = inventory.inventorySlots.inventorySlots;
                String displayName = ((ContainerChest) containerChest).getLowerChestInventory().getDisplayName().getUnformattedText().trim();
                int chestSize = inventory.inventorySlots.inventorySlots.size();

                MinecraftForge.EVENT_BUS.post(new GuiChestBackgroundDrawnEvent(inventory, displayName, chestSize, invSlots));
            }
        }
    }

    @SubscribeEvent
    public void onServerConnect(ClientConnectedToServerEvent event) {
        event.manager.channel().pipeline().addBefore("packet_handler", "danker_packet_handler", new PacketHandler());
        System.out.println("Added packet handler to channel pipeline.");
    }

    // misc feature ig

    public static void onAbilityKey() {
        if (!Utils.isInDungeons()) return;
        Minecraft.getMinecraft().thePlayer.dropOneItem(true);
    }
}


================================================
FILE: src/main/java/me/Danker/commands/CrystalHollowWaypointCommand.java
================================================
package me.Danker.commands;

import me.Danker.features.CrystalHollowWaypoints;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;

import java.util.Arrays;

public class CrystalHollowWaypointCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "dsmaddcrystalhollowwaypoints";
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName() + " <formatted waypoint>";
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }

    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        if (arg1.length == 0) return;

        if (arg1.length > 4 && arg1[0].equals("st")) {
            String name = String.join(" ", Arrays.copyOfRange(arg1, 4, arg1.length));
            CrystalHollowWaypoints.addWaypoint(name, arg1[1], arg1[2], arg1[3], false);
        } else {
            CrystalHollowWaypoints.addDSMWaypoints(String.join(" ", arg1), false, false);
        }
    }

}


================================================
FILE: src/main/java/me/Danker/commands/DHelpCommand.java
================================================
package me.Danker.commands;

import me.Danker.DankersSkyblockMod;
import me.Danker.commands.api.*;
import me.Danker.commands.loot.DisplayCommand;
import me.Danker.commands.loot.ImportFishingCommand;
import me.Danker.commands.loot.LootCommand;
import me.Danker.commands.loot.ResetLootCommand;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;

public class DHelpCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "dhelp";
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName();
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }
    
    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        EntityPlayer player = (EntityPlayer) arg0;
        
        player.addChatMessage(new ChatComponentText("\n" + EnumChatFormatting.GOLD + " " + DankersSkyblockMod.MODID + " Version " + DankersSkyblockMod.VERSION + "\n" +
                                                    EnumChatFormatting.AQUA + " <> = Mandatory parameter. [] = Optional parameter.\n" +
                                                    EnumChatFormatting.GOLD + " Commands, " + EnumChatFormatting.GREEN + " Keybinds.\n" +
                                                    EnumChatFormatting.GOLD + getCommandUsage(arg0) + EnumChatFormatting.AQUA + " - Returns this message.\n" +
                                                    EnumChatFormatting.GOLD + DankerGuiCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Opens the GUI for Danker's Skyblock Mod.\n" +
                                                    EnumChatFormatting.GOLD + LootCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Returns loot received from slayer quests or fishing stats. /loot fishing winter returns winter sea creatures instead.\n" +
                                                    EnumChatFormatting.GOLD + DisplayCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Text display for trackers. /display fishing winter displays winter sea creatures instead. /display auto automatically displays the loot for the slayer quest you have active.\n" +
                                                    EnumChatFormatting.GOLD + ResetLootCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Resets loot for trackers. /resetloot confirm confirms the reset.\n" +
                                                    EnumChatFormatting.GOLD + SlayerCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to get slayer xp of a person. If no name is provided, it checks yours.\n" +
                                                    EnumChatFormatting.GOLD + SkillsCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to get skill levels of a person. If no name is provided, it checks yours.\n" +
                                                    EnumChatFormatting.GOLD + LobbySkillsCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to find the average skills of the lobby, as well the three players with the highest skill average.\n" +
                                                    EnumChatFormatting.GOLD + GuildOfCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to get guild name and guild master of a person. If no name is provided, it checks yours.\n" +
                                                    EnumChatFormatting.GOLD + PetsCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to get pets of a person. If no name is provided, it checks yours.\n" +
                                                    EnumChatFormatting.GOLD + BankCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to get bank and purse coins of a person. If no name is provided, it checks yours.\n" +
                                                    EnumChatFormatting.GOLD + ArmourCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to get armor of a person. If no name is provided, it checks yours.\n" +
                                                    EnumChatFormatting.GOLD + DungeonsCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to get dungeon levels of a person. If no name is provided, it checks yours.\n" +
                                                    EnumChatFormatting.GOLD + WeightCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to get weight of a person. If no name is provided, it checks yours. Adding lily uses lily's weight instead of Senither's.\n" +
                                                    EnumChatFormatting.GOLD + ImportFishingCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Imports your fishing stats from your latest profile to your fishing tracker using the API.\n" +
                                                    EnumChatFormatting.GOLD + SkyblockPlayersCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to find how many players are on each Skyblock island.\n" +
                                                    EnumChatFormatting.GOLD + SkillTrackerCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Text display for skill xp/hour.\n" +
                                                    EnumChatFormatting.GOLD + LobbyBankCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to find the average bank total of the lobby, as well the three players with the highest total money in the bank(and purse).\n" +
                                                    EnumChatFormatting.GOLD + RepartyCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Disbands and reparties all members in the party.\n" +
                                                    EnumChatFormatting.GOLD + PlayerCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to find skills, slayers, coins and weight of a player.\n" +
                                                    EnumChatFormatting.GOLD + ReloadConfigCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Reloads Danker's Skyblock Mod config.\n" +
                                                    EnumChatFormatting.GOLD + ReloadRepoCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Reloads Danker's Skyblock Mod repository.\n" +
                                                    EnumChatFormatting.GOLD + HOTMCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to find total powder and HotM tree of a person. If no name is provided, it checks yours.\n" +
                                                    EnumChatFormatting.GOLD + TrophyFishCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Uses API to find trophy fish stats of a person. If no name is provided, it checks yours.\n" +
                                                    EnumChatFormatting.GOLD + StopLobbyCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Stops currently running /lobbyskills or /lobbybank command.\n" +
                                                    EnumChatFormatting.GOLD + PowderTrackerCommand.usage(arg0) + EnumChatFormatting.AQUA + " - Text display for powder/hour.\n" +
                                                    EnumChatFormatting.GREEN + "Open Maddox Menu" + EnumChatFormatting.AQUA + " - M by default.\n" +
                                                    EnumChatFormatting.GREEN + "Regular Ability" + EnumChatFormatting.AQUA + " - Numpad 4 by default.\n" +
                                                    EnumChatFormatting.GREEN + "Start/Stop Skill Tracker" + EnumChatFormatting.AQUA + " - Numpad 5 by default.\n" +
                                                    EnumChatFormatting.GREEN + "Create Waypoint" + EnumChatFormatting.AQUA + " - Numpad 6 by default.\n" +
                                                    EnumChatFormatting.GREEN + "Start/Stop Powder Tracker" + EnumChatFormatting.AQUA + " - Numpad 8 by default.\n"));
    }

}


================================================
FILE: src/main/java/me/Danker/commands/DankerGuiCommand.java
================================================
package me.Danker.commands;

import cc.polyfrost.oneconfig.utils.IOUtils;
import me.Danker.DankersSkyblockMod;
import me.Danker.config.ModConfig;
import me.Danker.features.loot.LootDisplay;
import net.minecraft.client.Minecraft;
import net.minecraft.client.resources.ResourcePackRepository;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.StringUtils;

import java.util.Collections;
import java.util.List;

public class DankerGuiCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "dsm";
    }

    @Override
    public List<String> getCommandAliases() {
        return Collections.singletonList("dankersskyblockmod");
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName();
    }

    public static String usage(ICommandSender arg0) {
        return new DankerGuiCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }
    
    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        if (arg1.length > 0 && arg1[0].equalsIgnoreCase("debug")) {
            StringBuilder debug = new StringBuilder();
            debug.append("```md\n");
            debug.append("# Other Settings\n");
            debug.append("[Current Display][").append(ModConfig.getDisplay()).append("]\n");
            debug.append("[Auto Display][").append(LootDisplay.autoDisplay).append("]\n");
            debug.append("[Skill Tracker Visible][").append(ModConfig.skillTrackerHud.isEnabled()).append("]\n");
            debug.append("[Farm Length X][").append(ModConfig.farmMinX).append(" to ").append(ModConfig.farmMaxX).append("]\n");
            debug.append("[Farm Length Z][").append(ModConfig.farmMinZ).append(" to ").append(ModConfig.farmMaxZ).append("]\n");
            debug.append("# Problematic Mods\n");
            debug.append("[LabyMod][").append(DankersSkyblockMod.usingLabymod).append("]\n");
            debug.append("[OAM][").append(DankersSkyblockMod.usingOAM).append("]\n");
            debug.append("# Resource Packs\n");
            if (Minecraft.getMinecraft().getResourcePackRepository().getRepositoryEntries().size() == 0) {
                debug.append("<None>\n");
            } else {
                for (ResourcePackRepository.Entry resource : Minecraft.getMinecraft().getResourcePackRepository().getRepositoryEntries()) {
                    debug.append("<").append(StringUtils.stripControlCodes(resource.getResourcePackName())).append(">\n");
                }
            }
            debug.append("```");
            IOUtils.copyStringToClipboard(debug.toString());
            Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Debug stats copied to clipboard."));
            return;
        }

        DankersSkyblockMod.config.openGui();
    }

}


================================================
FILE: src/main/java/me/Danker/commands/PowderTrackerCommand.java
================================================
package me.Danker.commands;

import me.Danker.config.ModConfig;
import me.Danker.features.PowderTracker;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;

import java.util.List;

public class PowderTrackerCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "powdertracker";
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName() + " <start/stop/reset>";
    }

    public static String usage(ICommandSender arg0) {
        return new PowderTrackerCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }

    @Override
    public List<String> addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
        if (args.length == 1) {
            return getListOfStringsMatchingLastWord(args, "start", "resume", "pause", "stop", "reset");
        }
        return null;
    }

    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        EntityPlayer player = (EntityPlayer) arg0;

        if (arg1.length < 1) {
            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.errorColour) + "Usage: " + getCommandUsage(arg0)));
            return;
        }

        switch (arg1[0].toLowerCase()) {
            case "start":
            case "resume":
                if (PowderTracker.powderStopwatch.isStarted() && PowderTracker.powderStopwatch.isSuspended()) {
                    PowderTracker.powderStopwatch.resume();
                } else if (!PowderTracker.powderStopwatch.isStarted()) {
                    PowderTracker.powderStopwatch.start();
                }
                player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Powder tracker started."));
                break;
            case "pause":
            case "stop":
                if (PowderTracker.powderStopwatch.isStarted() && !PowderTracker.powderStopwatch.isSuspended()) {
                    PowderTracker.powderStopwatch.suspend();
                } else {
                    player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Powder tracker paused."));
                }
                break;
            case "reset":
                PowderTracker.reset();
                player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Powder tracker reset."));
                break;
            default:
                player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.errorColour) + "Usage: " + getCommandUsage(arg0)));
        }
    }

}


================================================
FILE: src/main/java/me/Danker/commands/ReloadConfigCommand.java
================================================
package me.Danker.commands;

import me.Danker.DankersSkyblockMod;
import me.Danker.config.ModConfig;
import me.Danker.events.PostConfigInitEvent;
import me.Danker.handlers.ConfigHandler;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ChatComponentText;
import net.minecraftforge.common.MinecraftForge;

public class ReloadConfigCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "reloadconfig";
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName();
    }

    public static String usage(ICommandSender arg0) {
        return new ReloadConfigCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }
    
    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        EntityPlayer player = (EntityPlayer)arg0;
        ConfigHandler.reloadConfig();
        MinecraftForge.EVENT_BUS.post(new PostConfigInitEvent(DankersSkyblockMod.configDirectory));
        player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Reloaded config."));
    }

}


================================================
FILE: src/main/java/me/Danker/commands/ReloadRepoCommand.java
================================================
package me.Danker.commands;

import me.Danker.config.ModConfig;
import me.Danker.utils.Utils;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ChatComponentText;

public class ReloadRepoCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "reloaddsmrepo";
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName();
    }

    public static String usage(ICommandSender arg0) {
        return new ReloadRepoCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }

    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        // MULTI THREAD DRIFTING
        new Thread(() -> {
            EntityPlayer player = (EntityPlayer) arg0;
            Utils.refreshRepo();
            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Refreshed Danker's Skyblock Mod repo."));
        }).start();
    }

}


================================================
FILE: src/main/java/me/Danker/commands/RepartyCommand.java
================================================
package me.Danker.commands;

import me.Danker.config.ModConfig;
import net.minecraft.client.Minecraft;
import net.minecraft.client.entity.EntityPlayerSP;
import net.minecraft.client.gui.GuiNewChat;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommand;
import net.minecraft.command.ICommandSender;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;


public class RepartyCommand extends CommandBase implements ICommand {
    public static boolean gettingParty = false;
    public static int Delimiter = 0;
    public static boolean disbanding = false;
    public static boolean inviting = false;
    public static boolean failInviting = false;
    public static List<String> party = new ArrayList<>();
    public static List<String> repartyFailList = new ArrayList<>();
    public static Thread partyThread = null;

    @Override
    public String getCommandName() { 
        return "reparty"; 
    }

    @Override
    public String getCommandUsage(ICommandSender sender) { 
        return "/" + getCommandName(); 
    }

    public static String usage(ICommandSender arg0) {
        return new RepartyCommand().getCommandUsage(arg0);
    }

    @Override
    public List<String> getCommandAliases() {
        return Collections.singletonList("rp");
    }

    @Override
    public int getRequiredPermissionLevel() { 
        return 0; 
    }

    @Override
    public void processCommand(ICommandSender sender, String[] args) throws CommandException {
        if (args.length > 0 && (args[0].startsWith("fail") || args[0].equals("f"))) {
            partyThread = new Thread(() -> {
                EntityPlayerSP player = Minecraft.getMinecraft().thePlayer;
                GuiNewChat chat = Minecraft.getMinecraft().ingameGUI.getChatGUI();


                try {
                    player.sendChatMessage("/p " + String.join(" ", repartyFailList));
                    String members = String.join(EnumChatFormatting.WHITE + "\n- " + EnumChatFormatting.YELLOW, repartyFailList);
                    player.addChatMessage(new ChatComponentText(ModConfig.getDelimiter() + "\n" +
                            ModConfig.getColour(ModConfig.mainColour) + "Partying:" + EnumChatFormatting.WHITE + "\n- " +
                            EnumChatFormatting.YELLOW + members + "\n" +
                            ModConfig.getDelimiter()));
                    failInviting = true;
                    while (failInviting) {
                        Thread.sleep(10);
                    }
                    if (repartyFailList.size() > 0) {
                        String repartyFails = String.join("\n- " + EnumChatFormatting.RED, repartyFailList);
                        player.addChatMessage(new ChatComponentText(ModConfig.getDelimiter() + "\n" +
                                ModConfig.getColour(ModConfig.mainColour) + "Failed to invite:" + EnumChatFormatting.WHITE + "\n- " +
                                EnumChatFormatting.RED + repartyFails + "\n" +
                                ModConfig.getDelimiter()));
                    }
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            });

            partyThread.start();

            return;
        }

        party.clear();
        repartyFailList.clear();

        // MULTI THREAD DRIFTING
        partyThread = new Thread(() -> {
            EntityPlayerSP player = Minecraft.getMinecraft().thePlayer;


            try {
                player.sendChatMessage("/pl");
                gettingParty = true;
                while (gettingParty) {
                    Thread.sleep(10);
                }
                if (party.size() == 0) return;
                player.sendChatMessage("/p disband");
                disbanding = true;
                while (disbanding) {
                    Thread.sleep(10);
                }
                String members = String.join(EnumChatFormatting.WHITE + "\n- " + EnumChatFormatting.YELLOW, RepartyCommand.party);
                player.addChatMessage(new ChatComponentText(ModConfig.getDelimiter() + "\n" +
                        ModConfig.getColour(ModConfig.mainColour) + "Repartying:" + EnumChatFormatting.WHITE + "\n- " +
                        EnumChatFormatting.YELLOW + members + "\n" +
                        ModConfig.getDelimiter()));
                repartyFailList = new ArrayList<>(party);
                for (String invitee : party) {
                    player.sendChatMessage("/p " + invitee);
                    inviting = true;
                    while (inviting) {
                        Thread.sleep(10);
                    }
                    Thread.sleep(100);
                }
                while (inviting) {
                    Thread.sleep(10);
                }
                if (repartyFailList.size() > 0) {
                    String repartyFails = String.join("\n- " + EnumChatFormatting.RED, repartyFailList);
                    player.addChatMessage(new ChatComponentText(ModConfig.getDelimiter() + "\n" +
                            ModConfig.getColour(ModConfig.mainColour) + "Failed to invite:" + EnumChatFormatting.WHITE + "\n- " +
                            EnumChatFormatting.RED + repartyFails + "\n" +
                            ModConfig.getDelimiter()));
                }
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        });

        partyThread.start();
    }
}

================================================
FILE: src/main/java/me/Danker/commands/SkillTrackerCommand.java
================================================
package me.Danker.commands;

import me.Danker.config.ModConfig;
import me.Danker.features.SkillTracker;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;
import org.apache.commons.lang3.time.StopWatch;

import java.util.List;

public class SkillTrackerCommand extends CommandBase {
    public static boolean running = false;

    @Override
    public String getCommandName() {
        return "skilltracker";
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName() + " <start/stop/reset/show/hide>";
    }

    public static String usage(ICommandSender arg0) {
        return new SkillTrackerCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }
    
    @Override
    public List<String> addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
        if (args.length == 1) {
            return getListOfStringsMatchingLastWord(args, "start", "resume", "pause", "stop", "reset");
        }
        return null;
    }
    
    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        // MULTI THREAD DRIFTING
        new Thread(() -> {
            EntityPlayer player = (EntityPlayer) arg0;
            
            if (arg1.length < 1) {
                player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.errorColour) + "Usage: " + getCommandUsage(arg0)));
                return;
            }
            
            try {
                Thread.sleep(50);

                switch (arg1[0].toLowerCase()) {
                    case "start":
                    case "resume":
                        if (SkillTracker.skillStopwatch.isStarted() && SkillTracker.skillStopwatch.isSuspended()) {
                            SkillTracker.skillStopwatch.resume();
                        } else if (!SkillTracker.skillStopwatch.isStarted()) {
                            SkillTracker.skillStopwatch.start();
                        }
                        player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Skill tracker started."));
                        break;
                    case "pause":
                    case "stop":
                        if (SkillTracker.skillStopwatch.isStarted() && !SkillTracker.skillStopwatch.isSuspended()) {
                            SkillTracker.skillStopwatch.suspend();
                        } else {
                            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Skill tracker paused."));
                        }
                        break;
                    case "reset":
                        SkillTracker.skillStopwatch = new StopWatch();
                        SkillTracker.farmingXPGained = 0;
                        SkillTracker.miningXPGained = 0;
                        SkillTracker.combatXPGained = 0;
                        SkillTracker.foragingXPGained = 0;
                        SkillTracker.fishingXPGained = 0;
                        SkillTracker.enchantingXPGained = 0;
                        SkillTracker.alchemyXPGained = 0;
                        player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Skill tracker reset."));
                        break;
                    default:
                        player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.errorColour) + "Usage: " + getCommandUsage(arg0)));
                }
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }).start();
    }
}


================================================
FILE: src/main/java/me/Danker/commands/StopLobbyCommand.java
================================================
package me.Danker.commands;

import me.Danker.commands.api.LobbyBankCommand;
import me.Danker.commands.api.LobbySkillsCommand;
import me.Danker.config.ModConfig;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ChatComponentText;

import java.util.Collections;
import java.util.List;

public class StopLobbyCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "stoplobby";
    }

    @Override
    public List<String> getCommandAliases() {
        return Collections.singletonList("stoplb");
    }

    @Override
    public String getCommandUsage(ICommandSender sender) {
        return "/" + getCommandName();
    }

    public static String usage(ICommandSender arg0) {
        return new StopLobbyCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }

    @Override
    public void processCommand(ICommandSender sender, String[] args) throws CommandException {
        EntityPlayer player = (EntityPlayer) sender;
        if (LobbySkillsCommand.mainThread != null && LobbySkillsCommand.mainThread.isAlive()) {
            LobbySkillsCommand.mainThread.interrupt();
            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Stopped running /lobbyskills. See logs for progress."));
        }
        if (LobbyBankCommand.mainThread != null && LobbyBankCommand.mainThread.isAlive()) {
            LobbyBankCommand.mainThread.interrupt();
            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Stopped running /lobbybank. See logs for progress."));
        }
    }

}


================================================
FILE: src/main/java/me/Danker/commands/api/ArmourCommand.java
================================================
package me.Danker.commands.api;

import com.google.gson.JsonObject;
import me.Danker.config.ModConfig;
import me.Danker.handlers.APIHandler;
import me.Danker.handlers.HypixelAPIHandler;
import me.Danker.utils.Utils;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.CompressedStreamTools;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Base64;
import java.util.Collections;
import java.util.List;

public class ArmourCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "armor";
    }
    
    @Override
    public List<String> getCommandAliases() {
        return Collections.singletonList("armour");
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName() + " [name]";
    }

    public static String usage(ICommandSender arg0) {
        return new ArmourCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }
    
    @Override
    public List<String> addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
        if (args.length == 1) {
            return Utils.getMatchingPlayers(args[0]);
        }
        return null;
    }

    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        // MULTI THREAD DRIFTING
        new Thread(() -> {
            EntityPlayer player = (EntityPlayer) arg0;
            
            // Get UUID for Hypixel API requests
            String username;
            String uuid;
            if (arg1.length == 0) {
                username = player.getName();
                uuid = player.getUniqueID().toString().replaceAll("[\\-]", "");
            } else {
                username = arg1[0];
                uuid = APIHandler.getUUID(username);
            }
            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Checking armor of " + ModConfig.getColour(ModConfig.secondaryColour) + username + ModConfig.getColour(ModConfig.mainColour) + " using Polyfrost's API."));
            
            // Find stats of latest profile
            JsonObject profileResponse = HypixelAPIHandler.getLatestProfile(uuid);
            if (profileResponse == null) return;

            String armourBase64 = Utils.getObjectFromPath(profileResponse, "members." + uuid + ".inventory.inv_armor").get("data").getAsString();
            InputStream armourStream = new ByteArrayInputStream(Base64.getDecoder().decode(armourBase64));
            // String armourDecodedGZIP = new String(Base64.getDecoder().decode(armourBase64));
            
            try {
                NBTTagCompound armour = CompressedStreamTools.readCompressed(armourStream);
                NBTTagList armourList = armour.getTagList("i", 10);
                
                String helmet = EnumChatFormatting.RED + "None";
                String chest = EnumChatFormatting.RED + "None";
                String legs = EnumChatFormatting.RED + "None";
                String boots = EnumChatFormatting.RED + "None";
                // Loop through armour
                for (int i = 0; i < armourList.tagCount(); i++) {
                    NBTTagCompound armourPiece = armourList.getCompoundTagAt(i);
                    if (armourPiece.hasNoTags()) continue;
                    
                    String armourPieceName = armourPiece.getCompoundTag("tag").getCompoundTag("display").getString("Name");
                    // NBT is served boots -> helmet
                    switch (i) {
                        case 0:
                            boots = armourPieceName;
                            break;
                        case 1:
                            legs = armourPieceName;
                            break;
                        case 2:
                            chest = armourPieceName;
                            break;
                        case 3:
                            helmet = armourPieceName;
                            break;
                        default:
                            System.err.println("An error has occurred.");
                            break;
                    }
                }
                armourStream.close();
                
                player.addChatMessage(new ChatComponentText(ModConfig.getDelimiter() + "\n" +
                                                            EnumChatFormatting.AQUA + " " + username + "'s Armour:\n" +
                                                            ModConfig.getColour(ModConfig.typeColour) + " Helmet:      " + helmet + "\n" +
                                                            ModConfig.getColour(ModConfig.typeColour) + " Chestplate: " + chest + "\n" +
                                                            ModConfig.getColour(ModConfig.typeColour) + " Leggings:   " + legs + "\n" +
                                                            ModConfig.getColour(ModConfig.typeColour) + " Boots:       " + boots + "\n" +
                                                            ModConfig.getDelimiter()));
            } catch (IOException ex) {
                player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.errorColour) + "An error has occurred while reading inventory data. See logs for more info."));
                ex.printStackTrace();
            }
        }).start();
    }

}


================================================
FILE: src/main/java/me/Danker/commands/api/BankCommand.java
================================================
package me.Danker.commands.api;

import com.google.common.collect.ImmutableList;
import com.google.gson.JsonObject;
import me.Danker.config.ModConfig;
import me.Danker.handlers.APIHandler;
import me.Danker.handlers.HypixelAPIHandler;
import me.Danker.utils.Utils;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;

import java.text.NumberFormat;
import java.util.List;
import java.util.Locale;

public class BankCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "bankof";
    }
    
    @Override
    public List<String> getCommandAliases() {
        return ImmutableList.of("purse", "coins");
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName() + " [name]";
    }

    public static String usage(ICommandSender arg0) {
        return new BankCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }

    @Override
    public List<String> addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
        if (args.length == 1) {
            return Utils.getMatchingPlayers(args[0]);
        }
        return null;
    }
    
    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        // MULTI THREAD DRIFTING
        new Thread(() -> {
            EntityPlayer player = (EntityPlayer) arg0;
            
            // Get UUID for Hypixel API requests
            String username;
            String uuid;
            if (arg1.length == 0) {
                username = player.getName();
                uuid = player.getUniqueID().toString().replaceAll("[\\-]", "");
            } else {
                username = arg1[0];
                uuid = APIHandler.getUUID(username);
            }
            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Checking coins of " + ModConfig.getColour(ModConfig.secondaryColour) + username + ModConfig.getColour(ModConfig.mainColour) + " using Polyfrost's API."));
            
            // Find stats of latest profile
            JsonObject profileResponse = HypixelAPIHandler.getLatestProfile(uuid);
            if (profileResponse == null) return;
            
            System.out.println("Fetching bank + purse coins...");
            double purseCoins = Utils.getObjectFromPath(profileResponse, "members." + uuid + ".currencies").get("coin_purse").getAsDouble();
            purseCoins = Math.floor(purseCoins * 100.0) / 100.0;
            NumberFormat nf = NumberFormat.getIntegerInstance(Locale.US);
            
            // Check for bank api
            if (profileResponse.has("banking")) {
                double bankCoins = profileResponse.getAsJsonObject("banking").get("balance").getAsDouble();
                bankCoins = Math.floor(bankCoins * 100.0) / 100.0;
                
                player.addChatMessage(new ChatComponentText(ModConfig.getDelimiter() + "\n" +
                                                            EnumChatFormatting.AQUA + " " + username + "'s Coins:\n" +
                                                            ModConfig.getColour(ModConfig.typeColour) + " Bank: " + EnumChatFormatting.GOLD + nf.format(bankCoins) + "\n" +
                                                            ModConfig.getColour(ModConfig.typeColour) + " Purse: " + EnumChatFormatting.GOLD + nf.format(purseCoins) + "\n" +
                                                            ModConfig.getColour(ModConfig.typeColour) + " Total: " + EnumChatFormatting.GOLD + nf.format(bankCoins + purseCoins) + "\n" +
                                                            ModConfig.getDelimiter()));
            } else {
                player.addChatMessage(new ChatComponentText(ModConfig.getDelimiter() + "\n" +
                                                            EnumChatFormatting.AQUA + " " + username + "'s Coins:\n" +
                                                            ModConfig.getColour(ModConfig.typeColour) + " Bank: " + EnumChatFormatting.RED + "Bank API disabled.\n" +
                                                            ModConfig.getColour(ModConfig.typeColour) + " Purse: " + EnumChatFormatting.GOLD + nf.format(purseCoins) + "\n" +
                                                            ModConfig.getDelimiter()));
            }
        }).start();
    }

}


================================================
FILE: src/main/java/me/Danker/commands/api/DungeonsCommand.java
================================================
package me.Danker.commands.api;

import com.google.gson.JsonObject;
import me.Danker.config.ModConfig;
import me.Danker.handlers.APIHandler;
import me.Danker.handlers.HypixelAPIHandler;
import me.Danker.utils.Utils;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.event.HoverEvent;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.MathHelper;

import java.text.NumberFormat;
import java.util.List;
import java.util.Locale;

public class DungeonsCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "dungeons";
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName() + " [name]";
    }

    public static String usage(ICommandSender arg0) {
        return new DungeonsCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }
    
    @Override
    public List<String> addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
        if (args.length == 1) {
            return Utils.getMatchingPlayers(args[0]);
        }
        return null;
    }

    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        // MULTI THREAD DRIFTING
        new Thread(() -> {
            EntityPlayer player = (EntityPlayer) arg0;
            
            // Get UUID for Hypixel API requests
            String username;
            String uuid;
            if (arg1.length == 0) {
                username = player.getName();
                uuid = player.getUniqueID().toString().replaceAll("[\\-]", "");
            } else {
                username = arg1[0];
                uuid = APIHandler.getUUID(username);
            }
            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Checking dungeon stats of " + ModConfig.getColour(ModConfig.secondaryColour) + username + ModConfig.getColour(ModConfig.mainColour) + " using Polyfrost's API."));

            // Find stats of latest profile
            JsonObject profileResponse = HypixelAPIHandler.getLatestProfile(uuid);
            if (profileResponse == null) return;

            System.out.println("Fetching player data...");
            JsonObject playerResponse = HypixelAPIHandler.getJsonObjectAuth(HypixelAPIHandler.URL + "player/" + uuid);

            if (playerResponse == null) {
                player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.errorColour) + "Could not connect to API."));
                return;
            }
            if (!playerResponse.get("success").getAsBoolean()) {
                String reason = playerResponse.get("cause").getAsString();
                player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.errorColour) + "Failed with reason: " + reason));
                return;
            }
            
            System.out.println("Fetching dungeon stats...");
            JsonObject dungeonsObject = Utils.getObjectFromPath(profileResponse, "members." + uuid + ".dungeons");
            JsonObject catacombsObject = Utils.getObjectFromPath(dungeonsObject, "dungeon_types.catacombs");
            if (!catacombsObject.has("experience")) {
                player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.errorColour) + "This player has not played dungeons."));
                return;
            }

            double catacombs = Utils.xpToDungeonsLevel(catacombsObject.get("experience").getAsDouble());
            double healer = getClassLevel(dungeonsObject, "healer");
            double mage = getClassLevel(dungeonsObject, "mage");
            double berserk = getClassLevel(dungeonsObject, "berserk");
            double archer = getClassLevel(dungeonsObject, "archer");
            double tank = getClassLevel(dungeonsObject, "tank");
            double classAverage = Math.round((healer + mage + berserk + archer + tank) / 5D * 100D) / 100D;
            String selectedClass = Utils.capitalizeString(dungeonsObject.get("selected_dungeon_class").getAsString());

            int secrets = 0;
            JsonObject achievementsObj = Utils.getObjectFromPath(playerResponse, "player.achievements");
            if (achievementsObj.has("skyblock_treasure_hunter")) {
                secrets = achievementsObj.get("skyblock_treasure_hunter").getAsInt();
            }

            int highestFloor = 0;
            if (catacombsObject.has("highest_tier_completed")) {
                highestFloor = catacombsObject.get("highest_tier_completed").getAsInt();
            }
            JsonObject completionObj = catacombsObject.getAsJsonObject("tier_completions");

            JsonObject catacombsMasterObject = Utils.getObjectFromPath(dungeonsObject, "dungeon_types.master_catacombs");
            boolean hasPlayedMaster = catacombsMasterObject.has("highest_tier_completed");

            int highestMasterFloor = 0;
            JsonObject completionMasterObj = null;
            if (hasPlayedMaster) {
                highestMasterFloor = catacombsMasterObject.get("highest_tier_completed").getAsInt();
                completionMasterObj = catacombsMasterObject.getAsJsonObject("tier_completions");
            }

            ChatComponentText classLevels = new ChatComponentText(EnumChatFormatting.GOLD + " Selected Class: " + selectedClass + "\n\n" +
                                                                  EnumChatFormatting.RED + " Catacombs Level: " + catacombs + "\n" +
                                                                  EnumChatFormatting.RED + " Class Average: " + classAverage + "\n\n" +
                                                                  EnumChatFormatting.YELLOW + " Healer Level: " + healer + "\n" +
                                                                  EnumChatFormatting.LIGHT_PURPLE + " Mage Level: " + mage + "\n" +
                                                                  EnumChatFormatting.RED + " Berserk Level: " + berserk + "\n" +
                                                                  EnumChatFormatting.GREEN + " Archer Level: " + archer + "\n" +
                                                                  EnumChatFormatting.BLUE + " Tank Level: " + tank + "\n\n" +
                                                                  EnumChatFormatting.WHITE + " Secrets Found: " + NumberFormat.getIntegerInstance(Locale.US).format(secrets) + "\n\n");

            StringBuilder completionsHoverString = new StringBuilder();
            for (int i = 0; i <= highestFloor; i++) {
                completionsHoverString
                    .append(EnumChatFormatting.GOLD)
                    .append(i == 0 ? "Entrance: " : "Floor " + i + ": ")
                    .append(EnumChatFormatting.RESET)
                    .append(completionObj.get(String.valueOf(i)).getAsInt())
                    .append(i < highestFloor || hasPlayedMaster ? "\n": "");
            }
            for (int i = 1; i <= highestMasterFloor; i++) {
                if (completionMasterObj != null && completionMasterObj.has(String.valueOf(i))) {
                    completionsHoverString
                        .append(EnumChatFormatting.GOLD)
                        .append("Master Floor ")
                        .append(i)
                        .append(": ")
                        .append(EnumChatFormatting.RESET)
                        .append(completionMasterObj.get(String.valueOf(i)).getAsInt())
                        .append(i < highestMasterFloor ? "\n": "");
                }
            }

            ChatComponentText completions;
            if (hasPlayedMaster) {
                completions = new ChatComponentText(EnumChatFormatting.GOLD + " Highest Floor Completed: Master " + highestMasterFloor);
            } else {
                completions = new ChatComponentText(EnumChatFormatting.GOLD + " Highest Floor Completed: " + highestFloor);
            }
            completions.setChatStyle(completions.getChatStyle().setChatHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, new ChatComponentText(completionsHoverString.toString()))));

            player.addChatMessage(
                    new ChatComponentText(ModConfig.getDelimiter())
                    .appendText("\n")
                    .appendSibling(classLevels)
                    .appendSibling(completions)
                    .appendText("\n")
                    .appendSibling(new ChatComponentText(ModConfig.getDelimiter())));
        }).start();
    }

    double getClassLevel(JsonObject obj, String dungeonClass) {
        JsonObject clazz = Utils.getObjectFromPath(obj, "player_classes." + dungeonClass);
        if (clazz != null) {
            if (clazz.has("experience")) {
                double xp = clazz.get("experience").getAsDouble();
                return MathHelper.clamp_double(Utils.xpToDungeonsLevel(xp), 0D, 50D);
            }
        }

        return 0D;
    }

}


================================================
FILE: src/main/java/me/Danker/commands/api/FairySoulsCommand.java
================================================
package me.Danker.commands.api;

import com.google.gson.JsonObject;
import me.Danker.config.ModConfig;
import me.Danker.handlers.APIHandler;
import me.Danker.handlers.HypixelAPIHandler;
import me.Danker.utils.Utils;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;

import java.util.List;

public class FairySoulsCommand extends CommandBase {
    @Override
    public String getCommandName() {
        return "fairysouls";
    }

    @Override
    public String getCommandUsage(ICommandSender sender) {
        return "/" + getCommandName() + " [name]";
    }

    public static String usage(ICommandSender arg0) {
        return new FairySoulsCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }

    @Override
    public List<String> addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
        if (args.length == 1) {
            return Utils.getMatchingPlayers(args[0]);
        }
        return null;
    }

    @Override
    public void processCommand(ICommandSender sender, String[] args) throws CommandException {
        EntityPlayer player = ((EntityPlayer) sender);
        // MULTI THREAD DRIFTING
        new Thread(() -> {

            // Get UUID for Hypixel API requests
            String username;
            String uuid;
            if (args.length == 0) {
                username = player.getName();
                uuid = APIHandler.getUUID(username);
            } else {
                username = args[0];
                uuid = APIHandler.getUUID(username);
            }
            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Checking fairy souls of " + ModConfig.getColour(ModConfig.secondaryColour) + username + ModConfig.getColour(ModConfig.mainColour) + " using Polyfrost's API."));

            // Find fairy souls of latest profile
            JsonObject profileResponse = HypixelAPIHandler.getLatestProfile(uuid);
            if (profileResponse == null) return;

            // Extracting the fairy souls from the json data
            System.out.println("Fetching fairy souls");
            int fairySouls = Utils.getObjectFromPath(profileResponse, "members." + uuid + ".fairy_soul").get("total_collected").getAsInt();

            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.secondaryColour) + username + ModConfig.getColour(ModConfig.mainColour) + " has " + ModConfig.getColour(ModConfig.valueColour) + fairySouls + ModConfig.getColour(ModConfig.mainColour) + "/243 collected"));
        }).start();

    }
}


================================================
FILE: src/main/java/me/Danker/commands/api/GuildOfCommand.java
================================================
package me.Danker.commands.api;

import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import me.Danker.config.ModConfig;
import me.Danker.handlers.APIHandler;
import me.Danker.handlers.HypixelAPIHandler;
import me.Danker.utils.Utils;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;

import java.util.List;

public class GuildOfCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "guildof";
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName() + " [name]";
    }

    public static String usage(ICommandSender arg0) {
        return new GuildOfCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }
    
    @Override
    public List<String> addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
        if (args.length == 1) {
            return Utils.getMatchingPlayers(args[0]);
        }
        return null;
    }
    
    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        // MULTI THREAD DRIFTING
        new Thread(() -> {
            EntityPlayer player = (EntityPlayer) arg0;
            
            // Get UUID for Hypixel API requests
            String username;
            String uuid;
            if (arg1.length == 0) {
                username = player.getName();
                uuid = player.getUniqueID().toString().replaceAll("[\\-]", "");
            } else {
                username = arg1[0];
                uuid = APIHandler.getUUID(username);
            }
            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Checking guild of " + ModConfig.getColour(ModConfig.secondaryColour) + username + ModConfig.getColour(ModConfig.mainColour) + " using Polyfrost's API."));
            
            // Find guild ID
            System.out.println("Fetching guild...");
            JsonObject guildResponse = HypixelAPIHandler.getJsonObjectAuth(HypixelAPIHandler.URL + "guild/" + uuid);

            if (guildResponse == null) {
                player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.errorColour) + "Could not connect to API."));
                return;
            }
            if (!guildResponse.get("success").getAsBoolean()) {
                String reason = guildResponse.get("cause").getAsString();
                player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.errorColour) + "Failed with reason: " + reason));
                return;
            }
            
            System.out.println("Fetching guild stats and members...");
            
            String guildName = "N/A";
            String guildMaster = "N/A";
            int players = 0;
            // Check if player is in guild
            if (!guildResponse.get("guild").isJsonNull()) {
                guildName = guildResponse.getAsJsonObject("guild").get("name").getAsString();
                
                // Loop through members to find guildmaster
                JsonArray guildMembers = guildResponse.getAsJsonObject("guild").getAsJsonArray("members");
                players = guildMembers.size();
                for (JsonElement member : guildMembers) {
                    JsonObject memberObject = member.getAsJsonObject();
                    String memberRank = memberObject.get("rank").getAsString();
                    
                    if (memberRank.equals("GUILDMASTER") || memberRank.equals("Guild Master")) {
                        // Get username from UUID
                        String gmUUID = memberObject.get("uuid").getAsString();
                        guildMaster = APIHandler.getName(gmUUID);
                        break;
                    }
                }
            }
            
            player.addChatMessage(new ChatComponentText(ModConfig.getDelimiter() + "\n" +
                                                        EnumChatFormatting.AQUA + " " + username + "'s Guild:\n" +
                                                        ModConfig.getColour(ModConfig.typeColour) + " Guild: " + ModConfig.getColour(ModConfig.valueColour) + EnumChatFormatting.BOLD + guildName + "\n" +
                                                        ModConfig.getColour(ModConfig.typeColour) + " Guildmaster: " + ModConfig.getColour(ModConfig.valueColour) + EnumChatFormatting.BOLD + guildMaster + "\n" +
                                                        ModConfig.getColour(ModConfig.typeColour) + " Members: " + ModConfig.getColour(ModConfig.valueColour) + EnumChatFormatting.BOLD + players + "\n" +
                                                        ModConfig.getDelimiter()));
        }).start();
    }

}


================================================
FILE: src/main/java/me/Danker/commands/api/HOTMCommand.java
================================================
package me.Danker.commands.api;

import com.google.gson.JsonObject;
import me.Danker.config.ModConfig;
import me.Danker.handlers.APIHandler;
import me.Danker.handlers.HypixelAPIHandler;
import me.Danker.utils.Utils;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.event.ClickEvent;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;

import java.text.NumberFormat;
import java.util.List;
import java.util.Locale;

public class HOTMCommand extends CommandBase {

    @Override
    public String getCommandName() {
        return "hotmof";
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName() + " [name]";
    }

    public static String usage(ICommandSender arg0) {
        return new HOTMCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }

    @Override
    public List<String> addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
        if (args.length == 1) {
            return Utils.getMatchingPlayers(args[0]);
        }
        return null;
    }

    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        // MULTI THREAD DRIFTING
        new Thread(() -> {
            EntityPlayer player = (EntityPlayer) arg0;

            // Get UUID for Hypixel API requests
            String username;
            String uuid;
            if (arg1.length == 0) {
                username = player.getName();
                uuid = player.getUniqueID().toString().replaceAll("[\\-]", "");
            } else {
                username = arg1[0];
                uuid = APIHandler.getUUID(username);
            }
            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Checking HotM of " + ModConfig.getColour(ModConfig.secondaryColour) + username + ModConfig.getColour(ModConfig.mainColour) + " using Polyfrost's API."));

            // Find stats of latest profile
            JsonObject profileResponse = HypixelAPIHandler.getLatestProfile(uuid);
            if (profileResponse == null) return;

            String latestProfileID = HypixelAPIHandler.getLatestProfileID(uuid);
            if (latestProfileID == null) return;

            System.out.println("Fetching mining stats...");
            JsonObject miningCore = Utils.getObjectFromPath(profileResponse, "members." + uuid + ".mining_core");

            int mithril = 0;
            if (miningCore.has("powder_mithril")) {
                mithril = miningCore.get("powder_mithril").getAsInt();
                if (miningCore.has("powder_spent_mithril")) mithril += miningCore.get("powder_spent_mithril").getAsInt();
            }

            int gemstone = 0;
            if (miningCore.has("powder_gemstone")) {
                gemstone = miningCore.get("powder_gemstone").getAsInt();
                if (miningCore.has("powder_spent_gemstone")) gemstone += miningCore.get("powder_spent_gemstone").getAsInt();
            }

            int glacite = 0;
            if (miningCore.has("powder_glacite")) {
                glacite = miningCore.get("powder_glacite").getAsInt();
                if (miningCore.has("powder_spent_glacite")) glacite += miningCore.get("powder_spent_glacite").getAsInt();
            }

            String ability = EnumChatFormatting.RED + "None";
            if (miningCore.has("selected_pickaxe_ability")) {
                if (miningCore.get("selected_pickaxe_ability").isJsonNull()) {
                    ability = EnumChatFormatting.RED + "None";
                } else {
                    ability = Node.valueOf(miningCore.get("selected_pickaxe_ability").getAsString()).name;
                }
            }

            ChatComponentText tree = new ChatComponentText(EnumChatFormatting.GREEN + "" + EnumChatFormatting.BOLD + "[CLICK]");
            tree.setChatStyle(tree.getChatStyle().setChatClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, "/hotmtree " + username + " " + latestProfileID)));

            NumberFormat nf = NumberFormat.getIntegerInstance(Locale.US);
            player.addChatMessage(new ChatComponentText(ModConfig.getDelimiter() + "\n" +
                                                        EnumChatFormatting.AQUA + username + "'s HotM:\n" +
                                                        ModConfig.getColour(ModConfig.typeColour) + "Mithril Powder: " + EnumChatFormatting.DARK_GREEN + nf.format(mithril) + "\n" +
                                                        ModConfig.getColour(ModConfig.typeColour) + "Gemstone Powder: " + EnumChatFormatting.LIGHT_PURPLE + nf.format(gemstone) + "\n" +
                                                        ModConfig.getColour(ModConfig.typeColour) + "Glacite Powder: " + EnumChatFormatting.AQUA + nf.format(glacite) + "\n" +
                                                        ModConfig.getColour(ModConfig.typeColour) + "Pickaxe Ability: " + ModConfig.getColour(ModConfig.valueColour) + ability + "\n" +
                                                        ModConfig.getColour(ModConfig.typeColour) + "HotM Tree: ").appendSibling(tree)
                                                        .appendSibling(new ChatComponentText("\n" + ModConfig.getDelimiter())));
        }).start();
    }

    enum Node {
        mining_speed_boost("Mining Speed Boost"),
        pickaxe_toss("Pickobulus"),
        vein_seeker("Vein Seeker"),
        maniac_miner("Maniac Miner"),
        gemstone_infusion("Gemstone Infusion"),
        hazardous_miner("Hazardous Miner");

        public final String name;

        Node(String name) {
            this.name = name;
        }
    }

}


================================================
FILE: src/main/java/me/Danker/commands/api/HOTMTreeCommand.java
================================================
package me.Danker.commands.api;

import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import me.Danker.DankersSkyblockMod;
import me.Danker.config.ModConfig;
import me.Danker.containers.GuiChestDynamic;
import me.Danker.handlers.APIHandler;
import me.Danker.utils.Utils;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.InventoryBasic;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.*;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.common.util.Constants;

import java.util.ArrayList;
import java.util.Base64;
import java.util.List;
import java.util.UUID;

public class HOTMTreeCommand extends CommandBase {

    public static GuiChestDynamic chest = null;

    @Override
    public String getCommandName() {
        return "hotmtree";
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return null;
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }

    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        // MULTI THREAD DRIFTING
        new Thread(() -> {
            EntityPlayer player = (EntityPlayer) arg0;

            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Checking HotM tree of " + ModConfig.getColour(ModConfig.secondaryColour) + arg1[0] + ModConfig.getColour(ModConfig.mainColour) + " using Polyfrost's API."));

            System.out.println("Fetching profile...");
            String profileURL = "https://sky.shiiyu.moe/api/v2/profile/" + arg1[0];
            JsonObject profileResponse = APIHandler.getResponse(profileURL, true);
            if (profileResponse.has("error")) {
                String reason = profileResponse.get("error").getAsString();
                player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "Failed with reason: " + reason));
                return;
            }

            System.out.println("Fetching HotM tree...");
            JsonArray tree = Utils.getObjectFromPath(profileResponse, "profiles." + arg1[1] + ".items").getAsJsonArray("hotm");

            IInventory inventory = new InventoryBasic(arg1[0] + "'s HotM Tree:", true, 63);

            for (JsonElement e : tree) {
                JsonObject node = e.getAsJsonObject();

                if (!node.has("tag")) continue;

                ItemStack item = new ItemStack(Item.getItemById(node.get("id").getAsInt()), node.get("Count").getAsInt(), node.get("Damage").getAsInt());

                NBTTagCompound nbt;
                try {
                    nbt = JsonToNBT.getTagFromJson(node.get("tag").toString());
                    removeDoubleQuotes(nbt);
                    nbt.getCompoundTag("display").getTagList("Lore", Constants.NBT.TAG_STRING).removeTag(0);
                } catch (NBTException ex) {
                    ex.printStackTrace();
                    continue;
                }

                if (node.get("glowing").getAsBoolean()) {
                    nbt.setTag("HideFlags", new NBTTagShort((short) 1));
                }

                if (node.has("texture_path")) {
                    String path = node.get("texture_path").getAsString();
                    NBTTagCompound skullOwner = new NBTTagCompound();
                    NBTTagCompound properties = new NBTTagCompound();
                    NBTTagList textures = new NBTTagList();
                    NBTTagCompound value = new NBTTagCompound();
                    String texture = "{\"textures\":{\"SKIN\":{\"url\":\"http://textures.minecraft.net/texture/" + path.substring(path.lastIndexOf("/") + 1) + "\"}}}";
                    value.setTag("Value", new NBTTagString(Base64.getEncoder().encodeToString(texture.getBytes())));
                    textures.appendTag(value);
                    properties.setTag("textures", textures);
                    skullOwner.setTag("Properties", properties);
                    skullOwner.setTag("Id", new NBTTagString(UUID.randomUUID().toString()));
                    nbt.setTag("SkullOwner", skullOwner);
                }

                item.setTagCompound(nbt);

                if (node.get("glowing").getAsBoolean()) {
                    item.addEnchantment(Enchantment.protection, 1);
                }
                item.setStackDisplayName(Utils.removeBold(item.getDisplayName()));

                inventory.setInventorySlotContents(node.get("position").getAsInt() - 1, item);
            }

            chest = new GuiChestDynamic(player.inventory, inventory, new ResourceLocation("dsm", "textures/generic_63.png"));
            DankersSkyblockMod.guiToOpen = "hotminventory";
        }).start();
    }

    // https://bitbucket.org/hrznstudio/mo-legacy-edition/src/4cc47b2a792cc2ef19eb7e5db0169706ea2e48dd/src/main/java/matteroverdrive/util/MOJsonHelper.java#lines-164:179
    public static void removeDoubleQuotes(NBTTagCompound tagCompound) {
        List<String> cachedKeyList = new ArrayList<>();
        cachedKeyList.addAll(tagCompound.getKeySet());
        for (String key : cachedKeyList) {
            NBTBase base = tagCompound.getTag(key);
            tagCompound.removeTag(key);

            key = key.replace("\"", "");
            if (base instanceof NBTTagCompound) {
                removeDoubleQuotes((NBTTagCompound) base);
            } else if (base instanceof NBTTagList) {
                removeDoubleQuotes((NBTTagList) base);
            }
            tagCompound.setTag(key, base);
        }
    }

    // https://bitbucket.org/hrznstudio/mo-legacy-edition/src/4cc47b2a792cc2ef19eb7e5db0169706ea2e48dd/src/main/java/matteroverdrive/util/MOJsonHelper.java#lines-181:189
    public static void removeDoubleQuotes(NBTTagList tagList) {
        for (int i = 0; i < tagList.tagCount(); i++) {
            if (tagList.get(i) instanceof NBTTagCompound) {
                removeDoubleQuotes((NBTTagCompound) tagList.get(i));
            } else if (tagList.get(i) instanceof NBTTagList) {
                removeDoubleQuotes((NBTTagList) tagList.get(i));
            }
        }
    }

}


================================================
FILE: src/main/java/me/Danker/commands/api/InventoryCommand.java
================================================
package me.Danker.commands.api;

import com.google.gson.JsonObject;
import me.Danker.DankersSkyblockMod;
import me.Danker.config.ModConfig;
import me.Danker.containers.GuiChestDynamic;
import me.Danker.handlers.APIHandler;
import me.Danker.handlers.HypixelAPIHandler;
import me.Danker.utils.Utils;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.InventoryBasic;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.CompressedStreamTools;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.ResourceLocation;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Base64;
import java.util.Collections;
import java.util.List;

public class InventoryCommand extends CommandBase {

    public static GuiChestDynamic chest = null;

    @Override
    public String getCommandName() {
        return "inventory";
    }

    @Override
    public List<String> getCommandAliases() {
        return Collections.singletonList("inv");
    }

    @Override
    public String getCommandUsage(ICommandSender arg0) {
        return "/" + getCommandName() + " [name]";
    }

    public static String usage(ICommandSender arg0) {
        return new InventoryCommand().getCommandUsage(arg0);
    }

    @Override
    public int getRequiredPermissionLevel() {
        return 0;
    }

    @Override
    public List<String> addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
        if (args.length == 1) {
            return Utils.getMatchingPlayers(args[0]);
        }
        return null;
    }

    @Override
    public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
        // MULTI THREAD DRIFTING
        new Thread(() -> {
            EntityPlayer player = (EntityPlayer) arg0;

            // Get UUID for Hypixel API requests
            String username;
            String uuid;
            if (arg1.length == 0) {
                username = player.getName();
                uuid = player.getUniqueID().toString().replaceAll("[\\-]", "");
            } else {
                username = arg1[0];
                uuid = APIHandler.getUUID(username);
            }
            player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.mainColour) + "Checking inventory of " + ModConfig.getColour(ModConfig.secondaryColour) + username + ModConfig.getColour(ModConfig.mainColour) + " using Polyfrost's API."));

            // Find stats of latest profile
            JsonObject profileResponse = HypixelAPIHandler.getLatestProfile(uuid);
            if (profileResponse == null) return;

            System.out.println("Fetching inventory...");
            JsonObject inventoryObject = Utils.getObjectFromPath(profileResponse, "members." + uuid + ".inventory");

            IInventory inventory = new InventoryBasic(username + "'s Inventory:", true, 63);

            ItemStack notEnabled = new ItemStack(Blocks.barrier, 1, 0);
            notEnabled.setStackDisplayName(EnumChatFormatting.RED + "Inventory API not enabled.");

            try {
                // Armour
                String armourBase64 = inventoryObject.getAsJsonObject("inv_armor").get("data").getAsString();
                InputStream armourStream = new ByteArrayInputStream(Base64.getDecoder().decode(armourBase64));
                NBTTagCompound armour = CompressedStreamTools.readCompressed(armourStream);
                NBTTagList armourList = armour.getTagList("i", 10);

                for (int i = 0; i < armourList.tagCount(); i++) {
                    NBTTagCompound item = armourList.getCompoundTagAt(i);
                    if (item.hasNoTags()) continue;
                    inventory.setInventorySlotContents(7 - i * 2, ItemStack.loadItemStackFromNBT(item));
                }

                // Equipment
                if (inventoryObject.has("equipment_contents")) {
                    String equipmentBase64 = inventoryObject.getAsJsonObject("equipment_contents").get("data").getAsString();
                    InputStream equipmentStream = new ByteArrayInputStream(Base64.getDecoder().decode(equipmentBase64));
                    NBTTagCompound equipment = CompressedStreamTools.readCompressed(equipmentStream);
                    NBTTagList equipmentList = equipment.getTagList("i", 10);

                    for (int i = 0; i < equipmentList.tagCount(); i++) {
                        NBTTagCompound item = equipmentList.getCompoundTagAt(i);
                        if (item.hasNoTags()) continue;
                        inventory.setInventorySlotContents(i * 2 + 10, ItemStack.loadItemStackFromNBT(item));
                    }
                } else {
                    for (int i = 10; i <= 16; i += 2) {
                        inventory.setInventorySlotContents(i, notEnabled);
                    }
                }

                // Border
                ItemStack glass = new ItemStack(Blocks.stained_glass_pane, 1, 15);
                glass.setStackDisplayName("");
                for (int i = 0; i < 27; i++) {
                    if (i < 8 && i % 2 == 1) continue;
                    if (i > 8 && i < 17 && i % 2 == 0) continue;
                    inventory.setInventorySlotContents(i, glass);
                }

                // Inventory
                if (inventoryObject.has("inv_contents")) {
                    String invBase64 = inventoryObject.getAsJsonObject("inv_contents").get("data").getAsString();
                    InputStream invStream = new ByteArrayInputStream(Base64.getDecoder().decode(invBase64));

                    NBTTagCompound inv = CompressedStreamTools.readCompressed(invStream);
                    NBTTagList invList = inv.getTagList("i", 10);

                    for (int i = 0; i < invList.tagCount(); i++) {
                        NBTTagCompound item = invList.getCompoundTagAt(i);
                        if (item.hasNoTags()) continue;
                        inventory.setInventorySlotContents(i < 9 ? i + 54 : i + 18, ItemStack.loadItemStackFromNBT(item));
                    }
                } else {
                    for (int i = 27; i < 63; i++) {
                        inventory.setInventorySlotContents(i, notEnabled);
                    }
                }
            } catch (IOException ex) {
                player.addChatMessage(new ChatComponentText(ModConfig.getColour(ModConfig.errorColour) + "An error has occurred while reading inventory data. See logs for more info."));
                ex.printStackTrace();
            }

            chest = new GuiChestDynamic(player.inventory, inventory, new ResourceLocation("dsm", "textures/generic_63.png"));
            DankersSkyblockMod.guiToOpen = "inventory";
        }).start();
    }

}


================================================
FILE: src/main/java/me/Danker/commands/api/LobbyBankCommand.java
================================================
package me.Danker.commands.api;

import com.google.gson.JsonObject;
import me.Danker.config.ModConfig;
import me.Danker.handlers.HypixelAPIHandler;
import me.Danker.utils.Utils;
import net.minecraft.client.Minecraft;
import n
Download .txt
gitextract_8s_ua0uz/

├── .github/
│   └── workflows/
│       └── build.yml
├── .gitignore
├── COPYING
├── COPYING.LESSER
├── README.md
├── build.gradle.kts
├── gradle/
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── root.gradle.kts
├── settings.gradle.kts
├── src/
│   └── main/
│       ├── java/
│       │   ├── DefenitlyNotAJoikedInstallerFrame.java
│       │   └── me/
│       │       └── Danker/
│       │           ├── DankersSkyblockMod.java
│       │           ├── commands/
│       │           │   ├── CrystalHollowWaypointCommand.java
│       │           │   ├── DHelpCommand.java
│       │           │   ├── DankerGuiCommand.java
│       │           │   ├── PowderTrackerCommand.java
│       │           │   ├── ReloadConfigCommand.java
│       │           │   ├── ReloadRepoCommand.java
│       │           │   ├── RepartyCommand.java
│       │           │   ├── SkillTrackerCommand.java
│       │           │   ├── StopLobbyCommand.java
│       │           │   ├── api/
│       │           │   │   ├── ArmourCommand.java
│       │           │   │   ├── BankCommand.java
│       │           │   │   ├── DungeonsCommand.java
│       │           │   │   ├── FairySoulsCommand.java
│       │           │   │   ├── GuildOfCommand.java
│       │           │   │   ├── HOTMCommand.java
│       │           │   │   ├── HOTMTreeCommand.java
│       │           │   │   ├── InventoryCommand.java
│       │           │   │   ├── LobbyBankCommand.java
│       │           │   │   ├── LobbySkillsCommand.java
│       │           │   │   ├── PetsCommand.java
│       │           │   │   ├── PlayerCommand.java
│       │           │   │   ├── SkillsCommand.java
│       │           │   │   ├── SkyblockPlayersCommand.java
│       │           │   │   ├── SlayerCommand.java
│       │           │   │   ├── TrophyFishCommand.java
│       │           │   │   └── WeightCommand.java
│       │           │   ├── loot/
│       │           │   │   ├── DisplayCommand.java
│       │           │   │   ├── ImportFishingCommand.java
│       │           │   │   ├── LootCommand.java
│       │           │   │   └── ResetLootCommand.java
│       │           │   └── warp/
│       │           │       ├── WarpCommand.java
│       │           │       └── WarpCommandHandler.java
│       │           ├── config/
│       │           │   ├── CfgConfig.java
│       │           │   ├── JsonConfig.java
│       │           │   └── ModConfig.java
│       │           ├── containers/
│       │           │   └── GuiChestDynamic.java
│       │           ├── events/
│       │           │   ├── ChestSlotClickedEvent.java
│       │           │   ├── GuiChestBackgroundDrawnEvent.java
│       │           │   ├── ModInitEvent.java
│       │           │   ├── PacketReadEvent.java
│       │           │   ├── PacketWriteEvent.java
│       │           │   ├── PostConfigInitEvent.java
│       │           │   ├── RenderOverlayEvent.java
│       │           │   └── SlayerLootDropEvent.java
│       │           ├── features/
│       │           │   ├── AbilityCooldowns.java
│       │           │   ├── Alerts.java
│       │           │   ├── AnnounceVanquishers.java
│       │           │   ├── ArachneESP.java
│       │           │   ├── AutoAcceptReparty.java
│       │           │   ├── AutoDisplay.java
│       │           │   ├── AutoJoinSkyblock.java
│       │           │   ├── AutoSwapToPickBlock.java
│       │           │   ├── BazaarTimeToFill.java
│       │           │   ├── BlockPlacingFlowers.java
│       │           │   ├── BlockWrongSlayer.java
│       │           │   ├── BonzoMaskTimer.java
│       │           │   ├── CakeTimer.java
│       │           │   ├── ChatAliases.java
│       │           │   ├── ColouredNames.java
│       │           │   ├── CoordsOptimizer.java
│       │           │   ├── CrimsonMinibossTimer.java
│       │           │   ├── CrystalHollowWaypoints.java
│       │           │   ├── CustomMusic.java
│       │           │   ├── Debug.java
│       │           │   ├── DisableMovement.java
│       │           │   ├── DrillFix.java
│       │           │   ├── DungeonScore.java
│       │           │   ├── DungeonTimer.java
│       │           │   ├── EndOfFarmAlert.java
│       │           │   ├── ExpertiseLore.java
│       │           │   ├── FasterMaddoxCalling.java
│       │           │   ├── FilletMagmafish.java
│       │           │   ├── FirePillarDisplay.java
│       │           │   ├── FishingSpawnAlerts.java
│       │           │   ├── GemstonesLore.java
│       │           │   ├── GetPearlFromSack.java
│       │           │   ├── GiantHPDisplay.java
│       │           │   ├── GoldenEnchants.java
│       │           │   ├── GolemSpawningAlert.java
│       │           │   ├── GpartyNotifications.java
│       │           │   ├── HidePetCandy.java
│       │           │   ├── HidePlayerArmour.java
│       │           │   ├── HideTooltipsInExperiments.java
│       │           │   ├── HideTooltipsMisc.java
│       │           │   ├── HighlightCommissions.java
│       │           │   ├── HighlightFilledOrders.java
│       │           │   ├── HighlightPests.java
│       │           │   ├── HighlightSkeletonMasters.java
│       │           │   ├── KuudraNotifications.java
│       │           │   ├── LocrawSpamFix.java
│       │           │   ├── LowHealthNotifications.java
│       │           │   ├── MeterTracker.java
│       │           │   ├── MinionLastCollected.java
│       │           │   ├── NecronNotifications.java
│       │           │   ├── NoF3Coords.java
│       │           │   ├── NotifySlayerSlain.java
│       │           │   ├── PetColours.java
│       │           │   ├── PowderTracker.java
│       │           │   ├── Reparty.java
│       │           │   ├── Skill50Display.java
│       │           │   ├── SkillTracker.java
│       │           │   ├── SlayerESP.java
│       │           │   ├── SpamHider.java
│       │           │   ├── SpiritBearAlert.java
│       │           │   ├── SpiritBootsFix.java
│       │           │   ├── SpiritMaskTimer.java
│       │           │   ├── StopSalvagingStarredItems.java
│       │           │   ├── TetherDisplay.java
│       │           │   ├── UpdateChecker.java
│       │           │   ├── WatcherReadyAlert.java
│       │           │   ├── loot/
│       │           │   │   ├── BlazeTracker.java
│       │           │   │   ├── CatacombsTracker.java
│       │           │   │   ├── EndermanTracker.java
│       │           │   │   ├── FishingTracker.java
│       │           │   │   ├── GhostTracker.java
│       │           │   │   ├── LootDisplay.java
│       │           │   │   ├── LootTracker.java
│       │           │   │   ├── MythologicalTracker.java
│       │           │   │   ├── SpiderTracker.java
│       │           │   │   ├── TrophyFishTracker.java
│       │           │   │   ├── VampireTracker.java
│       │           │   │   ├── WolfTracker.java
│       │           │   │   └── ZombieTracker.java
│       │           │   └── puzzlesolvers/
│       │           │       ├── ArrowTerminalSolver.java
│       │           │       ├── BlazeSolver.java
│       │           │       ├── BlockWrongTerminalClicks.java
│       │           │       ├── BoulderSolver.java
│       │           │       ├── ChronomatronSolver.java
│       │           │       ├── ClickInOrderSolver.java
│       │           │       ├── CreeperSolver.java
│       │           │       ├── IceWalkSolver.java
│       │           │       ├── LividSolver.java
│       │           │       ├── SameColourSolver.java
│       │           │       ├── SelectAllColourSolver.java
│       │           │       ├── SilverfishSolver.java
│       │           │       ├── StartsWithSolver.java
│       │           │       ├── SuperpairsSolver.java
│       │           │       ├── TeleportPadSolver.java
│       │           │       ├── ThreeManSolver.java
│       │           │       ├── TicTacToeSolver.java
│       │           │       ├── TriviaSolver.java
│       │           │       ├── UltrasequencerSolver.java
│       │           │       └── WaterSolver.java
│       │           ├── gui/
│       │           │   ├── WarningGui.java
│       │           │   ├── WarningGuiRedirect.java
│       │           │   ├── alerts/
│       │           │   │   ├── AlertActionGui.java
│       │           │   │   ├── AlertAddGui.java
│       │           │   │   └── AlertsGui.java
│       │           │   ├── aliases/
│       │           │   │   ├── AliasesActionGui.java
│       │           │   │   ├── AliasesAddGui.java
│       │           │   │   └── AliasesGui.java
│       │           │   ├── buttons/
│       │           │   │   ├── FeatureButton.java
│       │           │   │   └── LocationButton.java
│       │           │   └── crystalhollowwaypoints/
│       │           │       ├── CrystalHollowAddWaypointGui.java
│       │           │       ├── CrystalHollowWaypointActionGui.java
│       │           │       └── CrystalHollowWaypointsGui.java
│       │           ├── handlers/
│       │           │   ├── APIHandler.java
│       │           │   ├── ConfigHandler.java
│       │           │   ├── HypixelAPIHandler.java
│       │           │   ├── PacketHandler.java
│       │           │   ├── ScoreboardHandler.java
│       │           │   └── TextRenderer.java
│       │           ├── locations/
│       │           │   ├── DungeonFloor.java
│       │           │   └── Location.java
│       │           └── utils/
│       │               ├── BoulderUtils.java
│       │               ├── IceWalkUtils.java
│       │               ├── RenderUtils.java
│       │               ├── SilverfishUtils.java
│       │               ├── TicTacToeUtils.java
│       │               └── Utils.java
│       └── resources/
│           └── mcmod.info
└── versions/
    └── mainProject
Download .txt
SYMBOL INDEX (1065 symbols across 172 files)

FILE: src/main/java/DefenitlyNotAJoikedInstallerFrame.java
  class DefenitlyNotAJoikedInstallerFrame (line 21) | public class DefenitlyNotAJoikedInstallerFrame extends JFrame implements...
    method DefenitlyNotAJoikedInstallerFrame (line 53) | public DefenitlyNotAJoikedInstallerFrame() {
    method main (line 78) | public static void main(String[] args) {
    method getPanelContentPane (line 90) | private JPanel getPanelContentPane() {
    method getPanelCenter (line 106) | private JPanel getPanelCenter() {
    method getPictureLabel (line 125) | private JLabel getPictureLabel() {
    method getVersionInfo (line 149) | private JLabel getVersionInfo() {
    method getTextArea (line 171) | private JTextArea getTextArea() {
    method setTextAreaProperties (line 192) | private void setTextAreaProperties(JTextArea textArea) {
    method getForgeTextArea (line 203) | private JTextArea getForgeTextArea() {
    method getLabelFolder (line 232) | private JLabel getLabelFolder() {
    method getFieldFolder (line 254) | private JTextField getFieldFolder() {
    method getButtonFolder (line 274) | private JButton getButtonFolder() {
    method getPanelBottom (line 296) | private JPanel getPanelBottom() {
    method getButtonInstall (line 313) | private JButton getButtonInstall() {
    method getButtonOpenFolder (line 330) | private JButton getButtonOpenFolder() {
    method getButtonClose (line 347) | private JButton getButtonClose() {
    method onFolderSelect (line 363) | public void onFolderSelect() {
    method actionPerformed (line 375) | @Override
    method mouseClicked (line 392) | @Override
    method onInstall (line 403) | public void onInstall() {
    method tryInstall (line 420) | private void tryInstall(File modsFolder) {
    method findDSMAndDelete (line 471) | private boolean findDSMAndDelete(File[] files) {
    method onOpenFolder (line 508) | public void onOpenFolder() {
    method getModsFolder (line 516) | public File getModsFolder() {
    method getFile (line 530) | public File getFile(String userHome, String minecraftPath) {
    method getOperatingSystem (line 559) | public OperatingSystem getOperatingSystem() {
    method centerFrame (line 577) | public void centerFrame(JFrame frame) {
    method showMessage (line 591) | public void showMessage(String message) {
    method showErrorMessage (line 595) | public void showErrorMessage(String message) {
    type OperatingSystem (line 599) | public enum OperatingSystem {
    method getStacktraceText (line 607) | private static String getStacktraceText(Throwable ex) {
    method showErrorPopup (line 613) | private static void showErrorPopup(Throwable ex) {
    method getModIDFromInputStream (line 627) | private String getModIDFromInputStream(InputStream inputStream) {
    method getThisFile (line 644) | private File getThisFile() {
    method mousePressed (line 653) | @Override
    method mouseReleased (line 656) | @Override
    method mouseEntered (line 659) | @Override
    method mouseExited (line 662) | @Override

FILE: src/main/java/me/Danker/DankersSkyblockMod.java
  class DankersSkyblockMod (line 67) | @Mod(modid = DankersSkyblockMod.MODID, version = DankersSkyblockMod.VERS...
    method init (line 96) | @EventHandler
    method preInit (line 205) | @EventHandler
    method postInit (line 242) | @EventHandler
    method onGuiOpenEvent (line 268) | @SubscribeEvent
    method onJoin (line 276) | @SubscribeEvent
    method onChat (line 310) | @SubscribeEvent
    method renderPlayerInfo (line 352) | @SubscribeEvent
    method renderPlayerInfoLabyMod (line 361) | @SubscribeEvent
    method renderPlayerInfo (line 368) | @SubscribeEvent
    method onTick (line 375) | @SubscribeEvent
    method onRenderTick (line 430) | @SubscribeEvent
    method onGuiMouseInputPre (line 446) | @SubscribeEvent
    method onGuiRender (line 475) | @SubscribeEvent
    method onServerConnect (line 491) | @SubscribeEvent
    method onAbilityKey (line 499) | public static void onAbilityKey() {

FILE: src/main/java/me/Danker/commands/CrystalHollowWaypointCommand.java
  class CrystalHollowWaypointCommand (line 10) | public class CrystalHollowWaypointCommand extends CommandBase {
    method getCommandName (line 12) | @Override
    method getCommandUsage (line 17) | @Override
    method getRequiredPermissionLevel (line 22) | @Override
    method processCommand (line 27) | @Override

FILE: src/main/java/me/Danker/commands/DHelpCommand.java
  class DHelpCommand (line 16) | public class DHelpCommand extends CommandBase {
    method getCommandName (line 18) | @Override
    method getCommandUsage (line 23) | @Override
    method getRequiredPermissionLevel (line 28) | @Override
    method processCommand (line 33) | @Override

FILE: src/main/java/me/Danker/commands/DankerGuiCommand.java
  class DankerGuiCommand (line 18) | public class DankerGuiCommand extends CommandBase {
    method getCommandName (line 20) | @Override
    method getCommandAliases (line 25) | @Override
    method getCommandUsage (line 30) | @Override
    method usage (line 35) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 39) | @Override
    method processCommand (line 44) | @Override

FILE: src/main/java/me/Danker/commands/PowderTrackerCommand.java
  class PowderTrackerCommand (line 14) | public class PowderTrackerCommand extends CommandBase {
    method getCommandName (line 16) | @Override
    method getCommandUsage (line 21) | @Override
    method usage (line 26) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 30) | @Override
    method addTabCompletionOptions (line 35) | @Override
    method processCommand (line 43) | @Override

FILE: src/main/java/me/Danker/commands/ReloadConfigCommand.java
  class ReloadConfigCommand (line 14) | public class ReloadConfigCommand extends CommandBase {
    method getCommandName (line 16) | @Override
    method getCommandUsage (line 21) | @Override
    method usage (line 26) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 30) | @Override
    method processCommand (line 35) | @Override

FILE: src/main/java/me/Danker/commands/ReloadRepoCommand.java
  class ReloadRepoCommand (line 11) | public class ReloadRepoCommand extends CommandBase {
    method getCommandName (line 13) | @Override
    method getCommandUsage (line 18) | @Override
    method usage (line 23) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 27) | @Override
    method processCommand (line 32) | @Override

FILE: src/main/java/me/Danker/commands/RepartyCommand.java
  class RepartyCommand (line 19) | public class RepartyCommand extends CommandBase implements ICommand {
    method getCommandName (line 29) | @Override
    method getCommandUsage (line 34) | @Override
    method usage (line 39) | public static String usage(ICommandSender arg0) {
    method getCommandAliases (line 43) | @Override
    method getRequiredPermissionLevel (line 48) | @Override
    method processCommand (line 53) | @Override

FILE: src/main/java/me/Danker/commands/SkillTrackerCommand.java
  class SkillTrackerCommand (line 15) | public class SkillTrackerCommand extends CommandBase {
    method getCommandName (line 18) | @Override
    method getCommandUsage (line 23) | @Override
    method usage (line 28) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 32) | @Override
    method addTabCompletionOptions (line 37) | @Override
    method processCommand (line 45) | @Override

FILE: src/main/java/me/Danker/commands/StopLobbyCommand.java
  class StopLobbyCommand (line 15) | public class StopLobbyCommand extends CommandBase {
    method getCommandName (line 17) | @Override
    method getCommandAliases (line 22) | @Override
    method getCommandUsage (line 27) | @Override
    method usage (line 32) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 36) | @Override
    method processCommand (line 41) | @Override

FILE: src/main/java/me/Danker/commands/api/ArmourCommand.java
  class ArmourCommand (line 26) | public class ArmourCommand extends CommandBase {
    method getCommandName (line 28) | @Override
    method getCommandAliases (line 33) | @Override
    method getCommandUsage (line 38) | @Override
    method usage (line 43) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 47) | @Override
    method addTabCompletionOptions (line 52) | @Override
    method processCommand (line 60) | @Override

FILE: src/main/java/me/Danker/commands/api/BankCommand.java
  class BankCommand (line 21) | public class BankCommand extends CommandBase {
    method getCommandName (line 23) | @Override
    method getCommandAliases (line 28) | @Override
    method getCommandUsage (line 33) | @Override
    method usage (line 38) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 42) | @Override
    method addTabCompletionOptions (line 47) | @Override
    method processCommand (line 55) | @Override

FILE: src/main/java/me/Danker/commands/api/DungeonsCommand.java
  class DungeonsCommand (line 22) | public class DungeonsCommand extends CommandBase {
    method getCommandName (line 24) | @Override
    method getCommandUsage (line 29) | @Override
    method usage (line 34) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 38) | @Override
    method addTabCompletionOptions (line 43) | @Override
    method processCommand (line 51) | @Override
    method getClassLevel (line 175) | double getClassLevel(JsonObject obj, String dungeonClass) {

FILE: src/main/java/me/Danker/commands/api/FairySoulsCommand.java
  class FairySoulsCommand (line 17) | public class FairySoulsCommand extends CommandBase {
    method getCommandName (line 18) | @Override
    method getCommandUsage (line 23) | @Override
    method usage (line 28) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 32) | @Override
    method addTabCompletionOptions (line 37) | @Override
    method processCommand (line 45) | @Override

FILE: src/main/java/me/Danker/commands/api/GuildOfCommand.java
  class GuildOfCommand (line 20) | public class GuildOfCommand extends CommandBase {
    method getCommandName (line 22) | @Override
    method getCommandUsage (line 27) | @Override
    method usage (line 32) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 36) | @Override
    method addTabCompletionOptions (line 41) | @Override
    method processCommand (line 49) | @Override

FILE: src/main/java/me/Danker/commands/api/HOTMCommand.java
  class HOTMCommand (line 21) | public class HOTMCommand extends CommandBase {
    method getCommandName (line 23) | @Override
    method getCommandUsage (line 28) | @Override
    method usage (line 33) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 37) | @Override
    method addTabCompletionOptions (line 42) | @Override
    method processCommand (line 50) | @Override
    type Node (line 120) | enum Node {
      method Node (line 130) | Node(String name) {

FILE: src/main/java/me/Danker/commands/api/HOTMTreeCommand.java
  class HOTMTreeCommand (line 31) | public class HOTMTreeCommand extends CommandBase {
    method getCommandName (line 35) | @Override
    method getCommandUsage (line 40) | @Override
    method getRequiredPermissionLevel (line 45) | @Override
    method processCommand (line 50) | @Override
    method removeDoubleQuotes (line 124) | public static void removeDoubleQuotes(NBTTagCompound tagCompound) {
    method removeDoubleQuotes (line 142) | public static void removeDoubleQuotes(NBTTagList tagList) {

FILE: src/main/java/me/Danker/commands/api/InventoryCommand.java
  class InventoryCommand (line 33) | public class InventoryCommand extends CommandBase {
    method getCommandName (line 37) | @Override
    method getCommandAliases (line 42) | @Override
    method getCommandUsage (line 47) | @Override
    method usage (line 52) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 56) | @Override
    method addTabCompletionOptions (line 61) | @Override
    method processCommand (line 69) | @Override

FILE: src/main/java/me/Danker/commands/api/LobbyBankCommand.java
  class LobbyBankCommand (line 20) | public class LobbyBankCommand extends CommandBase {
    method getCommandName (line 24) | @Override
    method getCommandUsage (line 29) | @Override
    method usage (line 34) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 38) | @Override
    method processCommand (line 43) | @Override

FILE: src/main/java/me/Danker/commands/api/LobbySkillsCommand.java
  class LobbySkillsCommand (line 20) | public class LobbySkillsCommand extends CommandBase {
    method getCommandName (line 24) | @Override
    method getCommandUsage (line 29) | @Override
    method usage (line 34) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 38) | @Override
    method processCommand (line 43) | @Override

FILE: src/main/java/me/Danker/commands/api/PetsCommand.java
  class PetsCommand (line 22) | public class PetsCommand extends CommandBase {
    method petXpToLevel (line 24) | static int petXpToLevel(double xp, String rarity) {
    type Rarity (line 62) | enum Rarity {
      method nextRarity (line 70) | public Rarity nextRarity() {
      method getChatColor (line 75) | public EnumChatFormatting getChatColor() {
    class Pet (line 86) | static class Pet {
      method Pet (line 94) | Pet(JsonObject pet) {
      method getStringToAdd (line 112) | public String getStringToAdd() {
    method getCommandName (line 125) | @Override
    method getCommandUsage (line 130) | @Override
    method usage (line 135) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 139) | @Override
    method addTabCompletionOptions (line 144) | @Override
    method processCommand (line 152) | @Override

FILE: src/main/java/me/Danker/commands/api/PlayerCommand.java
  class PlayerCommand (line 20) | public class PlayerCommand extends CommandBase {
    method getCommandName (line 22) | @Override
    method getCommandUsage (line 27) | @Override
    method usage (line 32) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 36) | @Override
    method addTabCompletionOptions (line 41) | @Override
    method processCommand (line 49) | @Override

FILE: src/main/java/me/Danker/commands/api/SkillsCommand.java
  class SkillsCommand (line 22) | public class SkillsCommand extends CommandBase {
    method getCommandName (line 26) | @Override
    method getCommandUsage (line 31) | @Override
    method usage (line 36) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 40) | @Override
    method addTabCompletionOptions (line 45) | @Override
    method processCommand (line 53) | @Override
    method appendHover (line 247) | static ChatStyle appendHover(ChatComponentText component, String text) {
    method appendFormatted (line 254) | static ChatStyle appendFormatted(ChatComponentText component, String c...
    method getOverflowXP (line 258) | static double getOverflowXP(double xp, int limit) {

FILE: src/main/java/me/Danker/commands/api/SkyblockPlayersCommand.java
  class SkyblockPlayersCommand (line 18) | public class SkyblockPlayersCommand extends CommandBase {
    method getCommandName (line 22) | @Override
    method getCommandAliases (line 27) | @Override
    method getCommandUsage (line 32) | @Override
    method usage (line 37) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 41) | @Override
    method processCommand (line 46) | @Override
    method getPlayerCount (line 136) | static int getPlayerCount(String location, JsonObject obj) {
    method getOutput (line 141) | static String getOutput(String name, int amount, int total) {

FILE: src/main/java/me/Danker/commands/api/SlayerCommand.java
  class SlayerCommand (line 21) | public class SlayerCommand extends CommandBase {
    method getCommandName (line 23) | @Override
    method getCommandAliases (line 28) | @Override
    method getCommandUsage (line 33) | @Override
    method usage (line 38) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 42) | @Override
    method addTabCompletionOptions (line 47) | @Override
    method processCommand (line 55) | @Override

FILE: src/main/java/me/Danker/commands/api/TrophyFishCommand.java
  class TrophyFishCommand (line 19) | public class TrophyFishCommand extends CommandBase {
    method getCommandName (line 21) | @Override
    method getCommandUsage (line 26) | @Override
    method usage (line 31) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 35) | @Override
    method addTabCompletionOptions (line 40) | @Override
    method processCommand (line 48) | @Override

FILE: src/main/java/me/Danker/commands/api/WeightCommand.java
  class WeightCommand (line 21) | public class WeightCommand extends CommandBase {
    method getCommandName (line 36) | @Override
    method getCommandAliases (line 41) | @Override
    method getCommandUsage (line 46) | @Override
    method usage (line 51) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 55) | @Override
    method addTabCompletionOptions (line 60) | @Override
    method processCommand (line 70) | @Override

FILE: src/main/java/me/Danker/commands/loot/DisplayCommand.java
  class DisplayCommand (line 15) | public class DisplayCommand extends CommandBase {
    method getCommandName (line 17) | @Override
    method getCommandUsage (line 22) | @Override
    method usage (line 27) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 31) | @Override
    method addTabCompletionOptions (line 36) | @Override
    method processCommand (line 50) | @Override

FILE: src/main/java/me/Danker/commands/loot/ImportFishingCommand.java
  class ImportFishingCommand (line 16) | public class ImportFishingCommand extends CommandBase {
    method getCommandName (line 18) | @Override
    method getCommandUsage (line 23) | @Override
    method usage (line 28) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 32) | @Override
    method processCommand (line 37) | @Override
    method getSCFromApi (line 194) | static int getSCFromApi(JsonObject obj, String key) {

FILE: src/main/java/me/Danker/commands/loot/LootCommand.java
  class LootCommand (line 18) | public class LootCommand extends CommandBase {
    method getCommandName (line 20) | @Override
    method getCommandUsage (line 25) | @Override
    method usage (line 30) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 34) | @Override
    method addTabCompletionOptions (line 39) | @Override
    method processCommand (line 53) | @Override

FILE: src/main/java/me/Danker/commands/loot/ResetLootCommand.java
  class ResetLootCommand (line 17) | public class ResetLootCommand extends CommandBase {
    method getCommandName (line 22) | @Override
    method getCommandUsage (line 27) | @Override
    method usage (line 32) | public static String usage(ICommandSender arg0) {
    method getRequiredPermissionLevel (line 36) | @Override
    method addTabCompletionOptions (line 41) | @Override
    method processCommand (line 52) | @Override
    method resetZombie (line 133) | static void resetZombie() {
    method resetSpider (line 153) | static void resetSpider() {
    method resetWolf (line 170) | static void resetWolf() {
    method resetEnderman (line 188) | static void resetEnderman() {
    method resetBlaze (line 216) | static void resetBlaze() {
    method resetVampire (line 245) | static void resetVampire() {
    method resetFishing (line 260) | static void resetFishing() {
    method resetMythological (line 325) | static void resetMythological() {
    method resetCatacombs (line 340) | static void resetCatacombs() {

FILE: src/main/java/me/Danker/commands/warp/WarpCommand.java
  class WarpCommand (line 9) | public class WarpCommand extends CommandBase {
    method WarpCommand (line 16) | public WarpCommand(String name) {
    method WarpCommand (line 25) | public WarpCommand(String name, String destination) {
    method WarpCommand (line 36) | public WarpCommand(String name, String destination, boolean custom_com...
    method getCommandName (line 45) | @Override
    method getCommandUsage (line 55) | @Override
    method getRequiredPermissionLevel (line 60) | @Override
    method processCommand (line 71) | @Override

FILE: src/main/java/me/Danker/commands/warp/WarpCommandHandler.java
  class WarpCommandHandler (line 8) | public class WarpCommandHandler {
    method WarpCommandHandler (line 15) | public WarpCommandHandler() {
    method getCommands (line 24) | public List<WarpCommand> getCommands() {
    method registerCommand (line 32) | public void registerCommand(WarpCommand warpCommand) {
    method getCommand (line 42) | public WarpCommand getCommand(String name) {
    method getCommand (line 56) | public WarpCommand getCommand(Class<? extends WarpCommand> clazz) {
    method registerCommands (line 68) | private void registerCommands() {

FILE: src/main/java/me/Danker/config/CfgConfig.java
  class CfgConfig (line 11) | public class CfgConfig {
    method init (line 15) | public static void init() {
    method getInt (line 26) | public static int getInt(String category, String key) {
    method getDouble (line 39) | public static double getDouble(String category, String key) {
    method getString (line 52) | public static String getString(String category, String key) {
    method getBoolean (line 65) | public static boolean getBoolean(String category, String key) {
    method writeIntConfig (line 78) | public static void writeIntConfig(String category, String key, int val...
    method writeDoubleConfig (line 89) | public static void writeDoubleConfig(String category, String key, doub...
    method writeStringConfig (line 100) | public static void writeStringConfig(String category, String key, Stri...
    method writeBooleanConfig (line 111) | public static void writeBooleanConfig(String category, String key, boo...
    method hasKey (line 122) | public static boolean hasKey(String category, String key) {
    method deleteCategory (line 134) | public static void deleteCategory(String category) {
    method initInt (line 146) | public static int initInt(String category, String key, int defaultValu...
    method initDouble (line 155) | public static double initDouble(String category, String key, double de...
    method initString (line 164) | public static String initString(String category, String key, String de...
    method initBoolean (line 173) | public static boolean initBoolean(String category, String key, boolean...
    method reloadConfig (line 182) | public static void reloadConfig() {

FILE: src/main/java/me/Danker/config/JsonConfig.java
  class JsonConfig (line 17) | public class JsonConfig {
    method createNewJsonObject (line 19) | public static void createNewJsonObject(String file) throws IOException {
    method createNewJsonArray (line 25) | public static void createNewJsonArray(String file) throws IOException {
    method initJsonObject (line 31) | public static JsonObject initJsonObject(String file) throws IOException {
    method initJsonArray (line 43) | public static <T> Object[] initJsonArray(String file, Class<T> clazz) ...
    method reloadConfig (line 56) | public static void reloadConfig() {
    method transferFile (line 91) | public static void transferFile(String file) throws IOException {

FILE: src/main/java/me/Danker/config/ModConfig.java
  class ModConfig (line 35) | public class ModConfig extends Config {
    method ModConfig (line 40) | public ModConfig() {
    method getColour (line 109) | public static String getColour(int index) {
    method getDelimiter (line 113) | public static String getDelimiter() {
    method getDisplay (line 117) | public static String getDisplay() {
    method toDisplay (line 121) | public static int toDisplay(String value) {

FILE: src/main/java/me/Danker/containers/GuiChestDynamic.java
  class GuiChestDynamic (line 11) | public class GuiChestDynamic extends GuiContainer {
    method GuiChestDynamic (line 17) | public GuiChestDynamic(IInventory upperInv, IInventory lowerInv, Resou...
    method drawGuiContainerForegroundLayer (line 30) | protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
    method drawGuiContainerBackgroundLayer (line 36) | protected void drawGuiContainerBackgroundLayer(float partialTicks, int...

FILE: src/main/java/me/Danker/events/ChestSlotClickedEvent.java
  class ChestSlotClickedEvent (line 10) | @Cancelable
    method ChestSlotClickedEvent (line 18) | public ChestSlotClickedEvent(GuiChest chest, IInventory inventory, Str...

FILE: src/main/java/me/Danker/events/GuiChestBackgroundDrawnEvent.java
  class GuiChestBackgroundDrawnEvent (line 9) | public class GuiChestBackgroundDrawnEvent extends Event {
    method GuiChestBackgroundDrawnEvent (line 15) | public GuiChestBackgroundDrawnEvent(GuiChest chest, String displayName...

FILE: src/main/java/me/Danker/events/ModInitEvent.java
  class ModInitEvent (line 5) | public class ModInitEvent extends Event {
    method ModInitEvent (line 9) | public ModInitEvent(String configDirectory) {

FILE: src/main/java/me/Danker/events/PacketReadEvent.java
  class PacketReadEvent (line 7) | @Cancelable
    method PacketReadEvent (line 12) | public PacketReadEvent(Packet packet) {

FILE: src/main/java/me/Danker/events/PacketWriteEvent.java
  class PacketWriteEvent (line 7) | @Cancelable
    method PacketWriteEvent (line 12) | public PacketWriteEvent(Packet packet) {

FILE: src/main/java/me/Danker/events/PostConfigInitEvent.java
  class PostConfigInitEvent (line 5) | public class PostConfigInitEvent extends Event {
    method PostConfigInitEvent (line 9) | public PostConfigInitEvent(String configDirectory) {

FILE: src/main/java/me/Danker/events/RenderOverlayEvent.java
  class RenderOverlayEvent (line 5) | public class RenderOverlayEvent extends Event {

FILE: src/main/java/me/Danker/events/SlayerLootDropEvent.java
  class SlayerLootDropEvent (line 5) | public class SlayerLootDropEvent extends Event {
    method SlayerLootDropEvent (line 10) | public SlayerLootDropEvent(String drop, int amount) {

FILE: src/main/java/me/Danker/features/AbilityCooldowns.java
  class AbilityCooldowns (line 27) | public class AbilityCooldowns {
    method onChat (line 32) | @SubscribeEvent(priority = EventPriority.LOW)
    method onTick (line 59) | @SubscribeEvent
    method onWorldChange (line 84) | @SubscribeEvent
    class Ability (line 90) | public static class Ability {
      method Ability (line 95) | public Ability(String ability, double cooldown) {
      method getTimer (line 100) | public String getTimer() {
      method getCooldown (line 104) | public double getCooldown() {
    class AbilityCooldownHud (line 110) | public static class AbilityCooldownHud extends Hud {
      method preRender (line 117) | @Override
      method draw (line 124) | @Override
      method getWidth (line 136) | @Override
      method getHeight (line 141) | @Override
      method getText (line 146) | String getText() {

FILE: src/main/java/me/Danker/features/Alerts.java
  class Alerts (line 21) | public class Alerts {
    method init (line 27) | @SubscribeEvent
    method getRegexForAlert (line 32) | public Pattern getRegexForAlert(Alert alert) {
    method onChat (line 36) | @SubscribeEvent
    method save (line 103) | public static void save() {
    class Alert (line 119) | public static class Alert {
      method Alert (line 128) | public Alert(String mode, String location, String message, String al...
      method toggle (line 137) | public void toggle() {
      method toggleDesktop (line 141) | public void toggleDesktop() {

FILE: src/main/java/me/Danker/features/AnnounceVanquishers.java
  class AnnounceVanquishers (line 13) | public class AnnounceVanquishers {
    method onChat (line 15) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/ArachneESP.java
  class ArachneESP (line 23) | public class ArachneESP {
    method onWorldChange (line 28) | @SubscribeEvent
    method onChat (line 33) | @SubscribeEvent
    method onWorldRender (line 54) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/AutoAcceptReparty.java
  class AutoAcceptReparty (line 9) | public class AutoAcceptReparty {
    method onChat (line 14) | @SubscribeEvent(receiveCanceled = true)

FILE: src/main/java/me/Danker/features/AutoDisplay.java
  class AutoDisplay (line 18) | public class AutoDisplay {
    method onTick (line 22) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/AutoJoinSkyblock.java
  class AutoJoinSkyblock (line 10) | public class AutoJoinSkyblock {
    method onConnect (line 14) | @SubscribeEvent
    method onDisconnect (line 36) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/AutoSwapToPickBlock.java
  class AutoSwapToPickBlock (line 14) | public class AutoSwapToPickBlock {
    method onGuiOpen (line 19) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/BazaarTimeToFill.java
  class BazaarTimeToFill (line 22) | public class BazaarTimeToFill {
    method onSlotClick (line 28) | @SubscribeEvent
    method onTick (line 53) | @SubscribeEvent
    method onGuiRender (line 93) | @SubscribeEvent
    method getAmountFromLine (line 104) | static double getAmountFromLine(String line) {
    method getTextToDisplay (line 128) | static String getTextToDisplay(double amount, double volume) {

FILE: src/main/java/me/Danker/features/BlockPlacingFlowers.java
  class BlockPlacingFlowers (line 15) | public class BlockPlacingFlowers {
    method onInteract (line 32) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/BlockWrongSlayer.java
  class BlockWrongSlayer (line 10) | public class BlockWrongSlayer {
    method onSlotClick (line 27) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/BonzoMaskTimer.java
  class BonzoMaskTimer (line 24) | public class BonzoMaskTimer {
    method onWorldChange (line 29) | @SubscribeEvent
    method onChat (line 34) | @SubscribeEvent
    class BonzoTimerHud (line 60) | public static class BonzoTimerHud extends Hud {
      method draw (line 71) | @Override
      method getWidth (line 106) | @Override
      method getHeight (line 111) | @Override
      method getText (line 116) | String getText() {

FILE: src/main/java/me/Danker/features/CakeTimer.java
  class CakeTimer (line 24) | public class CakeTimer {
    method onChat (line 29) | @SubscribeEvent
    class CakeTimerHud (line 54) | public static class CakeTimerHud extends Hud {
      method draw (line 65) | @Override
      method getWidth (line 95) | @Override
      method getHeight (line 100) | @Override
      method getText (line 105) | String getText() {

FILE: src/main/java/me/Danker/features/ChatAliases.java
  class ChatAliases (line 16) | public class ChatAliases {
    method init (line 21) | @SubscribeEvent
    method onPacketWrite (line 26) | @SubscribeEvent
    method save (line 47) | public static void save() {
    class Alias (line 56) | public static class Alias {
      method Alias (line 63) | public Alias(String text, String alias, boolean toggled, boolean all...
      method toggle (line 70) | public void toggle() {
      method toggleInCommand (line 74) | public void toggleInCommand() {

FILE: src/main/java/me/Danker/features/ColouredNames.java
  class ColouredNames (line 32) | public class ColouredNames {
    method onChat (line 40) | @SubscribeEvent
    method onTooltip (line 53) | @SubscribeEvent
    method onRenderNametag (line 67) | @SubscribeEvent
    method onRenderLiving (line 76) | @SubscribeEvent(priority = EventPriority.LOW)
    method onPacketRead (line 103) | @SubscribeEvent
    method onWorldChange (line 128) | @SubscribeEvent
    method replaceName (line 134) | public static String replaceName(String text, String name, String colo...
    method replaceChat (line 160) | public static IChatComponent replaceChat(IChatComponent component, Str...
    method getColourFromName (line 174) | public static String getColourFromName(String name) {

FILE: src/main/java/me/Danker/features/CoordsOptimizer.java
  class CoordsOptimizer (line 11) | public class CoordsOptimizer {
    method CoordsOptimizer (line 41) | public CoordsOptimizer(ArrayList<CrystalHollowWaypoints.Waypoint> wayp...
    method getNumbered (line 56) | public static ArrayList<CrystalHollowWaypoints.Waypoint> getNumbered(A...
    method solve (line 69) | public int[] solve() {
    method setupAnts (line 83) | private void setupAnts() {
    method moveAnts (line 93) | private void moveAnts() {
    method selectNextCity (line 102) | private int selectNextCity(Ant ant) {
    method calculateProbabilities (line 122) | public void calculateProbabilities(Ant ant) {
    method updateTrails (line 141) | private void updateTrails() {
    method updateBest (line 157) | private void updateBest() {
    method clearTrails (line 171) | private void clearTrails() {
    method getOptimizedPath (line 179) | public ArrayList<CrystalHollowWaypoints.Waypoint> getOptimizedPath() {
    method getDistance (line 200) | private static double getDistance(CrystalHollowWaypoints.Waypoint wayp...
    method getAdjacency (line 204) | private double[][] getAdjacency() {
    method getLength (line 219) | public static double getLength(ArrayList<CrystalHollowWaypoints.Waypoi...
    class Ant (line 232) | private static class Ant {
      method Ant (line 238) | public Ant(int tourSize) {
      method visitCity (line 244) | public void visitCity(int currentIndex, int city) {
      method visited (line 249) | public boolean visited(int i) {
      method trailLength (line 253) | public double trailLength(double[][] graph) {
      method clear (line 261) | public void clear() {

FILE: src/main/java/me/Danker/features/CrimsonMinibossTimer.java
  class CrimsonMinibossTimer (line 20) | public class CrimsonMinibossTimer {
    method onWorldChange (line 28) | @SubscribeEvent
    method onChat (line 37) | @SubscribeEvent
    class MinibossTimerHud (line 58) | public static class MinibossTimerHud extends Hud {
      method draw (line 85) | @Override
      method getWidth (line 97) | @Override
      method getHeight (line 102) | @Override
      method getText (line 107) | String getText() {
      method getTime (line 116) | String getTime(double timeNow, double bossTime) {

FILE: src/main/java/me/Danker/features/CrystalHollowWaypoints.java
  class CrystalHollowWaypoints (line 38) | public class CrystalHollowWaypoints {
    method onTick (line 56) | @SubscribeEvent
    method onChat (line 132) | @SubscribeEvent
    method onKey (line 223) | public static void onKey() {
    method onWorldRender (line 232) | @SubscribeEvent
    method onWorldChange (line 241) | @SubscribeEvent
    method addWaypoint (line 257) | public static void addWaypoint(String name, String x, String y, String...
    method addDSMWaypoints (line 272) | public static void addDSMWaypoints(String list, boolean auto, boolean ...
    method addSTWaypoints (line 299) | public static void addSTWaypoints(String list) {
    method addSoopyWaypoints (line 331) | public static void addSoopyWaypoints(String list) {
    method copyToClipboard (line 352) | public static void copyToClipboard() {
    method importWaypoints (line 365) | public static void importWaypoints() {
    method optimize (line 398) | public static void optimize() {
    class Waypoint (line 435) | public static class Waypoint {
      method Waypoint (line 441) | public Waypoint(String location, BlockPos pos) {
      method getFormattedWaypoint (line 447) | public String getFormattedWaypoint() {
      method getDistance (line 451) | public String getDistance(EntityPlayer player) {
      method getPos (line 455) | public String getPos() {
      method toggle (line 459) | public void toggle() {

FILE: src/main/java/me/Danker/features/CustomMusic.java
  class CustomMusic (line 28) | public class CustomMusic {
    method onWorldChange (line 56) | @SubscribeEvent
    method onTick (line 61) | @SubscribeEvent(priority = EventPriority.LOW)
    method onChat (line 157) | @SubscribeEvent(receiveCanceled = true)
    method onSound (line 202) | @SubscribeEvent
    method postConfigInit (line 209) | @SubscribeEvent
    method init (line 214) | public static void init(String configDirectory) {
    method reset (line 244) | public static void reset() {
    class Song (line 269) | public static class Song {
      method Song (line 275) | public Song(File directory, String songName, int volume) {
      method start (line 289) | public void start() throws UnsupportedAudioFileException, LineUnavai...
      method stop (line 318) | public void stop() {
      method shuffle (line 326) | public void shuffle() throws LineUnavailableException, UnsupportedAu...
      method setVolume (line 335) | public boolean setVolume(int volume) {
      method hasSongs (line 354) | public boolean hasSongs() {

FILE: src/main/java/me/Danker/features/Debug.java
  class Debug (line 12) | public class Debug {
    method onPacketRead (line 14) | @SubscribeEvent
    method onPacketWrite (line 27) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/DisableMovement.java
  class DisableMovement (line 14) | public class DisableMovement {
    method onKey (line 22) | @SubscribeEvent
    method onWorldUnload (line 42) | @SubscribeEvent
    method onDisableMouse (line 55) | public static void onDisableMouse() {
    method onDisableWS (line 73) | public static void onDisableWS() {
    method onDisableAD (line 84) | public static void onDisableAD() {

FILE: src/main/java/me/Danker/features/DrillFix.java
  class DrillFix (line 14) | public class DrillFix {
    method onPacketRead (line 17) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/DungeonScore.java
  class DungeonScore (line 24) | public class DungeonScore {
    method onWorldChange (line 34) | @SubscribeEvent
    method onChat (line 45) | @SubscribeEvent(receiveCanceled = true)
    method onTick (line 60) | @SubscribeEvent
    class DungeonScoreHud (line 162) | public static class DungeonScoreHud extends Hud {
      method draw (line 180) | @Override
      method getWidth (line 224) | @Override
      method getHeight (line 229) | @Override

FILE: src/main/java/me/Danker/features/DungeonTimer.java
  class DungeonTimer (line 37) | public class DungeonTimer {
    method createEmpty (line 48) | public static JsonObject createEmpty() {
    method createSplit (line 101) | public static JsonObject createSplit(String name, String triggerRegex) {
    method getBasicSplits (line 112) | public static JsonArray getBasicSplits(String entryName, String bossNa...
    method getEndSplit (line 122) | public static JsonObject getEndSplit(String name) {
    method init (line 126) | @SubscribeEvent
    method postConfigInit (line 131) | @SubscribeEvent
    method onChat (line 137) | @SubscribeEvent(receiveCanceled = true)
    method onTick (line 164) | @SubscribeEvent
    method onWorldChange (line 180) | @SubscribeEvent
    method save (line 188) | public static void save() {
    class ActiveTimer (line 197) | static class ActiveTimer {
      method ActiveTimer (line 204) | public ActiveTimer(JsonArray floor) {
      method isTimerDone (line 220) | public boolean isTimerDone() {
      method getCurrentSplit (line 224) | public Split getCurrentSplit() {
      method getFirstSplit (line 228) | public Split getFirstSplit() {
      method split (line 232) | public void split() {
      method getSumOfBest (line 277) | public String getSumOfBest() {
      method getBestPossibleTime (line 290) | public String getBestPossibleTime() {
    class Split (line 315) | static class Split {
      method Split (line 325) | public Split(JsonObject split) {
      method getTime (line 333) | public double getTime() {
      method getColouredTime (line 339) | public String getColouredTime() {
      method getPBDiff (line 349) | public String getPBDiff() {
      method getFullText (line 358) | public String getFullText() {
    class DungeonTimerHud (line 366) | public static class DungeonTimerHud extends Hud {
      method draw (line 435) | @Override
      method getWidth (line 480) | @Override
      method getHeight (line 485) | @Override
      method getExampleText (line 490) | String getExampleText() {
      method getExampleNums (line 518) | String getExampleNums() {

FILE: src/main/java/me/Danker/features/EndOfFarmAlert.java
  class EndOfFarmAlert (line 13) | public class EndOfFarmAlert {
    method onTick (line 18) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/ExpertiseLore.java
  class ExpertiseLore (line 13) | public class ExpertiseLore {
    method onTooltip (line 15) | @SubscribeEvent(priority = EventPriority.HIGHEST)

FILE: src/main/java/me/Danker/features/FasterMaddoxCalling.java
  class FasterMaddoxCalling (line 18) | public class FasterMaddoxCalling {
    method onChat (line 23) | @SubscribeEvent
    method onMouseInputPost (line 42) | @SubscribeEvent
    method onKey (line 52) | public static void onKey() {

FILE: src/main/java/me/Danker/features/FilletMagmafish.java
  class FilletMagmafish (line 22) | public class FilletMagmafish {
    method init (line 27) | @SubscribeEvent
    method onGuiOpen (line 103) | @SubscribeEvent
    method onGuiScreenRender (line 123) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/FirePillarDisplay.java
  class FirePillarDisplay (line 22) | public class FirePillarDisplay {
    method onTick (line 26) | @SubscribeEvent
    class FirePillarHud (line 47) | public static class FirePillarHud extends Hud {
      method draw (line 52) | @Override
      method getWidth (line 64) | @Override
      method getHeight (line 69) | @Override
      method getText (line 74) | String getText() {

FILE: src/main/java/me/Danker/features/FishingSpawnAlerts.java
  class FishingSpawnAlerts (line 18) | public class FishingSpawnAlerts {
    method onTick (line 24) | @SubscribeEvent
    method onWorldChange (line 60) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/GemstonesLore.java
  class GemstonesLore (line 19) | public class GemstonesLore {
    method init (line 23) | @SubscribeEvent
    method onTooltip (line 39) | @SubscribeEvent(priority = EventPriority.HIGHEST)

FILE: src/main/java/me/Danker/features/GetPearlFromSack.java
  class GetPearlFromSack (line 9) | public class GetPearlFromSack {
    method onKey (line 11) | public static void onKey() {

FILE: src/main/java/me/Danker/features/GiantHPDisplay.java
  class GiantHPDisplay (line 24) | public class GiantHPDisplay {
    method onTick (line 29) | @SubscribeEvent
    class GiantHPHud (line 63) | public static class GiantHPHud extends Hud {
      method draw (line 71) | @Override
      method getWidth (line 83) | @Override
      method getHeight (line 88) | @Override
      method getText (line 93) | String getText() {

FILE: src/main/java/me/Danker/features/GoldenEnchants.java
  class GoldenEnchants (line 14) | public class GoldenEnchants {
    method init (line 19) | @SubscribeEvent
    method onTooltip (line 58) | @SubscribeEvent(priority = EventPriority.HIGHEST)

FILE: src/main/java/me/Danker/features/GolemSpawningAlert.java
  class GolemSpawningAlert (line 20) | public class GolemSpawningAlert {
    method onChat (line 25) | @SubscribeEvent
    class GolemTimerHud (line 40) | public static class GolemTimerHud extends Hud {
      method draw (line 51) | @Override
      method getWidth (line 83) | @Override
      method getHeight (line 88) | @Override
      method getText (line 93) | String getText() {

FILE: src/main/java/me/Danker/features/GpartyNotifications.java
  class GpartyNotifications (line 11) | public class GpartyNotifications {
    method onChat (line 13) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/HidePetCandy.java
  class HidePetCandy (line 8) | public class HidePetCandy {
    method onTooltip (line 10) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/HidePlayerArmour.java
  class HidePlayerArmour (line 15) | public class HidePlayerArmour {
    method onRenderLivingPre (line 19) | @SubscribeEvent
    method isNPC (line 34) | public boolean isNPC(EntityPlayer player) {
    method shouldHideArmor (line 38) | public boolean shouldHideArmor(RenderLivingEvent<EntityLivingBase> eve...
    method onRenderLivingPost (line 45) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/HideTooltipsInExperiments.java
  class HideTooltipsInExperiments (line 14) | public class HideTooltipsInExperiments {
    method onTooltipLow (line 16) | @SubscribeEvent(priority = EventPriority.LOW)

FILE: src/main/java/me/Danker/features/HideTooltipsMisc.java
  class HideTooltipsMisc (line 14) | public class HideTooltipsMisc {
    method onTooltipLow (line 16) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/HighlightCommissions.java
  class HighlightCommissions (line 13) | public class HighlightCommissions {
    method onGuiRender (line 15) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/HighlightFilledOrders.java
  class HighlightFilledOrders (line 12) | public class HighlightFilledOrders {
    method onGuiRender (line 14) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/HighlightPests.java
  class HighlightPests (line 13) | public class HighlightPests {
    method onGuiRender (line 15) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/HighlightSkeletonMasters.java
  class HighlightSkeletonMasters (line 17) | public class HighlightSkeletonMasters {
    method onRenderEntity (line 21) | @SubscribeEvent
    method onWorldRender (line 31) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/KuudraNotifications.java
  class KuudraNotifications (line 13) | public class KuudraNotifications {
    method onChat (line 15) | @SubscribeEvent(receiveCanceled = true)
    method onPacketRead (line 35) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/LocrawSpamFix.java
  class LocrawSpamFix (line 8) | public class LocrawSpamFix {
    method onPacketWrite (line 12) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/LowHealthNotifications.java
  class LowHealthNotifications (line 15) | public class LowHealthNotifications {
    method onTick (line 17) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/MeterTracker.java
  class MeterTracker (line 35) | public class MeterTracker {
    method createEmpty (line 40) | public static JsonObject createEmpty() {
    method init (line 66) | @SubscribeEvent
    method postConfigInit (line 71) | @SubscribeEvent
    method onChat (line 77) | @SubscribeEvent
    method onTick (line 140) | @SubscribeEvent
    method onSlotClick (line 195) | @SubscribeEvent
    method save (line 229) | public static void save() {
    method getProgressFromLine (line 238) | static int getProgressFromLine(String line) {
    method getGoalFromLine (line 246) | static int getGoalFromLine(String line) {

FILE: src/main/java/me/Danker/features/MinionLastCollected.java
  class MinionLastCollected (line 27) | public class MinionLastCollected {
    method init (line 33) | @SubscribeEvent
    method onPacketWrite (line 38) | @SubscribeEvent
    method onSlotClick (line 55) | @SubscribeEvent
    method onWorldRender (line 72) | @SubscribeEvent
    method isAMinion (line 82) | public boolean isAMinion(Entity entity) {
    method isArmour (line 98) | public boolean isArmour(Item item) {
    method getMinionFromPos (line 103) | public Minion getMinionFromPos(BlockPos pos) {
    method minionExistsAtPos (line 110) | public boolean minionExistsAtPos(BlockPos pos) {
    method save (line 116) | public static void save() {
    class Minion (line 125) | public static class Minion {
      method Minion (line 130) | public Minion(BlockPos pos) {
      method getTimeCollected (line 135) | public String getTimeCollected() {
      method collectNow (line 143) | public void collectNow() {

FILE: src/main/java/me/Danker/features/NecronNotifications.java
  class NecronNotifications (line 19) | public class NecronNotifications {
    method onChat (line 21) | @SubscribeEvent(receiveCanceled = true)

FILE: src/main/java/me/Danker/features/NoF3Coords.java
  class NoF3Coords (line 13) | public class NoF3Coords extends Hud {
    method draw (line 24) | @Override
    method getWidth (line 36) | @Override
    method getHeight (line 41) | @Override
    method getText (line 46) | String getText() {

FILE: src/main/java/me/Danker/features/NotifySlayerSlain.java
  class NotifySlayerSlain (line 21) | public class NotifySlayerSlain {
    method onInteract (line 23) | @SubscribeEvent
    method onArrowNock (line 57) | @SubscribeEvent
    method onAttackingEntity (line 73) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/PetColours.java
  class PetColours (line 13) | public class PetColours {
    method onGuiRender (line 17) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/PowderTracker.java
  class PowderTracker (line 28) | public class PowderTracker {
    method onTick (line 38) | @SubscribeEvent
    method onKey (line 67) | public static void onKey() {
    method reset (line 83) | public static void reset() {
    class PowderTrackerHud (line 93) | public static class PowderTrackerHud extends Hud {
      method draw (line 154) | @Override
      method getWidth (line 168) | @Override
      method getHeight (line 173) | @Override
      method getText (line 178) | String getText() {

FILE: src/main/java/me/Danker/features/Reparty.java
  class Reparty (line 16) | public class Reparty {
    method onChat (line 18) | @SubscribeEvent(priority = EventPriority.HIGHEST)

FILE: src/main/java/me/Danker/features/Skill50Display.java
  class Skill50Display (line 22) | public class Skill50Display {
    method onChat (line 28) | @SubscribeEvent(priority = EventPriority.HIGHEST)
    method onTick (line 111) | @SubscribeEvent
    class MaxSkillHud (line 123) | public static class MaxSkillHud extends Hud {
      method draw (line 141) | @Override
      method getWidth (line 160) | @Override
      method getHeight (line 165) | @Override

FILE: src/main/java/me/Danker/features/SkillTracker.java
  class SkillTracker (line 30) | public class SkillTracker {
    method onChat (line 59) | @SubscribeEvent(priority = EventPriority.HIGHEST)
    method onKey (line 235) | public static void onKey() {
    method onGuiOpen (line 251) | @SubscribeEvent
    method addXP (line 258) | static double addXP(double totalXP, double skillXP) {
    class SkillTrackerHud (line 271) | public static class SkillTrackerHud extends Hud {
      method draw (line 331) | @Override
      method getWidth (line 350) | @Override
      method getHeight (line 355) | @Override
      method getText (line 360) | String getText() {

FILE: src/main/java/me/Danker/features/SlayerESP.java
  class SlayerESP (line 24) | public class SlayerESP {
    method onWorldChange (line 32) | @SubscribeEvent
    method onTick (line 41) | @SubscribeEvent
    method onChat (line 77) | @SubscribeEvent
    method onWorldRender (line 95) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/SpamHider.java
  class SpamHider (line 9) | public class SpamHider {
    method onChat (line 11) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/SpiritBearAlert.java
  class SpiritBearAlert (line 10) | public class SpiritBearAlert {
    method onChat (line 12) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/SpiritBootsFix.java
  class SpiritBootsFix (line 14) | public class SpiritBootsFix {
    method onPacketRead (line 18) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/SpiritMaskTimer.java
  class SpiritMaskTimer (line 24) | public class SpiritMaskTimer {
    method onWorldChange (line 29) | @SubscribeEvent
    method onChat (line 34) | @SubscribeEvent
    class SpiritTimerHud (line 59) | public static class SpiritTimerHud extends Hud {
      method draw (line 70) | @Override
      method getWidth (line 105) | @Override
      method getHeight (line 110) | @Override
      method getText (line 115) | String getText() {

FILE: src/main/java/me/Danker/features/StopSalvagingStarredItems.java
  class StopSalvagingStarredItems (line 10) | public class StopSalvagingStarredItems {
    method onSlotClick (line 12) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/TetherDisplay.java
  class TetherDisplay (line 23) | public class TetherDisplay {
    method onTick (line 27) | @SubscribeEvent
    class TetherDisplayHud (line 48) | public static class TetherDisplayHud extends Hud {
      method draw (line 57) | @Override
      method getWidth (line 69) | @Override
      method getHeight (line 74) | @Override
      method getText (line 79) | String getText() {

FILE: src/main/java/me/Danker/features/UpdateChecker.java
  class UpdateChecker (line 16) | public class UpdateChecker {
    method onJoin (line 20) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/WatcherReadyAlert.java
  class WatcherReadyAlert (line 10) | public class WatcherReadyAlert {
    method onChat (line 12) | @SubscribeEvent(receiveCanceled = true)

FILE: src/main/java/me/Danker/features/loot/BlazeTracker.java
  class BlazeTracker (line 12) | public class BlazeTracker {
    method onLootDrop (line 66) | @SubscribeEvent
    method onChat (line 196) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/loot/CatacombsTracker.java
  class CatacombsTracker (line 16) | public class CatacombsTracker {
    method onChat (line 228) | @SubscribeEvent
    method onSlotClick (line 663) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/loot/EndermanTracker.java
  class EndermanTracker (line 12) | public class EndermanTracker {
    method onLootDrop (line 62) | @SubscribeEvent
    method onChat (line 186) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/loot/FishingTracker.java
  class FishingTracker (line 10) | public class FishingTracker {
    method onChat (line 141) | @SubscribeEvent(receiveCanceled = true)
    method increaseSeaCreatures (line 417) | public void increaseSeaCreatures() {
    method getAmount (line 453) | public int getAmount() {

FILE: src/main/java/me/Danker/features/loot/GhostTracker.java
  class GhostTracker (line 9) | public class GhostTracker {
    method onChat (line 23) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/loot/LootDisplay.java
  class LootDisplay (line 21) | public class LootDisplay extends Hud {
    method draw (line 136) | @Override
    method getWidth (line 1827) | @Override
    method getHeight (line 1832) | @Override

FILE: src/main/java/me/Danker/features/loot/LootTracker.java
  class LootTracker (line 20) | public class LootTracker {
    method onChat (line 29) | @SubscribeEvent
    method onPacketRead (line 50) | @SubscribeEvent
    method getAmountfromMessage (line 102) | public static int getAmountfromMessage(String message) {

FILE: src/main/java/me/Danker/features/loot/MythologicalTracker.java
  class MythologicalTracker (line 13) | public class MythologicalTracker {
    method onChat (line 37) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/loot/SpiderTracker.java
  class SpiderTracker (line 12) | public class SpiderTracker {
    method onLootDrop (line 40) | @SubscribeEvent
    method onChat (line 101) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/loot/TrophyFishTracker.java
  class TrophyFishTracker (line 22) | public class TrophyFishTracker {
    method createEmpty (line 29) | public static JsonObject createEmpty() {
    method init (line 60) | @SubscribeEvent
    method postConfigInit (line 65) | @SubscribeEvent
    method onChat (line 72) | @SubscribeEvent(receiveCanceled = true)
    method save (line 99) | public static void save() {
    method getTierCount (line 108) | public static String getTierCount(JsonObject obj, String name) {
    method getSum (line 122) | public static int getSum(JsonObject obj, String name) {
    method drawCompletion (line 130) | public static void drawCompletion(JsonObject obj, String name, int x, ...

FILE: src/main/java/me/Danker/features/loot/VampireTracker.java
  class VampireTracker (line 11) | public class VampireTracker {
    method onLootDrop (line 35) | @SubscribeEvent
    method onChat (line 72) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/loot/WolfTracker.java
  class WolfTracker (line 12) | public class WolfTracker {
    method onLootDrop (line 43) | @SubscribeEvent
    method onChat (line 113) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/loot/ZombieTracker.java
  class ZombieTracker (line 12) | public class ZombieTracker {
    method onLootDrop (line 50) | @SubscribeEvent
    method onChat (line 140) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/ArrowTerminalSolver.java
  class ArrowTerminalSolver (line 17) | public class ArrowTerminalSolver {
    method onEntityInteract (line 19) | @SubscribeEvent
    method onPacket (line 35) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/BlazeSolver.java
  class BlazeSolver (line 21) | public class BlazeSolver {
    method onWorldChange (line 28) | @SubscribeEvent
    method onTick (line 36) | @SubscribeEvent
    method onWorldRender (line 98) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/BlockWrongTerminalClicks.java
  class BlockWrongTerminalClicks (line 15) | public class BlockWrongTerminalClicks {
    method onSlotClick (line 17) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/BoulderSolver.java
  class BoulderSolver (line 26) | public class BoulderSolver {
    method onWorldChange (line 35) | @SubscribeEvent
    method onTick (line 40) | @SubscribeEvent
    method onWorldRender (line 141) | @SubscribeEvent
    method onInteract (line 169) | @SubscribeEvent
    method reset (line 179) | static void reset() {

FILE: src/main/java/me/Danker/features/puzzlesolvers/ChronomatronSolver.java
  class ChronomatronSolver (line 23) | public class ChronomatronSolver {
    method onSlotClick (line 29) | @SubscribeEvent
    method onGuiRender (line 56) | @SubscribeEvent
    method onGuiOpen (line 102) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/ClickInOrderSolver.java
  class ClickInOrderSolver (line 24) | public class ClickInOrderSolver {
    method onTooltipLow (line 29) | @SubscribeEvent(priority = EventPriority.LOW)
    method onTick (line 48) | @SubscribeEvent
    method onGuiRender (line 87) | @SubscribeEvent
    method onGuiOpen (line 101) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/CreeperSolver.java
  class CreeperSolver (line 23) | public class CreeperSolver {
    method onTick (line 31) | @SubscribeEvent
    method onWorldRender (line 78) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/IceWalkSolver.java
  class IceWalkSolver (line 25) | public class IceWalkSolver {
    method onWorldChange (line 35) | @SubscribeEvent
    method onTick (line 40) | @SubscribeEvent
    method onWorldRender (line 190) | @SubscribeEvent
    method reset (line 279) | static void reset() {

FILE: src/main/java/me/Danker/features/puzzlesolvers/LividSolver.java
  class LividSolver (line 32) | public class LividSolver {
    method onWorldChange (line 37) | @SubscribeEvent
    method onTick (line 42) | @SubscribeEvent
    method onRenderEntity (line 77) | @SubscribeEvent
    method onWorldRender (line 90) | @SubscribeEvent
    method getTextFromValue (line 98) | static String getTextFromValue(int value) {
    class LividSolverHud (line 132) | public static class LividSolverHud extends Hud {
      method draw (line 144) | @Override
      method getWidth (line 156) | @Override
      method getHeight (line 161) | @Override
      method getText (line 166) | String getText() {

FILE: src/main/java/me/Danker/features/puzzlesolvers/SameColourSolver.java
  class SameColourSolver (line 27) | public class SameColourSolver {
    method onTooltipLow (line 33) | @SubscribeEvent(priority = EventPriority.LOW)
    method onTick (line 52) | @SubscribeEvent
    method onGuiRender (line 116) | @SubscribeEvent
    method onGuiOpen (line 138) | @SubscribeEvent
    method getDistance (line 146) | public static int getDistance(int colour, int endColour) {

FILE: src/main/java/me/Danker/features/puzzlesolvers/SelectAllColourSolver.java
  class SelectAllColourSolver (line 19) | public class SelectAllColourSolver {
    method onGuiRender (line 24) | @SubscribeEvent
    method onGuiOpen (line 55) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/SilverfishSolver.java
  class SilverfishSolver (line 30) | public class SilverfishSolver {
    method onWorldChange (line 38) | @SubscribeEvent
    method onTick (line 43) | @SubscribeEvent
    method onWorldRender (line 148) | @SubscribeEvent
    method reset (line 179) | static void reset() {

FILE: src/main/java/me/Danker/features/puzzlesolvers/StartsWithSolver.java
  class StartsWithSolver (line 13) | public class StartsWithSolver {
    method onGuiRender (line 15) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/SuperpairsSolver.java
  class SuperpairsSolver (line 26) | public class SuperpairsSolver {
    method onTooltip (line 30) | @SubscribeEvent(priority = EventPriority.HIGHEST)
    method onTick (line 68) | @SubscribeEvent
    method onGuiRender (line 100) | @SubscribeEvent
    method onGuiOpen (line 145) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/TeleportPadSolver.java
  class TeleportPadSolver (line 16) | public class TeleportPadSolver {
    method onWorldChange (line 21) | @SubscribeEvent
    method onTick (line 27) | @SubscribeEvent
    method onWorldRender (line 40) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/ThreeManSolver.java
  class ThreeManSolver (line 19) | public class ThreeManSolver {
    method onWorldChange (line 27) | @SubscribeEvent
    method onChat (line 32) | @SubscribeEvent
    method onWorldRender (line 60) | @SubscribeEvent
    method answer (line 67) | public static void answer(String message) {

FILE: src/main/java/me/Danker/features/puzzlesolvers/TicTacToeSolver.java
  class TicTacToeSolver (line 28) | public class TicTacToeSolver {
    method onTick (line 32) | @SubscribeEvent
    method onWorldRender (line 129) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/TriviaSolver.java
  class TriviaSolver (line 23) | public class TriviaSolver {
    method init (line 29) | @SubscribeEvent
    method onChat (line 69) | @SubscribeEvent(priority = EventPriority.HIGHEST)

FILE: src/main/java/me/Danker/features/puzzlesolvers/UltrasequencerSolver.java
  class UltrasequencerSolver (line 21) | public class UltrasequencerSolver {
    method onTick (line 26) | @SubscribeEvent
    method onSlotClick (line 53) | @SubscribeEvent
    method onGuiRender (line 74) | @SubscribeEvent
    method onGuiOpen (line 106) | @SubscribeEvent

FILE: src/main/java/me/Danker/features/puzzlesolvers/WaterSolver.java
  class WaterSolver (line 21) | public class WaterSolver {
    method onTick (line 27) | @SubscribeEvent
    class WaterSolverHud (line 156) | public static class WaterSolverHud extends Hud {
      method draw (line 166) | @Override
      method getWidth (line 178) | @Override
      method getHeight (line 183) | @Override

FILE: src/main/java/me/Danker/gui/WarningGui.java
  class WarningGui (line 10) | public class WarningGui extends GuiScreen {
    method WarningGui (line 13) | public WarningGui(){
    method doesGuiPauseGame (line 17) | @Override
    method initGui (line 22) | @Override
    method drawScreen (line 34) | @Override
    method actionPerformed (line 45) | @Override

FILE: src/main/java/me/Danker/gui/WarningGuiRedirect.java
  class WarningGuiRedirect (line 7) | public class WarningGuiRedirect extends GuiMainMenu {
    method keyTyped (line 11) | protected void keyTyped(char par1, int par2){}
    method WarningGuiRedirect (line 12) | public WarningGuiRedirect(GuiScreen g){
    method initGui (line 16) | public void initGui(){
    method drawScreen (line 21) | public void drawScreen(int par1, int par2, float par3){

FILE: src/main/java/me/Danker/gui/alerts/AlertActionGui.java
  class AlertActionGui (line 11) | public class AlertActionGui extends GuiScreen {
    method AlertActionGui (line 21) | public AlertActionGui(int id) {
    method doesGuiPauseGame (line 25) | @Override
    method initGui (line 30) | @Override
    method drawScreen (line 52) | @Override
    method actionPerformed (line 62) | @Override

FILE: src/main/java/me/Danker/gui/alerts/AlertAddGui.java
  class AlertAddGui (line 14) | public class AlertAddGui extends GuiScreen {
    method AlertAddGui (line 37) | public AlertAddGui() {}
    method AlertAddGui (line 39) | public AlertAddGui(Alerts.Alert alert, int id) {
    method doesGuiPauseGame (line 45) | @Override
    method initGui (line 50) | @Override
    method drawScreen (line 101) | @Override
    method actionPerformed (line 115) | @Override
    method mouseClicked (line 145) | @Override
    method keyTyped (line 152) | @Override

FILE: src/main/java/me/Danker/gui/alerts/AlertsGui.java
  class AlertsGui (line 13) | public class AlertsGui extends GuiScreen {
    method AlertsGui (line 23) | public AlertsGui(int page) {
    method initGui (line 27) | @Override
    method reInit (line 50) | public void reInit() {
    method drawScreen (line 66) | @Override
    method actionPerformed (line 75) | @Override

FILE: src/main/java/me/Danker/gui/aliases/AliasesActionGui.java
  class AliasesActionGui (line 11) | public class AliasesActionGui extends GuiScreen {
    method AliasesActionGui (line 21) | public AliasesActionGui(int id) {
    method doesGuiPauseGame (line 25) | @Override
    method initGui (line 30) | @Override
    method drawScreen (line 52) | @Override
    method actionPerformed (line 62) | @Override

FILE: src/main/java/me/Danker/gui/aliases/AliasesAddGui.java
  class AliasesAddGui (line 13) | public class AliasesAddGui extends GuiScreen {
    method AliasesAddGui (line 27) | public AliasesAddGui() {}
    method AliasesAddGui (line 29) | public AliasesAddGui(ChatAliases.Alias alias, int id) {
    method doesGuiPauseGame (line 35) | @Override
    method initGui (line 40) | @Override
    method drawScreen (line 74) | @Override
    method actionPerformed (line 86) | @Override
    method mouseClicked (line 102) | @Override
    method keyTyped (line 109) | @Override

FILE: src/main/java/me/Danker/gui/aliases/AliasesGui.java
  class AliasesGui (line 13) | public class AliasesGui extends GuiScreen {
    method AliasesGui (line 23) | public AliasesGui(int page) {
    method doesGuiPauseGame (line 27) | @Override
    method initGui (line 32) | @Override
    method reInit (line 55) | public void reInit() {
    method drawScreen (line 71) | @Override
    method actionPerformed (line 80) | @Override

FILE: src/main/java/me/Danker/gui/buttons/FeatureButton.java
  class FeatureButton (line 8) | public class FeatureButton extends GuiButton {
    method FeatureButton (line 12) | public FeatureButton(String displayString, String hoverText) {

FILE: src/main/java/me/Danker/gui/buttons/LocationButton.java
  class LocationButton (line 8) | public class LocationButton extends GuiButton {
    method LocationButton (line 18) | public LocationButton(int x, int y, double scale, String text, String ...
    method LocationButton (line 48) | public LocationButton(int x, int y, double scale, String text) {
    method drawButton (line 52) | @Override
    method playPressSound (line 59) | @Override

FILE: src/main/java/me/Danker/gui/crystalhollowwaypoints/CrystalHollowAddWaypointGui.java
  class CrystalHollowAddWaypointGui (line 15) | public class CrystalHollowAddWaypointGui extends GuiScreen {
    method CrystalHollowAddWaypointGui (line 30) | public CrystalHollowAddWaypointGui() {}
    method CrystalHollowAddWaypointGui (line 32) | public CrystalHollowAddWaypointGui(int x, int y, int z) {
    method doesGuiPauseGame (line 38) | @Override
    method initGui (line 43) | @Override
    method drawScreen (line 76) | @Override
    method actionPerformed (line 91) | @Override
    method mouseClicked (line 114) | @Override
    method keyTyped (line 123) | @Override

FILE: src/main/java/me/Danker/gui/crystalhollowwaypoints/CrystalHollowWaypointActionGui.java
  class CrystalHollowWaypointActionGui (line 13) | public class CrystalHollowWaypointActionGui extends GuiScreen {
    method CrystalHollowWaypointActionGui (line 24) | public CrystalHollowWaypointActionGui(int id) {
    method doesGuiPauseGame (line 28) | @Override
    method initGui (line 33) | @Override
    method drawScreen (line 57) | @Override
    method actionPerformed (line 67) | @Override

FILE: src/main/java/me/Danker/gui/crystalhollowwaypoints/CrystalHollowWaypointsGui.java
  class CrystalHollowWaypointsGui (line 13) | public class CrystalHollowWaypointsGui extends GuiScreen {
    method CrystalHollowWaypointsGui (line 23) | public CrystalHollowWaypointsGui(int page) {
    method doesGuiPauseGame (line 27) | @Override
    method initGui (line 32) | @Override
    method reInit (line 55) | public void reInit() {
    method drawScreen (line 71) | @Override
    method actionPerformed (line 80) | @Override

FILE: src/main/java/me/Danker/handlers/APIHandler.java
  class APIHandler (line 30) | public class APIHandler {
    method getSSLSocketFactory (line 34) | public static SSLSocketFactory getSSLSocketFactory() {
    method getResponse (line 59) | public static JsonObject getResponse(String urlString, boolean hasErro...
    method getResponsePOST (line 106) | public static JsonObject getResponsePOST(String urlString, JsonObject ...
    method getArrayResponse (line 125) | public static JsonArray getArrayResponse(String urlString) {
    method getUUID (line 159) | public static String getUUID(String username) {
    method getName (line 164) | public static String getName(String uuid) {

FILE: src/main/java/me/Danker/handlers/ConfigHandler.java
  class ConfigHandler (line 6) | public class ConfigHandler {
    method reloadConfig (line 8) | public static void reloadConfig() {

FILE: src/main/java/me/Danker/handlers/HypixelAPIHandler.java
  class HypixelAPIHandler (line 25) | public class HypixelAPIHandler {
    method getJsonObjectAuth (line 34) | public static JsonObject getJsonObjectAuth(String url) { // handles au...
    method setupConnection (line 57) | private static HttpURLConnection setupConnection(String url) {
    method authorize (line 86) | private static boolean authorize() {
    method calculateExpiry (line 101) | private static Instant calculateExpiry(String expiry) {
    method getLatestProfile (line 110) | public static JsonObject getLatestProfile(String UUID) {
    method getLatestProfileID (line 146) | public static String getLatestProfileID(String UUID) {

FILE: src/main/java/me/Danker/handlers/PacketHandler.java
  class PacketHandler (line 11) | public class PacketHandler extends ChannelDuplexHandler {
    method channelRead (line 13) | @Override
    method write (line 22) | @Override

FILE: src/main/java/me/Danker/handlers/ScoreboardHandler.java
  class ScoreboardHandler (line 18) | public class ScoreboardHandler {
    method cleanSB (line 20) | public static String cleanSB(String scoreboard) {
    method getSidebarLines (line 33) | public static List<String> getSidebarLines() {

FILE: src/main/java/me/Danker/handlers/TextRenderer.java
  class TextRenderer (line 10) | public class TextRenderer extends Gui {
    method drawText (line 15) | public static void drawText(String text, double x, double y, double sc...
    method drawHUDText (line 40) | public static void drawHUDText(String text, double x, double y, double...

FILE: src/main/java/me/Danker/locations/DungeonFloor.java
  type DungeonFloor (line 3) | public enum DungeonFloor {

FILE: src/main/java/me/Danker/locations/Location.java
  type Location (line 3) | public enum Location {
    method Location (line 26) | Location(String text) {
    method fromTab (line 30) | public static Location fromTab(String text) {

FILE: src/main/java/me/Danker/utils/BoulderUtils.java
  class BoulderUtils (line 13) | public class BoulderUtils {
    method copy (line 26) | public static char[][] copy(char[][] array) {
    method flipVertically (line 30) | public static char[][] flipVertically(char[][] board) {
    method flipHorizontally (line 40) | public static char[][] flipHorizontally(char[][] board) {
    method rotateClockwise (line 52) | public static char[][] rotateClockwise(char[][] board) {
    method removeFirstRow (line 64) | public static char[][] removeFirstRow(char[][] board) {
    method toString (line 70) | public static String toString(char[][] board) {
    method findSolution (line 80) | public static int findSolution(char[][] board, int depth, List<int[]> ...
    method canBePushed (line 148) | public static boolean canBePushed(char[][] floodFilledBoard, int row, ...
    method push (line 166) | public static char[][] push(char[][] board, int row, int column, char ...
    method isTouchingOpenSpace (line 185) | public static boolean isTouchingOpenSpace(char[][] floodFilledBoard, i...
    method hasOpenPath (line 192) | public static boolean hasOpenPath(char[][] board) {
    method floodFillBottom (line 201) | public static char[][] floodFillBottom(char[][] board) {
    method floodFill (line 211) | public static char[][] floodFill(char[][] board, int row, int column) {
    method add (line 224) | public static List<int[]> add(List<int[]> list, int[] arrayToAdd) {
    method getBoulder (line 230) | public static AxisAlignedBB getBoulder(int row, int column, BlockPos c...
    method drawArrow (line 251) | public static void drawArrow(AxisAlignedBB aabb, String boulderRoomDir...

FILE: src/main/java/me/Danker/utils/IceWalkUtils.java
  class IceWalkUtils (line 7) | public class IceWalkUtils {
    method solve (line 9) | public static List<Point> solve(char[][] board) {
    method findSolution (line 17) | public static List<Point> findSolution(char[][] board, Point startPos,...
    method move (line 31) | public static Point move(char[][] board, Point pos, Direction directio...
    method isComplete (line 57) | public static boolean isComplete(char[][] board, List<Point> route) {
    class Point (line 66) | public static class Point {
      method Point (line 71) | public Point(int row, int column) {
      method hashCode (line 76) | @Override
      method equals (line 81) | @Override
    type Direction (line 92) | enum Direction {

FILE: src/main/java/me/Danker/utils/RenderUtils.java
  class RenderUtils (line 23) | public class RenderUtils {
    method drawTitle (line 25) | public static void drawTitle(String text) {
    method drawOnSlot (line 47) | public static void drawOnSlot(int size, int xSlotPos, int ySlotPos, in...
    method drawTextOnSlot (line 60) | public static void drawTextOnSlot(int size, int xSlotPos, int ySlotPos...
    method draw3DLine (line 75) | public static void draw3DLine(Vec3 pos1, Vec3 pos2, int colourInt, int...
    method draw3DString (line 114) | public static void draw3DString(BlockPos pos, String text, int colour,...
    method draw3DString (line 138) | public static void draw3DString(double x, double y, double z, String t...
    method draw3DWaypointString (line 214) | public static void draw3DWaypointString(CrystalHollowWaypoints.Waypoin...
    method renderNametag (line 254) | public static void renderNametag(String str) {
    method draw3DBox (line 292) | public static void draw3DBox(AxisAlignedBB aabb, int colourInt, float ...
    method drawFilled3DBox (line 318) | public static void drawFilled3DBox(AxisAlignedBB aabb, int colourInt, ...
    method renderItem (line 387) | public static void renderItem(ItemStack stack, int x, int y, double sc...
    method renderItem (line 391) | public static void renderItem(ItemStack stack, int x, int y, int z, do...
    method drawCenteredText (line 407) | public static void drawCenteredText(String text, int screenWidth, int ...
    method drawModalRectWithCustomSizedTexture (line 413) | public static void drawModalRectWithCustomSizedTexture(double x, doubl...
    method getWidthFromText (line 427) | public static int getWidthFromText(String text) {
    method getHeightFromText (line 444) | public static int getHeightFromText(String text) {

FILE: src/main/java/me/Danker/utils/SilverfishUtils.java
  class SilverfishUtils (line 5) | public class SilverfishUtils {
    method solve (line 8) | public static List<Point> solve(char[][] board, Point startPos, List<P...
    method push (line 37) | public static Point push(char[][] board, Point pos, Direction directio...
    class Point (line 71) | public static class Point {
      method Point (line 76) | public Point(int row, int column) {
      method hashCode (line 81) | @Override
      method equals (line 86) | @Override
    type Direction (line 97) | enum Direction {

FILE: src/main/java/me/Danker/utils/TicTacToeUtils.java
  class TicTacToeUtils (line 7) | public class TicTacToeUtils {
    method getBestMove (line 9) | public static int getBestMove(char[][] board) {
    method hasMovesLeft (line 23) | public static boolean hasMovesLeft(char[][] board) {
    method getBoardRanking (line 32) | public static int getBoardRanking(char[][] board) {
    method minimax (line 70) | public static int minimax(char[][] board, boolean max, int depth) {

FILE: src/main/java/me/Danker/utils/Utils.java
  class Utils (line 33) | public class Utils {
    method getItems (line 59) | public static int getItems(String item) {
    method returnGoldenEnchants (line 77) | public static String returnGoldenEnchants(String line) {
    method getMatchingPlayers (line 89) | public static List<String> getMatchingPlayers(String arg) {
    method createTitle (line 104) | public static void createTitle(String text, int seconds) {
    method isOnHypixel (line 111) | public static boolean isOnHypixel() {
    method checkForSkyblock (line 124) | public static void checkForSkyblock() {
    method checkTabLocation (line 139) | public static void checkTabLocation() {
    method isInDungeons (line 154) | public static boolean isInDungeons() { // update this whenever new dun...
    method checkForDungeonFloor (line 158) | public static void checkForDungeonFloor() {
    method isInScoreboard (line 183) | public static boolean isInScoreboard(String text) {
    method capitalizeString (line 192) | public static String capitalizeString(String string) {
    method getPercentage (line 204) | public static double getPercentage(int num1, int num2) {
    method getTimeBetween (line 211) | public static String getTimeBetween(double timeOne, double timeTwo) {
    method getMoneySpent (line 240) | public static String getMoneySpent(double coins) {
    method xpToSkillLevel (line 246) | public static double xpToSkillLevel(double xp, int limit) {
    method skillLevelToXp (line 256) | public static int skillLevelToXp(int level) {
    method xpToDungeonsLevel (line 266) | public static double xpToDungeonsLevel(double xp) {
    method expertiseKillsLeft (line 277) | public static int expertiseKillsLeft(int kills) {
    method getPastXpEarned (line 287) | public static int getPastXpEarned(int currentLevelXp, int limit) {
    method getTotalXpEarned (line 302) | public static double getTotalXpEarned(int currentLevel, double percent...
    method getColouredBoolean (line 312) | public static String getColouredBoolean(boolean bool) {
    method getItemLore (line 317) | public static List<String> getItemLore(ItemStack itemStack) {
    method hasRightClickAbility (line 341) | public static boolean hasRightClickAbility(ItemStack itemStack) {
    method getFirstBlockPosAfterVectors (line 348) | public static BlockPos getFirstBlockPosAfterVectors(Minecraft mc, Vec3...
    method getNearbyBlock (line 367) | public static BlockPos getNearbyBlock(Minecraft mc, BlockPos pos, Bloc...
    method getBlockUnderItemFrame (line 388) | public static BlockPos getBlockUnderItemFrame(EntityItemFrame itemFram...
    method isRealPlayer (line 403) | public static boolean isRealPlayer(EntityPlayer player) {
    method removeBold (line 407) | public static String removeBold(String text) {
    method getIntFromString (line 411) | public static int getIntFromString(String text, boolean romanNumeral) {
    method skillsInitialized (line 435) | public static boolean skillsInitialized() {
    method initializeSkill (line 439) | public static int initializeSkill(ItemStack skillStack, String configV...
    method refreshRepo (line 457) | public static void refreshRepo() {
    method getCooldownFromAbility (line 466) | public static int getCooldownFromAbility(String ability) {
    method getCooldownReductionFromLevel (line 507) | public static double getCooldownReductionFromLevel(int level) {
    method desktopNotification (line 511) | public static void desktopNotification(String name, String title, Stri...
    method deepCopy (line 526) | public static JsonObject deepCopy(JsonObject obj) {
    method deepCopy (line 536) | public static JsonArray deepCopy(JsonArray array) {
    method getExtraAttributes (line 553) | public static NBTTagCompound getExtraAttributes(ItemStack item) {
    method getSkyblockItemID (line 559) | public static String getSkyblockItemID(ItemStack item) {
    method getTrophyFromAPI (line 568) | public static JsonObject getTrophyFromAPI(JsonObject obj, String name) {
    method isJson (line 579) | public static boolean isJson(String obj) {
    method parseInt (line 588) | public static int parseInt(String integer){
    method getObjectFromPath (line 593) | public static JsonObject getObjectFromPath(JsonObject obj, String path) {
    method getSkillMaxLevel (line 611) | public static int getSkillMaxLevel(String skill) {
Condensed preview — 187 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,460K chars).
[
  {
    "path": ".github/workflows/build.yml",
    "chars": 999,
    "preview": "# This workflow will build a Java project with Gradle\n# For more information see: https://help.github.com/actions/langua"
  },
  {
    "path": ".gitignore",
    "chars": 213,
    "preview": "# eclipse\nbin\n*.launch\n.settings\n.metadata\n.classpath\n.project\n\n# idea\nout\n*.ipr\n*.iws\n*.iml\n.idea\n\n# gradle\nbuild\n.grad"
  },
  {
    "path": "COPYING",
    "chars": 35149,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "COPYING.LESSER",
    "chars": 7651,
    "preview": "                   GNU LESSER GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007"
  },
  {
    "path": "README.md",
    "chars": 11693,
    "preview": "# Danker's Skyblock Mod\nQOL changes that enhances your Hypixel Skyblock experience. Created to add features I couldn't f"
  },
  {
    "path": "build.gradle.kts",
    "chars": 4296,
    "preview": "import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar\nimport gg.essential.gradle.util.noServerRunConfigs\n\npl"
  },
  {
    "path": "gradle/wrapper/gradle-wrapper.properties",
    "chars": 201,
    "preview": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributi"
  },
  {
    "path": "gradle.properties",
    "chars": 250,
    "preview": "mod_name = Danker's Skyblock Mod\nmod_id = Danker's Skyblock Mod\nmod_version = 2.3.1\n\nessential.defaults.loom=0\n\norg.grad"
  },
  {
    "path": "gradlew",
    "chars": 5766,
    "preview": "#!/usr/bin/env sh\n\n#\n# Copyright 2015 the original author or authors.\n#\n# Licensed under the Apache License, Version 2.0"
  },
  {
    "path": "gradlew.bat",
    "chars": 2674,
    "preview": "@rem\n@rem Copyright 2015 the original author or authors.\n@rem\n@rem Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "root.gradle.kts",
    "chars": 303,
    "preview": "plugins {\n    kotlin(\"jvm\") version \"1.6.21\" apply false\n    id(\"gg.essential.multi-version.root\")\n    id(\"com.github.jo"
  },
  {
    "path": "settings.gradle.kts",
    "chars": 887,
    "preview": "pluginManagement {\n    repositories {\n        gradlePluginPortal()\n        mavenCentral()\n        maven(\"https://repo.po"
  },
  {
    "path": "src/main/java/DefenitlyNotAJoikedInstallerFrame.java",
    "chars": 23953,
    "preview": "import me.Danker.DankersSkyblockMod;\n\nimport javax.imageio.ImageIO;\nimport javax.swing.*;\nimport java.awt.*;\nimport java"
  },
  {
    "path": "src/main/java/me/Danker/DankersSkyblockMod.java",
    "chars": 24139,
    "preview": "package me.Danker;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.commands.*;\nimport me.Danker.commands.api.*;\nimp"
  },
  {
    "path": "src/main/java/me/Danker/commands/CrystalHollowWaypointCommand.java",
    "chars": 1139,
    "preview": "package me.Danker.commands;\n\nimport me.Danker.features.CrystalHollowWaypoints;\nimport net.minecraft.command.CommandBase;"
  },
  {
    "path": "src/main/java/me/Danker/commands/DHelpCommand.java",
    "chars": 8066,
    "preview": "package me.Danker.commands;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.commands.api.*;\nimport me.Danker.comm"
  },
  {
    "path": "src/main/java/me/Danker/commands/DankerGuiCommand.java",
    "chars": 3115,
    "preview": "package me.Danker.commands;\n\nimport cc.polyfrost.oneconfig.utils.IOUtils;\nimport me.Danker.DankersSkyblockMod;\nimport me"
  },
  {
    "path": "src/main/java/me/Danker/commands/PowderTrackerCommand.java",
    "chars": 2942,
    "preview": "package me.Danker.commands;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.features.PowderTracker;\nimport net.mine"
  },
  {
    "path": "src/main/java/me/Danker/commands/ReloadConfigCommand.java",
    "chars": 1363,
    "preview": "package me.Danker.commands;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimport me.Danker.ev"
  },
  {
    "path": "src/main/java/me/Danker/commands/ReloadRepoCommand.java",
    "chars": 1219,
    "preview": "package me.Danker.commands;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.comma"
  },
  {
    "path": "src/main/java/me/Danker/commands/RepartyCommand.java",
    "chars": 5659,
    "preview": "package me.Danker.commands;\n\nimport me.Danker.config.ModConfig;\nimport net.minecraft.client.Minecraft;\nimport net.minecr"
  },
  {
    "path": "src/main/java/me/Danker/commands/SkillTrackerCommand.java",
    "chars": 3934,
    "preview": "package me.Danker.commands;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.features.SkillTracker;\nimport net.minec"
  },
  {
    "path": "src/main/java/me/Danker/commands/StopLobbyCommand.java",
    "chars": 1830,
    "preview": "package me.Danker.commands;\n\nimport me.Danker.commands.api.LobbyBankCommand;\nimport me.Danker.commands.api.LobbySkillsCo"
  },
  {
    "path": "src/main/java/me/Danker/commands/api/ArmourCommand.java",
    "chars": 5890,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.ModConfig;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/api/BankCommand.java",
    "chars": 4737,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.common.collect.ImmutableList;\nimport com.google.gson.JsonObject;\nimpo"
  },
  {
    "path": "src/main/java/me/Danker/commands/api/DungeonsCommand.java",
    "chars": 9298,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.ModConfig;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/api/FairySoulsCommand.java",
    "chars": 2835,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.ModConfig;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/api/GuildOfCommand.java",
    "chars": 5150,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonArray;\nimport com.google.gson.JsonElement;\nimport com.google"
  },
  {
    "path": "src/main/java/me/Danker/commands/api/HOTMCommand.java",
    "chars": 5968,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.ModConfig;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/api/HOTMTreeCommand.java",
    "chars": 6548,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonArray;\nimport com.google.gson.JsonElement;\nimport com.google"
  },
  {
    "path": "src/main/java/me/Danker/commands/api/InventoryCommand.java",
    "chars": 7186,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.DankersSkyblockMod;\nimport me.Danke"
  },
  {
    "path": "src/main/java/me/Danker/commands/api/LobbyBankCommand.java",
    "chars": 5448,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.ModConfig;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/api/LobbySkillsCommand.java",
    "chars": 12121,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.ModConfig;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/api/PetsCommand.java",
    "chars": 8028,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonArray;\nimport com.google.gson.JsonElement;\nimport com.google"
  },
  {
    "path": "src/main/java/me/Danker/commands/api/PlayerCommand.java",
    "chars": 17614,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.ModConfig;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/api/SkillsCommand.java",
    "chars": 18843,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.ModConfig;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/api/SkyblockPlayersCommand.java",
    "chars": 7776,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.ModConfig;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/api/SlayerCommand.java",
    "chars": 5978,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.ModConfig;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/api/TrophyFishCommand.java",
    "chars": 9985,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.ModConfig;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/api/WeightCommand.java",
    "chars": 17688,
    "preview": "package me.Danker.commands.api;\n\nimport com.google.gson.JsonArray;\nimport com.google.gson.JsonElement;\nimport com.google"
  },
  {
    "path": "src/main/java/me/Danker/commands/loot/DisplayCommand.java",
    "chars": 6746,
    "preview": "package me.Danker.commands.loot;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimport me.Dank"
  },
  {
    "path": "src/main/java/me/Danker/commands/loot/ImportFishingCommand.java",
    "chars": 13750,
    "preview": "package me.Danker.commands.loot;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.config.CfgConfig;\nimport me.Danker"
  },
  {
    "path": "src/main/java/me/Danker/commands/loot/LootCommand.java",
    "chars": 115764,
    "preview": "package me.Danker.commands.loot;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.features.loot.*;\nimport me.Danker."
  },
  {
    "path": "src/main/java/me/Danker/commands/loot/ResetLootCommand.java",
    "chars": 18991,
    "preview": "package me.Danker.commands.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.config.ModConfig;\nimport me.Danker"
  },
  {
    "path": "src/main/java/me/Danker/commands/warp/WarpCommand.java",
    "chars": 2597,
    "preview": "package me.Danker.commands.warp;\n\nimport me.Danker.utils.Utils;\nimport net.minecraft.client.Minecraft;\nimport net.minecr"
  },
  {
    "path": "src/main/java/me/Danker/commands/warp/WarpCommandHandler.java",
    "chars": 3071,
    "preview": "package me.Danker.commands.warp;\n\nimport net.minecraftforge.client.ClientCommandHandler;\n\nimport java.util.ArrayList;\nim"
  },
  {
    "path": "src/main/java/me/Danker/config/CfgConfig.java",
    "chars": 27005,
    "preview": "package me.Danker.config;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.features.CakeTimer;\nimport me.Danker.fe"
  },
  {
    "path": "src/main/java/me/Danker/config/JsonConfig.java",
    "chars": 3891,
    "preview": "package me.Danker.config;\n\nimport com.google.gson.*;\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.features.*;\ni"
  },
  {
    "path": "src/main/java/me/Danker/config/ModConfig.java",
    "chars": 71687,
    "preview": "package me.Danker.config;\n\n\nimport cc.polyfrost.oneconfig.config.Config;\nimport cc.polyfrost.oneconfig.config.annotation"
  },
  {
    "path": "src/main/java/me/Danker/containers/GuiChestDynamic.java",
    "chars": 2088,
    "preview": "package me.Danker.containers;\n\nimport net.minecraft.client.Minecraft;\nimport net.minecraft.client.gui.inventory.GuiConta"
  },
  {
    "path": "src/main/java/me/Danker/events/ChestSlotClickedEvent.java",
    "chars": 843,
    "preview": "package me.Danker.events;\n\nimport net.minecraft.client.gui.inventory.GuiChest;\nimport net.minecraft.inventory.IInventory"
  },
  {
    "path": "src/main/java/me/Danker/events/GuiChestBackgroundDrawnEvent.java",
    "chars": 646,
    "preview": "package me.Danker.events;\n\nimport net.minecraft.client.gui.inventory.GuiChest;\nimport net.minecraft.inventory.Slot;\nimpo"
  },
  {
    "path": "src/main/java/me/Danker/events/ModInitEvent.java",
    "chars": 277,
    "preview": "package me.Danker.events;\n\nimport net.minecraftforge.fml.common.eventhandler.Event;\n\npublic class ModInitEvent extends E"
  },
  {
    "path": "src/main/java/me/Danker/events/PacketReadEvent.java",
    "chars": 352,
    "preview": "package me.Danker.events;\n\nimport net.minecraft.network.Packet;\nimport net.minecraftforge.fml.common.eventhandler.Cancel"
  },
  {
    "path": "src/main/java/me/Danker/events/PacketWriteEvent.java",
    "chars": 354,
    "preview": "package me.Danker.events;\n\nimport net.minecraft.network.Packet;\nimport net.minecraftforge.fml.common.eventhandler.Cancel"
  },
  {
    "path": "src/main/java/me/Danker/events/PostConfigInitEvent.java",
    "chars": 291,
    "preview": "package me.Danker.events;\n\nimport net.minecraftforge.fml.common.eventhandler.Event;\n\npublic class PostConfigInitEvent ex"
  },
  {
    "path": "src/main/java/me/Danker/events/RenderOverlayEvent.java",
    "chars": 135,
    "preview": "package me.Danker.events;\n\nimport net.minecraftforge.fml.common.eventhandler.Event;\n\npublic class RenderOverlayEvent ext"
  },
  {
    "path": "src/main/java/me/Danker/events/SlayerLootDropEvent.java",
    "chars": 318,
    "preview": "package me.Danker.events;\n\nimport net.minecraftforge.fml.common.eventhandler.Event;\n\npublic class SlayerLootDropEvent ex"
  },
  {
    "path": "src/main/java/me/Danker/features/AbilityCooldowns.java",
    "chars": 6087,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Exclude;\nimport cc.polyfrost.oneconfig.hud"
  },
  {
    "path": "src/main/java/me/Danker/features/Alerts.java",
    "chars": 4750,
    "preview": "package me.Danker.features;\n\nimport com.google.gson.GsonBuilder;\nimport me.Danker.config.ModConfig;\nimport me.Danker.eve"
  },
  {
    "path": "src/main/java/me/Danker/features/AnnounceVanquishers.java",
    "chars": 1268,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.locations.Location;\nimport me.Danker.ut"
  },
  {
    "path": "src/main/java/me/Danker/features/ArachneESP.java",
    "chars": 2219,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.locations.Location;\nimport me.Danker.ut"
  },
  {
    "path": "src/main/java/me/Danker/features/AutoAcceptReparty.java",
    "chars": 1337,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport net.minecraft.client.Minecraft;\nimport net.minecr"
  },
  {
    "path": "src/main/java/me/Danker/features/AutoDisplay.java",
    "chars": 5103,
    "preview": "package me.Danker.features;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.features.loot.LootDisplay;\nimport me."
  },
  {
    "path": "src/main/java/me/Danker/features/AutoJoinSkyblock.java",
    "chars": 1306,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.clien"
  },
  {
    "path": "src/main/java/me/Danker/features/AutoSwapToPickBlock.java",
    "chars": 2472,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.clien"
  },
  {
    "path": "src/main/java/me/Danker/features/BazaarTimeToFill.java",
    "chars": 5317,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danker.DankersSkyblockM"
  },
  {
    "path": "src/main/java/me/Danker/features/BlockPlacingFlowers.java",
    "chars": 1847,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.block"
  },
  {
    "path": "src/main/java/me/Danker/features/BlockWrongSlayer.java",
    "chars": 2826,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.ChestSlotClickedEvent;\nimport ne"
  },
  {
    "path": "src/main/java/me/Danker/features/BonzoMaskTimer.java",
    "chars": 5262,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Dropdown;\nimport cc.polyfrost.oneconfig.co"
  },
  {
    "path": "src/main/java/me/Danker/features/CakeTimer.java",
    "chars": 5257,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Dropdown;\nimport cc.polyfrost.oneconfig.co"
  },
  {
    "path": "src/main/java/me/Danker/features/ChatAliases.java",
    "chars": 2438,
    "preview": "package me.Danker.features;\n\nimport com.google.gson.GsonBuilder;\nimport me.Danker.config.ModConfig;\nimport me.Danker.eve"
  },
  {
    "path": "src/main/java/me/Danker/features/ColouredNames.java",
    "chars": 7518,
    "preview": "package me.Danker.features;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimport me.Danker.ev"
  },
  {
    "path": "src/main/java/me/Danker/features/CoordsOptimizer.java",
    "chars": 8482,
    "preview": "package me.Danker.features;\n\nimport com.google.common.primitives.Ints;\nimport me.Danker.config.ModConfig;\n\nimport java.u"
  },
  {
    "path": "src/main/java/me/Danker/features/CrimsonMinibossTimer.java",
    "chars": 5581,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Dropdown;\nimport cc.polyfrost.oneconfig.co"
  },
  {
    "path": "src/main/java/me/Danker/features/CrystalHollowWaypoints.java",
    "chars": 20797,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.utils.IOUtils;\nimport cc.polyfrost.oneconfig.utils.Notificati"
  },
  {
    "path": "src/main/java/me/Danker/features/CustomMusic.java",
    "chars": 15479,
    "preview": "package me.Danker.features;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimport me.Danker.ev"
  },
  {
    "path": "src/main/java/me/Danker/features/Debug.java",
    "chars": 1869,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.PacketReadEvent;\nimport me.Danke"
  },
  {
    "path": "src/main/java/me/Danker/features/DisableMovement.java",
    "chars": 3665,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport net.minecraft.client.Minecraft;\nimport net.minecr"
  },
  {
    "path": "src/main/java/me/Danker/features/DrillFix.java",
    "chars": 2328,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.PacketReadEvent;\nimport me.Danke"
  },
  {
    "path": "src/main/java/me/Danker/features/DungeonScore.java",
    "chars": 10241,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Exclude;\nimport cc.polyfrost.oneconfig.hud"
  },
  {
    "path": "src/main/java/me/Danker/features/DungeonTimer.java",
    "chars": 23155,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Dropdown;\nimport cc.polyfrost.oneconfig.co"
  },
  {
    "path": "src/main/java/me/Danker/features/EndOfFarmAlert.java",
    "chars": 1771,
    "preview": "package me.Danker.features;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimport me.Danker.lo"
  },
  {
    "path": "src/main/java/me/Danker/features/ExpertiseLore.java",
    "chars": 1706,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.clien"
  },
  {
    "path": "src/main/java/me/Danker/features/FasterMaddoxCalling.java",
    "chars": 2297,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.clien"
  },
  {
    "path": "src/main/java/me/Danker/features/FilletMagmafish.java",
    "chars": 5530,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danker.config.ModConfig"
  },
  {
    "path": "src/main/java/me/Danker/features/FirePillarDisplay.java",
    "chars": 2748,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Exclude;\nimport cc.polyfrost.oneconfig.hud"
  },
  {
    "path": "src/main/java/me/Danker/features/FishingSpawnAlerts.java",
    "chars": 2460,
    "preview": "package me.Danker.features;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimport me.Danker.ut"
  },
  {
    "path": "src/main/java/me/Danker/features/GemstonesLore.java",
    "chars": 4667,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.ModInitEvent;\nimport me.Danker.u"
  },
  {
    "path": "src/main/java/me/Danker/features/GetPearlFromSack.java",
    "chars": 916,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.clien"
  },
  {
    "path": "src/main/java/me/Danker/features/GiantHPDisplay.java",
    "chars": 4258,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Exclude;\nimport cc.polyfrost.oneconfig.hud"
  },
  {
    "path": "src/main/java/me/Danker/features/GoldenEnchants.java",
    "chars": 3042,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.ModInitEvent;\nimport me.Danker.u"
  },
  {
    "path": "src/main/java/me/Danker/features/GolemSpawningAlert.java",
    "chars": 3953,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Dropdown;\nimport cc.polyfrost.oneconfig.co"
  },
  {
    "path": "src/main/java/me/Danker/features/GpartyNotifications.java",
    "chars": 823,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.util."
  },
  {
    "path": "src/main/java/me/Danker/features/HidePetCandy.java",
    "chars": 747,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraftforge."
  },
  {
    "path": "src/main/java/me/Danker/features/HidePlayerArmour.java",
    "chars": 2051,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.entit"
  },
  {
    "path": "src/main/java/me/Danker/features/HideTooltipsInExperiments.java",
    "chars": 1330,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.clien"
  },
  {
    "path": "src/main/java/me/Danker/features/HideTooltipsMisc.java",
    "chars": 1313,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.locations.Location;\nimport me.Danker.ut"
  },
  {
    "path": "src/main/java/me/Danker/features/HighlightCommissions.java",
    "chars": 1228,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.GuiChestBackgroundDrawnEvent;\nim"
  },
  {
    "path": "src/main/java/me/Danker/features/HighlightFilledOrders.java",
    "chars": 1076,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.GuiChestBackgroundDrawnEvent;\nim"
  },
  {
    "path": "src/main/java/me/Danker/features/HighlightPests.java",
    "chars": 1175,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.GuiChestBackgroundDrawnEvent;\nim"
  },
  {
    "path": "src/main/java/me/Danker/features/HighlightSkeletonMasters.java",
    "chars": 1550,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.RenderUtils;\nimport me.Danker.uti"
  },
  {
    "path": "src/main/java/me/Danker/features/KuudraNotifications.java",
    "chars": 2303,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.PacketReadEvent;\nimport me.Danke"
  },
  {
    "path": "src/main/java/me/Danker/features/LocrawSpamFix.java",
    "chars": 811,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.PacketWriteEvent;\nimport net.min"
  },
  {
    "path": "src/main/java/me/Danker/features/LowHealthNotifications.java",
    "chars": 1302,
    "preview": "package me.Danker.features;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimport me.Danker.ha"
  },
  {
    "path": "src/main/java/me/Danker/features/MeterTracker.java",
    "chars": 10908,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.utils.TickDelay;\nimport com.google.gson.GsonBuilder;\nimport c"
  },
  {
    "path": "src/main/java/me/Danker/features/MinionLastCollected.java",
    "chars": 5711,
    "preview": "package me.Danker.features;\n\nimport com.google.gson.GsonBuilder;\nimport me.Danker.config.ModConfig;\nimport me.Danker.eve"
  },
  {
    "path": "src/main/java/me/Danker/features/NecronNotifications.java",
    "chars": 3733,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.block"
  },
  {
    "path": "src/main/java/me/Danker/features/NoF3Coords.java",
    "chars": 2083,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Dropdown;\nimport cc.polyfrost.oneconfig.co"
  },
  {
    "path": "src/main/java/me/Danker/features/NotifySlayerSlain.java",
    "chars": 4034,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.handlers.ScoreboardHandler;\nimport me.D"
  },
  {
    "path": "src/main/java/me/Danker/features/PetColours.java",
    "chars": 3295,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.GuiChestBackgroundDrawnEvent;\nim"
  },
  {
    "path": "src/main/java/me/Danker/features/PowderTracker.java",
    "chars": 9769,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Button;\nimport cc.polyfrost.oneconfig.conf"
  },
  {
    "path": "src/main/java/me/Danker/features/Reparty.java",
    "chars": 6717,
    "preview": "package me.Danker.features;\n\nimport me.Danker.commands.RepartyCommand;\nimport me.Danker.config.ModConfig;\nimport net.min"
  },
  {
    "path": "src/main/java/me/Danker/features/Skill50Display.java",
    "chars": 7858,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Dropdown;\nimport cc.polyfrost.oneconfig.co"
  },
  {
    "path": "src/main/java/me/Danker/features/SkillTracker.java",
    "chars": 17473,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Button;\nimport cc.polyfrost.oneconfig.conf"
  },
  {
    "path": "src/main/java/me/Danker/features/SlayerESP.java",
    "chars": 4840,
    "preview": "package me.Danker.features;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimport me.Danker.ut"
  },
  {
    "path": "src/main/java/me/Danker/features/SpamHider.java",
    "chars": 2066,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.util."
  },
  {
    "path": "src/main/java/me/Danker/features/SpiritBearAlert.java",
    "chars": 790,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.util."
  },
  {
    "path": "src/main/java/me/Danker/features/SpiritBootsFix.java",
    "chars": 1397,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.PacketReadEvent;\nimport me.Danke"
  },
  {
    "path": "src/main/java/me/Danker/features/SpiritMaskTimer.java",
    "chars": 5277,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Dropdown;\nimport cc.polyfrost.oneconfig.co"
  },
  {
    "path": "src/main/java/me/Danker/features/StopSalvagingStarredItems.java",
    "chars": 1431,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.ChestSlotClickedEvent;\nimport ne"
  },
  {
    "path": "src/main/java/me/Danker/features/TetherDisplay.java",
    "chars": 3557,
    "preview": "package me.Danker.features;\n\nimport cc.polyfrost.oneconfig.config.annotations.Exclude;\nimport cc.polyfrost.oneconfig.hud"
  },
  {
    "path": "src/main/java/me/Danker/features/UpdateChecker.java",
    "chars": 2361,
    "preview": "package me.Danker.features;\n\nimport com.google.gson.JsonObject;\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.co"
  },
  {
    "path": "src/main/java/me/Danker/features/WatcherReadyAlert.java",
    "chars": 804,
    "preview": "package me.Danker.features;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft.util."
  },
  {
    "path": "src/main/java/me/Danker/features/loot/BlazeTracker.java",
    "chars": 9835,
    "preview": "package me.Danker.features.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.config.ModConfig;\nimport me.Danker"
  },
  {
    "path": "src/main/java/me/Danker/features/loot/CatacombsTracker.java",
    "chars": 35533,
    "preview": "package me.Danker.features.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.events.ChestSlotClickedEvent;\nimpo"
  },
  {
    "path": "src/main/java/me/Danker/features/loot/EndermanTracker.java",
    "chars": 8674,
    "preview": "package me.Danker.features.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.config.ModConfig;\nimport me.Danker"
  },
  {
    "path": "src/main/java/me/Danker/features/loot/FishingTracker.java",
    "chars": 21701,
    "preview": "package me.Danker.features.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.locations.Location;\nimport me.Dank"
  },
  {
    "path": "src/main/java/me/Danker/features/loot/GhostTracker.java",
    "chars": 2069,
    "preview": "package me.Danker.features.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft."
  },
  {
    "path": "src/main/java/me/Danker/features/loot/LootDisplay.java",
    "chars": 156156,
    "preview": "package me.Danker.features.loot;\n\nimport cc.polyfrost.oneconfig.config.annotations.Dropdown;\nimport cc.polyfrost.oneconf"
  },
  {
    "path": "src/main/java/me/Danker/features/loot/LootTracker.java",
    "chars": 5387,
    "preview": "package me.Danker.features.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.config.ModConfig;\nimport me.Danker"
  },
  {
    "path": "src/main/java/me/Danker/features/loot/MythologicalTracker.java",
    "chars": 3996,
    "preview": "package me.Danker.features.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.utils.Utils;\nimport net.minecraft."
  },
  {
    "path": "src/main/java/me/Danker/features/loot/SpiderTracker.java",
    "chars": 4624,
    "preview": "package me.Danker.features.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.config.ModConfig;\nimport me.Danker"
  },
  {
    "path": "src/main/java/me/Danker/features/loot/TrophyFishTracker.java",
    "chars": 6133,
    "preview": "package me.Danker.features.loot;\n\nimport com.google.gson.GsonBuilder;\nimport com.google.gson.JsonObject;\nimport me.Danke"
  },
  {
    "path": "src/main/java/me/Danker/features/loot/VampireTracker.java",
    "chars": 4067,
    "preview": "package me.Danker.features.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.events.SlayerLootDropEvent;\nimport"
  },
  {
    "path": "src/main/java/me/Danker/features/loot/WolfTracker.java",
    "chars": 5009,
    "preview": "package me.Danker.features.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.config.ModConfig;\nimport me.Danker"
  },
  {
    "path": "src/main/java/me/Danker/features/loot/ZombieTracker.java",
    "chars": 6454,
    "preview": "package me.Danker.features.loot;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.config.ModConfig;\nimport me.Danker"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/ArrowTerminalSolver.java",
    "chars": 2333,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.PacketWriteEvent;\n"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/BlazeSolver.java",
    "chars": 7105,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimpor"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/BlockWrongTerminalClicks.java",
    "chars": 4434,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.ChestSlotClickedEv"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/BoulderSolver.java",
    "chars": 9389,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimpor"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/ChronomatronSolver.java",
    "chars": 5468,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danker.co"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/ClickInOrderSolver.java",
    "chars": 4773,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.GuiChestBackground"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/CreeperSolver.java",
    "chars": 5057,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimpor"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/IceWalkSolver.java",
    "chars": 19562,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimpor"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/LividSolver.java",
    "chars": 6558,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport cc.polyfrost.oneconfig.config.annotations.Color;\nimport cc.polyfrost.o"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/SameColourSolver.java",
    "chars": 6063,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimpor"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/SelectAllColourSolver.java",
    "chars": 2628,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.GuiChestBackground"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/SilverfishSolver.java",
    "chars": 11748,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimpor"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/StartsWithSolver.java",
    "chars": 1344,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.GuiChestBackground"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/SuperpairsSolver.java",
    "chars": 6812,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.GuiChestBackground"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/TeleportPadSolver.java",
    "chars": 1220,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.DankersSkyblockMod;\nimport net.minecraft.client.Minecraft;\ni"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/ThreeManSolver.java",
    "chars": 4348,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport com.google.gson.JsonArray;\nimport me.Danker.DankersSkyblockMod;\nimport"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/TicTacToeSolver.java",
    "chars": 6271,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.ModConfig;\nimpor"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/TriviaSolver.java",
    "chars": 8861,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport com.google.gson.JsonArray;\nimport com.google.gson.JsonObject;\nimport c"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/UltrasequencerSolver.java",
    "chars": 5594,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport me.Danker.config.ModConfig;\nimport me.Danker.events.ChestSlotClickedEv"
  },
  {
    "path": "src/main/java/me/Danker/features/puzzlesolvers/WaterSolver.java",
    "chars": 12448,
    "preview": "package me.Danker.features.puzzlesolvers;\n\nimport cc.polyfrost.oneconfig.config.annotations.Exclude;\nimport cc.polyfrost"
  },
  {
    "path": "src/main/java/me/Danker/gui/WarningGui.java",
    "chars": 1497,
    "preview": "package me.Danker.gui;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danker.utils.RenderUtils;\nim"
  },
  {
    "path": "src/main/java/me/Danker/gui/WarningGuiRedirect.java",
    "chars": 610,
    "preview": "package me.Danker.gui;\n\nimport net.minecraft.client.gui.GuiButton;\nimport net.minecraft.client.gui.GuiMainMenu;\nimport n"
  },
  {
    "path": "src/main/java/me/Danker/gui/alerts/AlertActionGui.java",
    "chars": 2880,
    "preview": "package me.Danker.gui.alerts;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danker.features.Alert"
  },
  {
    "path": "src/main/java/me/Danker/gui/alerts/AlertAddGui.java",
    "chars": 5887,
    "preview": "package me.Danker.gui.alerts;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danker.features.Alert"
  },
  {
    "path": "src/main/java/me/Danker/gui/alerts/AlertsGui.java",
    "chars": 2914,
    "preview": "package me.Danker.gui.alerts;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danker.DankersSkybloc"
  },
  {
    "path": "src/main/java/me/Danker/gui/aliases/AliasesActionGui.java",
    "chars": 2961,
    "preview": "package me.Danker.gui.aliases;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danker.features.Chat"
  },
  {
    "path": "src/main/java/me/Danker/gui/aliases/AliasesAddGui.java",
    "chars": 3811,
    "preview": "package me.Danker.gui.aliases;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danker.features.Chat"
  },
  {
    "path": "src/main/java/me/Danker/gui/aliases/AliasesGui.java",
    "chars": 3027,
    "preview": "package me.Danker.gui.aliases;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danker.DankersSkyblo"
  },
  {
    "path": "src/main/java/me/Danker/gui/buttons/FeatureButton.java",
    "chars": 387,
    "preview": "package me.Danker.gui.buttons;\n\nimport net.minecraft.client.gui.GuiButton;\n\nimport java.util.Arrays;\nimport java.util.Li"
  },
  {
    "path": "src/main/java/me/Danker/gui/buttons/LocationButton.java",
    "chars": 1929,
    "preview": "package me.Danker.gui.buttons;\n\nimport me.Danker.handlers.TextRenderer;\nimport net.minecraft.client.Minecraft;\nimport ne"
  },
  {
    "path": "src/main/java/me/Danker/gui/crystalhollowwaypoints/CrystalHollowAddWaypointGui.java",
    "chars": 4905,
    "preview": "package me.Danker.gui.crystalhollowwaypoints;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danke"
  },
  {
    "path": "src/main/java/me/Danker/gui/crystalhollowwaypoints/CrystalHollowWaypointActionGui.java",
    "chars": 3546,
    "preview": "package me.Danker.gui.crystalhollowwaypoints;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danke"
  },
  {
    "path": "src/main/java/me/Danker/gui/crystalhollowwaypoints/CrystalHollowWaypointsGui.java",
    "chars": 3194,
    "preview": "package me.Danker.gui.crystalhollowwaypoints;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danke"
  },
  {
    "path": "src/main/java/me/Danker/handlers/APIHandler.java",
    "chars": 7269,
    "preview": "package me.Danker.handlers;\n\nimport com.google.gson.Gson;\nimport com.google.gson.JsonArray;\nimport com.google.gson.JsonO"
  },
  {
    "path": "src/main/java/me/Danker/handlers/ConfigHandler.java",
    "chars": 342,
    "preview": "package me.Danker.handlers;\n\nimport me.Danker.config.CfgConfig;\nimport me.Danker.config.JsonConfig;\n\npublic class Config"
  },
  {
    "path": "src/main/java/me/Danker/handlers/HypixelAPIHandler.java",
    "chars": 8295,
    "preview": "package me.Danker.handlers;\n\nimport cc.polyfrost.oneconfig.utils.JsonUtils;\nimport com.google.gson.JsonArray;\nimport com"
  },
  {
    "path": "src/main/java/me/Danker/handlers/PacketHandler.java",
    "chars": 983,
    "preview": "package me.Danker.handlers;\n\nimport io.netty.channel.ChannelDuplexHandler;\nimport io.netty.channel.ChannelHandlerContext"
  },
  {
    "path": "src/main/java/me/Danker/handlers/ScoreboardHandler.java",
    "chars": 2329,
    "preview": "package me.Danker.handlers;\n\nimport com.google.common.collect.Iterables;\nimport com.google.common.collect.Lists;\nimport "
  },
  {
    "path": "src/main/java/me/Danker/handlers/TextRenderer.java",
    "chars": 1935,
    "preview": "package me.Danker.handlers;\n\nimport me.Danker.config.ModConfig;\nimport net.minecraft.client.Minecraft;\nimport net.minecr"
  },
  {
    "path": "src/main/java/me/Danker/locations/DungeonFloor.java",
    "chars": 187,
    "preview": "package me.Danker.locations;\n\npublic enum DungeonFloor {\n    NONE,\n    E0,\n    F1,\n    F2,\n    F3,\n    F4,\n    F5,\n    F"
  },
  {
    "path": "src/main/java/me/Danker/locations/Location.java",
    "chars": 907,
    "preview": "package me.Danker.locations;\n\npublic enum Location {\n    NONE(\"\"),\n    CATACOMBS(\"Catacombs\"),\n    CRIMSON_ISLE(\"Crimson"
  },
  {
    "path": "src/main/java/me/Danker/utils/BoulderUtils.java",
    "chars": 13132,
    "preview": "package me.Danker.utils;\n\nimport me.Danker.features.puzzlesolvers.BoulderSolver;\nimport net.minecraft.util.AxisAlignedBB"
  },
  {
    "path": "src/main/java/me/Danker/utils/IceWalkUtils.java",
    "chars": 3170,
    "preview": "package me.Danker.utils;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.Objects;\n\npublic class Ice"
  },
  {
    "path": "src/main/java/me/Danker/utils/RenderUtils.java",
    "chars": 21309,
    "preview": "package me.Danker.utils;\n\nimport cc.polyfrost.oneconfig.libs.universal.UResolution;\nimport me.Danker.features.CrystalHol"
  },
  {
    "path": "src/main/java/me/Danker/utils/SilverfishUtils.java",
    "chars": 3334,
    "preview": "package me.Danker.utils;\n\nimport java.util.*;\n\npublic class SilverfishUtils {\n\n    // bfs\n    public static List<Point> "
  },
  {
    "path": "src/main/java/me/Danker/utils/TicTacToeUtils.java",
    "chars": 3357,
    "preview": "package me.Danker.utils;\n\nimport java.util.Collections;\nimport java.util.HashMap;\nimport java.util.Map;\n\npublic class Ti"
  },
  {
    "path": "src/main/java/me/Danker/utils/Utils.java",
    "chars": 23989,
    "preview": "package me.Danker.utils;\n\nimport com.google.gson.*;\nimport me.Danker.DankersSkyblockMod;\nimport me.Danker.config.CfgConf"
  },
  {
    "path": "src/main/resources/mcmod.info",
    "chars": 271,
    "preview": "[\n{\n  \"modid\": \"${id}\",\n  \"name\": \"${name}\",\n  \"description\": \"QOL changes that enhances your Hypixel Skyblock experienc"
  },
  {
    "path": "versions/mainProject",
    "chars": 11,
    "preview": "1.8.9-forge"
  }
]

// ... and 1 more files (download for full content)

About this extraction

This page contains the full source code of the bowser0000/SkyblockMod GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 187 files (1.3 MB), approximately 308.0k tokens, and a symbol index with 1065 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!