Go to file
2023-06-28 11:12:02 -04:00
.idea publish 3.7 patch 3 2023-06-28 10:55:45 -04:00
.vscode many fixes 2023-03-28 00:05:22 +00:00
desktopRuntime publish 3.7 patch 3 2023-06-28 10:55:45 -04:00
gradle/wrapper Port to newest ver. 2023-01-19 00:23:31 +00:00
javascript i hate myself 2023-06-28 11:12:02 -04:00
src i forgot to update patchNum 2023-06-28 10:58:50 -04:00
.gitignore added Tab Settings to offline download 2023-04-13 14:25:03 -04:00
.prettierrc.yml reformat files tysm cold <3 2023-01-14 15:56:36 +00:00
build.gradle little fps boost (thanks cire) 2023-06-28 10:20:09 -04:00
CompileEPK.bat src 2023-01-12 04:06:59 +00:00
CompileEPK.sh Port resent 2023-01-12 22:10:43 +00:00
gradlew decompile eaglercraft 2022-12-27 18:59:46 +00:00
gradlew.bat src 2023-01-12 04:06:59 +00:00
MakeOfflineDownload.bat added Tab Settings to offline download 2023-04-13 14:25:03 -04:00
MakeOfflineDownload.sh emergency: hitboxes crashes on disabling. Fixed this. 2023-01-13 00:14:53 +00:00
offline.sh Idktbh 2023-02-20 16:00:37 +00:00
OfflineDownloadTemplate.txt me watching a video about cults and realizing whats wrong with my code 2023-01-13 06:04:15 +00:00
pack.mcmeta Add a cps utils class. 2023-01-18 03:57:27 +00:00
pp.bat port pp.sh to windows!! 2023-03-16 19:48:11 -04:00
pp.sh me when 2023-03-04 19:17:46 +00:00
ratio.zip cancer 2023-03-05 22:10:10 +00:00
README.md Update README.md 2023-06-16 10:23:26 +08:00
settings.gradle decompile eaglercraft 2022-12-27 18:59:46 +00:00
soffline.sh anti water lag 2023-03-05 04:36:18 +00:00
Start.java fps 2023-04-08 20:17:25 +00:00

in case this repo is open-sourced, here's some info:

(i wrote this with like 2 hours of sleep)

i have decided to fully quit eaglercraft and everything related for personal reasons (dont dig into my past, seriously. i don't like having severe paranoia that one of ur 12 year old asses is gonna raid my friend group). i first started working on this project a long time ago, and that means my code base and half of the code sucks an incredible amount of ass. if you're going to comment on code quality, don't. there are cheats in resent, what a surprise (xray and spawner esp, 3.5 reach), it's not hard to block the activation of these serverside. Finally, i loved my time in the eagler community (not really you all suck ngl) and it has affected me in many ways. (you may see me on mmc or mcpvp, feel free to talk to me or something)

alright, this notice is long enough. さようなら! (if you ever hear from me again i'll be back with a surprise)

fatal i know you're skidding this right now kys (uwu client always better)

ORIGINAL README BELOW:

Resent-1.8

if you're reading this, that means one of the following:

  • i open-sourced resent. this is most likely

  • another dev was added to the project.

  • you hacked into my account from my weak ass password and somehow bypassed github email verification.

     

either way, here's some documentation on this project. please note that I wrote all of this in a text editor so i probably made a few mistakes in the code.

Module system

   

Standard, non-render modules. (ex: fullbright, norain, tooltips)

create a new class structured like the following:

  @Module(name = "Example", category = Category.MISC) //theres another optional value, hasSetting, set to false by default.
  public class ExampleModule extends Mod {
    
    @Override //Overrides method in Mod class.
    public void onEnable(){
      //what happens when the module is enabled
    }
    
    @Override
    public void onDisable(){
      //what happens when the module is disabled
    }
  }

   

create a new class structured like this:

@RenderModule(name = "ExampleRender", category = Category.MISC, x = 4, y = 4)
public class ExampleRenderModule extends RenderModule {
  
  //this method is called in GuiIngame to draw stuff to the screen.
  public void draw(){
    mc.fontRendererObj.drawString("Test", this.getX(), this.getY(), -1 /* -1 is the color of the text. */);
  }
  
  //you can still use onEnable and onDisable methods.
}

 

Settings

not too difficult to figure out on your own, here's an example:

public class ExampleRenderModule extends RenderModule {
  public ExampleRenderModule(){
    addSetting(example);
  }
  
  public static BooleanSetting example = new BooleanSetting("Example", "" /* description */, true /* default value */);
  
  public void draw(){
    if(example.getValue())
    mc.fontRendererObj.drawString("Test", this.getX(), this.getY(), -1 /* -1 is the color of the text. */);
  }
  
}

^ this example was done with a booleansetting, its similar to a modesetting, too lazy to write a documentation for that cope.