better autotip

This commit is contained in:
kirillsaint 2024-01-19 22:01:17 +06:00
parent 768eb07413
commit adce39dfe7
2 changed files with 3 additions and 1 deletions

View File

@ -25,6 +25,8 @@ public class ScoreboardMod extends Mod {
@Override @Override
public void setup() { public void setup() {
this.setUpdated(true);
this.addSliderSetting("Scale", this, 1, 0.3, 2, false); this.addSliderSetting("Scale", this, 1, 0.3, 2, false);
this.addBooleanSetting("Header Background", this, true); this.addBooleanSetting("Header Background", this, true);

View File

@ -36,7 +36,7 @@ public class AutoTipMod extends Mod {
@EventTarget @EventTarget
public void onTick(ClientTickEvent event) { public void onTick(ClientTickEvent event) {
if(Server.isHypixel()) { if(Server.isHypixel()) {
if(timer.delay(1200000)) { if(timer.delay(15000)) {
Client.logger.info("Attempting to tip: all"); Client.logger.info("Attempting to tip: all");
mc.thePlayer.sendChatMessage("/tip all"); mc.thePlayer.sendChatMessage("/tip all");
timer.reset(); timer.reset();