Jump to content

Sellout

Moderators
  • Posts

    284
  • Joined

  • Last visited

  • Days Won

    23

Posts posted by Sellout

  1. 2 hours ago, n8820i said:

    Like astral rune just tele to bank if you got all quest done and run/walk to altar but epicbot haven't release any new scripts for long time now. I think I may move to other site soon. I like epicbot but not much scripts that I want right now.

    Right now there are other things that are more important then new scripts.

    After that is fixed you will see some new scripts, like RC etc etc.

  2. 2 hours ago, SunIsLegit said:

    So I read the script and it doesn't seem to have randomized clicks and auto logout features, is it incorporated in any of the imports? If not I was considering to add it, although I would make this an iron mining script.

    That is all handled by the client

  3. 5 hours ago, Mitchellsax said:

    The motherloade script work fine but it clicked way to fast event when it’s mining it just keeps clicking 

     

    could you add a better description and a screenshot/gif?

  4. 1 hour ago, greg8134 said:

    As stated above when I attempted to open the file after downloading, I got a popup that stated. " We are unable to find who the developer is therefore we cannot verify it is malware free." Any ideas? 

    disable your AV

  5. 10 hours ago, nfechoclixo said:

    Nem vou comentar aqui o caso que ja falei no outro post, mas baniram varias conta minha.e aqui nao tive suporte digno em ficaram a desejar mas ok.

    This is an English speaking forum, please use google translate

  6. On 4/22/2021 at 12:23 AM, lol_marcus said:

    Enjoy.

    
    import com.epicbot.api.shared.APIContext;
    import com.epicbot.api.shared.GameType;
    
    import com.epicbot.api.shared.script.LoopScript;
    import com.epicbot.api.shared.script.ScriptManifest;
    import com.epicbot.api.shared.util.paint.frame.PaintFrame;
    import com.epicbot.api.shared.util.time.Time;
    
    import java.awt.*;
    
    @ScriptManifest(name = "Pie Sheller", gameType = GameType.OS)
    public class PieSheller extends LoopScript {
    
    	private long startTime;
    
    	@Override
    	public boolean onStart(String... strings) {
    		startTime = System.currentTimeMillis();
    		return true;
    	}
    
    	@Override
    	protected int loop() {
    		if (!getAPIContext().inventory().contains("Pastry dough", "Pie dish")) {
    			bank();
    		} else {
    			combine();
    		}
    		return 700;
    	}
    
    	private void bank() {
    		if (!getAPIContext().bank().isOpen()) {
    			getAPIContext().bank().open();
    			Time.sleep(5_000, () -> getAPIContext().bank().isOpen());
    		}
    
    		else if (getAPIContext().bank().isOpen()) {
    			getAPIContext().bank().depositInventory();
    			Time.sleep(5_000, () -> getAPIContext().bank().isOpen());
    			getAPIContext().bank().withdraw(14, "Pastry dough");
    			Time.sleep(5_000, () -> getAPIContext().inventory().contains("Pastry dough"));
    			getAPIContext().bank().withdraw(14, "Pie dish");
    			Time.sleep(5_000, () -> getAPIContext().inventory().contains("Pie dish"));
    			getAPIContext().bank().close();
    
    		}
    
    	}
    
    	private void combine() {
    		if (getAPIContext().inventory().contains("Pastry dough", "Pie dish")) {
    			getAPIContext().inventory().selectItem("Pastry dough", "Use");
    			Time.sleep(5_000, () -> getAPIContext().inventory().isItemSelected());
    			getAPIContext().inventory().selectItem("Pie dish");
    			Time.sleep(5_000, () -> !getAPIContext().dialogues().isChatOpen());
    			getAPIContext().keyboard().sendText(" ", true);
    			Time.sleep(30_000, () -> getAPIContext().localPlayer().isAnimating()
    					|| !getAPIContext().inventory().contains("Pastry dough", "Pie dish"));
    
    		}
    	}
    
    	@Override
    	protected void onPaint(Graphics2D g, APIContext ctx) {
    		PaintFrame pf = new PaintFrame();
    		pf.setTitle("Pie Sheller Script by Marcus");
    		pf.addLine("Runtime: ", Time.getFormattedRuntime(startTime));
    		pf.draw(g, 0, 90, ctx);
    	}
    }

     

    oof

    • Sad 1
  7. 12 hours ago, FatBlackRabbit said:

    Whenever I open epicbot it logs me in automatically and I can't seem to find the logout button. Is there any way to do this?

    dont select an account when starting a script and it should not log you back in

×
×
  • Create New...