Skip to content

the sourcecode for the latest version of DragonX hacked client

Notifications You must be signed in to change notification settings

Eaglercraft-Archive/DragonX-source

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DragonX

A Hack Client For EaglercraftX 1.8.x

Installation

To Install This Client Or Compile it Run The Following Commands:

./CompileEPK.sh
./Gradlew teavmc
./MakeOfflineDownload.sh

Authors

FAQ

Why Did I Get This Source?

1: I Open-Sourced The Code.

2: Peyton Got Mad At Me And Leaked It.

Did You Skid Anything In This Client?

Yes, i did. Here is a list of the things that i skidded:

the module base

event system

command base

clickGUI

Resent Shit

Making Modules

To Make A Basic Module Do The Following:

    package proclient.module.player;

    import proclient.module.Module;
    import Proclient.module.Category
    
    public class Fly extends Module {
        public Fly() {
            super("Fly", KeyboardConstants.KEY_NONE, Category.PLAYER)
        }
        
        public void onUpdate() {
            if(this.isToggled()) {
                Minecraft.getMinecraft().thePlayer.isFlying = true;
            }
        }
    }
        public void onDisable() {
            Minecraft.getMinecraft().thePlayer.isFlying = false;
        }

About

the sourcecode for the latest version of DragonX hacked client

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages