LowDepTraii
New member
- Joined
- Sep 4, 2020
- Messages
- 111
- Reaction score
- 2
- Points
- 0
Hi! Recently (not actually its like 3 - 4 months ago) i found out how you could make a simple silent cheststealer. Here's how:
1st: You create a Boolean Option in your Chest Stealer Module (not req).
2nd: Go to GuiContainer.java on your project
3rd: Inside it, there's a method called drawScreen (int mouseX, int mouseY, float partialTicks) {...}
4th. Right below the method, do
if (silentStealer.getValue ()) {
if (! Mouse.isGrabbed ()) {
mc.inGameHasFocus = true;
mc.mouseHelper.grabMouseCursor ();
}
}
5th. it should look something like the picture below (Yes it's not Eclipse cuz I am lazy to open it)
6th. You're done!
1st: You create a Boolean Option in your Chest Stealer Module (not req).
2nd: Go to GuiContainer.java on your project
3rd: Inside it, there's a method called drawScreen (int mouseX, int mouseY, float partialTicks) {...}
4th. Right below the method, do
if (silentStealer.getValue ()) {
if (! Mouse.isGrabbed ()) {
mc.inGameHasFocus = true;
mc.mouseHelper.grabMouseCursor ();
}
}
5th. it should look something like the picture below (Yes it's not Eclipse cuz I am lazy to open it)
6th. You're done!