pushing without i even know it works or not
This commit is contained in:
parent
242b2835f7
commit
87a71235b4
3 changed files with 18 additions and 9 deletions
|
@ -95,7 +95,8 @@ public class SniperFlipperEvents {
|
|||
while (tries < 50) {
|
||||
if (InventoryUtils.inventoryNameStartsWith("BIN Auction View")) {
|
||||
clickWindow(latestWindowId, 31);
|
||||
clickWindow(latestWindowId + 1, 11);
|
||||
Thread.sleep(300 + new Random().nextInt(100));
|
||||
clickWindow(latestWindowId, 11);
|
||||
tries++;
|
||||
Thread.sleep(BED_SPAM_DELAY);
|
||||
}
|
||||
|
@ -115,8 +116,13 @@ public class SniperFlipperEvents {
|
|||
if (spam != null && spam.isAlive()) {
|
||||
spam.interrupt();
|
||||
}
|
||||
try {
|
||||
clickWindow(latestWindowId, 31);
|
||||
clickWindow(latestWindowId + 1, 11);
|
||||
Thread.sleep(300 + new Random().nextInt(100));
|
||||
clickWindow(latestWindowId, 11);
|
||||
} catch (Exception ignored) {
|
||||
|
||||
}
|
||||
} else {
|
||||
Utils.debugLog("Auction was bought by someone else, closing window");
|
||||
Lilase.mc.thePlayer.closeScreen();
|
||||
|
|
|
@ -18,6 +18,7 @@ import java.awt.*;
|
|||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
import java.util.Random;
|
||||
|
||||
import static me.night0721.lilase.config.AHConfig.SEND_MESSAGE;
|
||||
import static me.night0721.lilase.events.SniperFlipperEvents.ah_full;
|
||||
|
@ -117,10 +118,10 @@ public class Claimer extends Sniper {
|
|||
if (ScoreboardUtils.cleanSB(list.toString()).contains("Status: Sold")) {
|
||||
toClaim.add(i);
|
||||
try {
|
||||
Thread.sleep(300);
|
||||
Thread.sleep(400 + new Random().nextInt(100));
|
||||
clickWindow(Lilase.mc.thePlayer.openContainer.windowId, i);
|
||||
Thread.sleep(300);
|
||||
clickWindow(Lilase.mc.thePlayer.openContainer.windowId + 1, 31);
|
||||
Thread.sleep(500 + new Random().nextInt(100));
|
||||
clickWindow(Lilase.mc.thePlayer.openContainer.windowId, 31);
|
||||
if (SEND_MESSAGE) {
|
||||
try {
|
||||
webhook.addEmbed(new DiscordWebhook.EmbedObject()
|
||||
|
|
|
@ -18,6 +18,7 @@ import java.awt.*;
|
|||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
import java.util.Random;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
|
@ -120,9 +121,10 @@ public class Relister extends Sniper {
|
|||
int target = Math.round(price * 0.98f);
|
||||
String uuid = is.getTagCompound().getCompoundTag("ExtraAttributes").getString("uuid");
|
||||
clickWindow(Lilase.mc.thePlayer.openContainer.windowId, i);
|
||||
Thread.sleep(300);
|
||||
clickWindow(Lilase.mc.thePlayer.openContainer.windowId + 1, 31);
|
||||
Thread.sleep(300);
|
||||
Thread.sleep(300 + new Random().nextInt(100));
|
||||
clickWindow(Lilase.mc.thePlayer.openContainer.windowId, 31);
|
||||
Thread.sleep(300 + new Random().nextInt(100));
|
||||
|
||||
if (SEND_MESSAGE) {
|
||||
try {
|
||||
webhook.addEmbed(new DiscordWebhook.EmbedObject()
|
||||
|
|
Loading…
Reference in a new issue