Jump to content

Acerd

Scripter I
  • Posts

    5430
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Posts posted by Acerd

  1. Introvert - charging energy alone because you had a social day

    Extrovert: charging energy by being with other people

    Eh I'm both I guess, after being around my friends for a long time, I prefer some time alone but when I'm alone on a sunday and kinda bored I love to go out and get energy from all my friends.

    Does it make sense?

    I'm a really outgoing person, but at the end of the day I prefer some time alone

    same

  2. Hi guys it's me Assnerd. Can someone Lend   give me an account so i can test my script  steal all your items. It'd mean a lot, thanks guys!  haha fuck you guys so easy scams.

    i dont even play rs lol, i dont have a paypal and i live in a country thats currency is irrelevant 

     

    scamming would be pointless

  3. with 30 or 40 agility (and access to canifis if 40) with members

     

     

     

    as for what im doing with your accounts; im gathering data only , shouldnt take that much time

     

     

     

     

     

     

     

    take this thread down @mods if it aint allowed

  4. Nah another user had this issue too, so the thing I posted helped him out. So I'm guessing it will help this user out too.

    Also could RAT yourself (if that works lol) or make a script that writes in what you type in.

  5. Use this:
    import org.osbot.rs07.api.ui.Tab;
    import org.osbot.rs07.script.Script;
    import org.osbot.rs07.script.ScriptManifest;
    import org.osbot.rs07.utility.ConditionalSleep;
    
    import java.awt.*;
    
    @ScriptManifest(author = "Rafael", info = "My first script", name = "Bebe vinho", version = 0.1, logo = "")
    public class main extends Script {
    
    	@Override
    	public void onStart() {
    		log("Começar com 'jugs of wine' no banco de falador");
    		AntiBan();
    	}
    
    	public void AntiBan() throws InterruptedException {
    		switch (random(1, 35)) {
    		case 1:
    			equipment.openTab();
    			break;
    		case 2:
    			skills.open();
                            break;                 
    		case 3:
    			camera.movePitch(40 + (random(2, 80)));
    			break;
    		case 4:
    			camera.moveYaw(110 + (random(20, 50)));
    			break;
    		}
    		sleep(random(250, 750));
    		tabs.open(Tab.INVENTORY);
    	}
    
    	private enum State {
    		DRINK, BANK, WAIT
    	};
    
    	private State getState() {
    		if (inventory.contains("Jug of wine") && !myPlayer().isAnimating())
    			return State.DRINK;
    		if (!inventory.contains("Jug of wine"))
    			return State.BANK;
    		return State.WAIT;
    	}
    
    	@Override
    	public int onLoop() throws InterruptedException {
    		switch (getState()) {
    		case DRINK:
    				getInventory().interact("Drink", "Jug of wine");
    				sleep(random(10, 150));
    			break;
    		case BANK:
    			if (!getBank().isOpen()) {
    				getBank().open();
    				new ConditionalSleep(500) {
    
    					@Override
    					public boolean condition() throws InterruptedException {
    						return !getBank().isOpen();
    					}
    
    				}.sleep();
    			}
    			if (getBank().isOpen() && getInventory().isEmpty() && !getInventory().contains("Jug of wine")
    					&& getBank().contains("Jug of wine")) {
    				getBank().withdrawAll("Jug of Wine");
    			} else if (getBank().isOpen() && !getInventory().isEmpty() && !getInventory().contains("Jug of wine")
    					&& getBank().contains("Jug of wine")) {
    				getBank().depositAll();
    				getBank().withdrawAll("Jug of Wine");
    			}
    			if (getBank().isOpen() && getInventory().contains("Jug of wine")) {
    				getBank().close();
    			}
    			break;
    		case WAIT:
    			sleep(random(300, 1000));
    			break;
    		}
    		return random(500, 1800);
    	}
    
    	@Override
    	public void onExit() {
    		log("Script parado. Bebado o suficiente?");
    	}
    
    	@Override
    	public void onPaint(Graphics2D g) {
    
    	}
    
    }
    
    

    Also if you dont mind me asking , why a wine drinker?

    • Like 2
×
×
  • Create New...