Adblock breaks this site

The Official RuneDream/DreamRS/JBot Thread

Discussion in 'RuneScape 3 Cheating' started by The Black Tux, Jan 14, 2012.

  1. nissan nut

    nissan nut Forum Addict

    Joined:
    Jun 9, 2008
    Posts:
    458
    Referrals:
    4
    Sythe Gold:
    29
    The Official RuneDream/DreamRS/JBot Thread

    Heres the script im working on
    Code:
    //Make sure that you have enough runes for the 'alchNumber' you set.
    //Make sure that you have only miscellaneous spells selected
    //and the item you want to alch (preferably noted) should be in the 3rd inventory slot.
    import java.awt.BasicStroke;
    import java.awt.Color;
    import java.awt.FontMetrics;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Point;
    import java.awt.Rectangle;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.util.LinkedList;
    import java.util.List;
    
    import org.runedream.api.Script;
    import org.runedream.api.ScriptManifest;
    import org.runedream.api.methods.Calculations;
    import org.runedream.api.methods.Game;
    import org.runedream.api.methods.ImageUtil;
    import org.runedream.api.methods.Mouse;
    import org.runedream.api.util.Log;
    import org.runedream.api.util.Random;
    
    @ScriptManifest(
             authors = { "Nissan Nut" },
             name = "Alcher",
             version = 1.0,
             description = "Simple Alcher Script",
             keywords = { "magic", "jbot", "alcher", "Nissan Nut"},
             language = { true, true, true, true })
    
    public class Alcher extends Script implements MouseListener {
    
    private int alchNumber = 100; //number of alchs
    private int moveMouse = 1;
    private int alchX = Random.random(647, 653);
    private int alchY = Random.random(220, 236);
    private int bookX = Random.random(734, 759);
    private int bookY = Random.random(172, 201);
    private int invenX = Random.random(644, 670);
    private int invenY = Random.random(172, 201);
    private Point alch = new Point(alchX, alchY);
    private Point book = new Point(bookX, bookY);
    private Point inven = new Point(invenX, invenY);
    private static final Color bookColor = new Color(139, 108, 44);
    private static final Rectangle VIEWPORT = new Rectangle(520, 168, 765, 465);
        @Override
        public int loop() {
            Mouse.setSpeed(Random.random(4, 7));
            Script.sleep(1000, 2500);
    		Mouse.click(inven);
    		while (alchNumber > 0)  {
    
    	         		if (VIEWPORT.contains(107, 76, 4)) && (VIEWPORT.contains(69, 249, 28)){ //if it can see the alch button
    	         		Mouse.click(alch);
    					Script.sleep(500, 2000);
    					Mouse.click(alch);
    					alchNumber--;
    					return Random.random(100, 500);
    				
    	         	} else if (VIEWPORT.contains(bookColor)) && (VIEWPORT.contains(17, 121, 20)){ //if it can see magic book and nats in inventory
    					Mouse.click(book);
    					return Random.random(1000, 3000);
    				} 
    	         	Script.sleep(700, 1200);
    	         	
    	         	if (moveMouse==0){
    	    			moveMouse = Random.random(4, 32); //moves mouse every 4-32 alchs
    	    			alch = new Point(alchX, alchY);
    	         	}else{
    	         		moveMouse--;
    	         	}
    			
    		}        
        }
    
    }
    I cant compile :S
     
  2. Quantrell

    Quantrell Newcomer

    Joined:
    Jan 17, 2012
    Posts:
    17
    Referrals:
    0
    Sythe Gold:
    0
    The Official RuneDream/DreamRS/JBot Thread

    Nice Script Nissan
     
  3. AverageRS

    AverageRS Newcomer

    Joined:
    Jan 17, 2012
    Posts:
    10
    Referrals:
    0
    Sythe Gold:
    0
    The Official RuneDream/DreamRS/JBot Thread

    It doesn't compile though. He's working on figuring out what's wrong.
     
  4. nissan nut

    nissan nut Forum Addict

    Joined:
    Jun 9, 2008
    Posts:
    458
    Referrals:
    4
    Sythe Gold:
    29
    The Official RuneDream/DreamRS/JBot Thread

    Final script, antiban not quite working but whatever.

    Code:
    //Make sure that you have enough runes for the 'alchNumber' you set.
    //Make sure that you have only miscellaneous spells selected
    //and the item you want to alch (preferably noted) should be in the 3rd inventory slot.
    import java.awt.BasicStroke;
    import java.awt.Color;
    import java.awt.FontMetrics;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Point;
    import java.awt.Rectangle;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.util.LinkedList;
    import java.util.List;
    
    import org.runedream.api.Script;
    import org.runedream.api.ScriptManifest;
    import org.runedream.api.methods.Calculations;
    import org.runedream.api.methods.Game;
    import org.runedream.api.methods.ImageUtil;
    import org.runedream.api.methods.Mouse;
    import org.runedream.api.util.Log;
    import org.runedream.api.util.Random;
    
    @ScriptManifest(
             authors = { "Nissan Nut" },
             name = "Alcher",
             version = 1.2,
             description = "Simple Alcher Script",
             keywords = { "magic", "jbot", "alcher", "Nissan Nut"},
             language = { true, true, true, true })
    
    public class Alcher extends Script implements MouseListener{
    
    
    		
    	
    	private int alchNumber = 100; //number of alchs
    	private int moveMouse = 5;
    	private int start = 1;
    	private int alchX = Random.random(647, 653);
    	private int alchY = Random.random(220, 236);
    	private int bookX = Random.random(734, 759);
    	private int bookY = Random.random(172, 201);
    	private int invenX = Random.random(644, 670);
    	private int invenY = Random.random(172, 201);
        private Rectangle debugBox = new Rectangle(0, 0, 1, 1);
    	//private Point alch = new Point(alchX, alchY);
    	private Point book = new Point(bookX, bookY);
    	private Point inven = new Point(invenX, invenY);
    	private static final Color bookColor = new Color(139, 108, 44);
    	private static final Rectangle VIEWPORT = new Rectangle(520, 168, 765, 465);
    	
    	 
    
    	    @Override
    	    public int loop() {
    	    	Point alch = new Point(alchX, alchY);
    	    	if (start==1){
    	    	    Mouse.setSpeed(Random.random(4, 7));
    	    		Mouse.click(inven);
    	    		Script.sleep(1000, 2500);
    	    		Mouse.click(book);
    	    	    Script.sleep(1000, 2500);
    	    		start++;
    	    	}
    			if (alchNumber>0){
    				Mouse.click(alch);
    				Script.sleep(500, 2000);
    				Mouse.click(alch);
    				alchNumber--;
    				return Random.random(300, 800);
    			} 
             	
             	if (moveMouse==0){
        			moveMouse = Random.random(4, 32); //moves mouse every 4-32 alchs
        			alchX = Random.random(647, 653);
        			alchY = Random.random(220, 236);
             	}else{
             		moveMouse--;
             	}
    			return Random.random(200, 300);
    	    }
    	  
    	    @Override
    	    public void mouseClicked(MouseEvent e) {
    	         if (debugBox.contains(e.getPoint())) {
    	         }
    	    }
    	    public void mouseEntered(MouseEvent e) {}
    	    public void mouseExited(MouseEvent e) {}
    	    public void mousePressed(MouseEvent e) {}
    	    public void mouseReleased(MouseEvent e) {}
    }
     
  5. Jimmy

    Jimmy Ghost
    Retired Sectional Moderator $5 USD Donor

    Joined:
    Jun 24, 2008
    Posts:
    2,421
    Referrals:
    10
    Sythe Gold:
    25
    The Official RuneDream/DreamRS/JBot Thread

    So is RuneDream/DreamRS open source?
     
  6. nissan nut

    nissan nut Forum Addict

    Joined:
    Jun 9, 2008
    Posts:
    458
    Referrals:
    4
    Sythe Gold:
    29
    The Official RuneDream/DreamRS/JBot Thread

    Yes it is.

    Im almost just finished a herb cleaner.
     
  7. ganja for life

    ganja for life Member

    Joined:
    Nov 30, 2011
    Posts:
    33
    Referrals:
    0
    Sythe Gold:
    0
    The Official RuneDream/DreamRS/JBot Thread

    i still can't login when i try to start up the client, any help please?
     
  8. Bailey888

    Bailey888 Apprentice
    Banned

    Joined:
    Feb 4, 2011
    Posts:
    625
    Referrals:
    0
    Sythe Gold:
    0
    The Official RuneDream/DreamRS/JBot Thread

    Cant access the site, must be down or maybe just my shitty laptop lol anyways currently what bots are working flawlessly and how long do they run?
     
  9. Yenthe666

    Yenthe666 Guru
    Banned

    Joined:
    Apr 10, 2011
    Posts:
    1,013
    Referrals:
    0
    Sythe Gold:
    0
    The Official RuneDream/DreamRS/JBot Thread

    Wow nice one Tux :D You sure know how to fix things.. :)
     
  10. Quantrell

    Quantrell Newcomer

    Joined:
    Jan 17, 2012
    Posts:
    17
    Referrals:
    0
    Sythe Gold:
    0
    The Official RuneDream/DreamRS/JBot Thread

    Run as guest
     
  11. The Black Tux

    The Black Tux Veteran
    The Black Tux Donor Java Programmers PHP Programmers

    Joined:
    Apr 19, 2009
    Posts:
    10,306
    Referrals:
    30
    Sythe Gold:
    55
    Vouch Thread:
    Click Here
    Two Factor Authentication User Cool Kid Former OMM Cook RsProd Sythe Awards 2012 Winner Village Drunk
    The Official RuneDream/DreamRS/JBot Thread

    No, it's closed source.

    This:
    --------------------------------
    It's been up since I started hosting it.
     
  12. vChrisz

    vChrisz Member

    Joined:
    Jan 17, 2012
    Posts:
    39
    Referrals:
    0
    Sythe Gold:
    0
    The Official RuneDream/DreamRS/JBot Thread

    i havent looked properly yet, but is this a fully working bot with scripts ready?
    if so which ones? and is it currently free?
     
  13. TxT

    TxT Guru
    Banned

    Joined:
    Jun 16, 2011
    Posts:
    1,081
    Referrals:
    0
    Sythe Gold:
    0
    The Official RuneDream/DreamRS/JBot Thread

    The website isnt loading for me? Is this happening to anyone else?
     
  14. crazypipe

    crazypipe #1 RS Powerleveler / over 1k accs sold

    Joined:
    Jul 3, 2007
    Posts:
    76,495
    Referrals:
    13
    Sythe Gold:
    504
    Discord Unique ID:
    552358074221068289
    Discord Username:
    www.crazy.gold#0001
    The Official RuneDream/DreamRS/JBot Thread

    TBT, are the antirandoms and 6hrs patched on jbot?
     
  15. bbbrttrader

    bbbrttrader Forum Addict
    Trade With Caution

    Joined:
    Feb 6, 2011
    Posts:
    364
    Referrals:
    0
    Sythe Gold:
    0
    The Official RuneDream/DreamRS/JBot Thread

    No, I asked the same thing alittle while back. This has good potential though.
     
  16. The Black Tux

    The Black Tux Veteran
    The Black Tux Donor Java Programmers PHP Programmers

    Joined:
    Apr 19, 2009
    Posts:
    10,306
    Referrals:
    30
    Sythe Gold:
    55
    Vouch Thread:
    Click Here
    Two Factor Authentication User Cool Kid Former OMM Cook RsProd Sythe Awards 2012 Winner Village Drunk
    The Official RuneDream/DreamRS/JBot Thread

    Being solved. Temp server activated.
     
  17. Frank0929

    Frank0929 Guru
    Banned

    Joined:
    Jun 8, 2011
    Posts:
    1,068
    Referrals:
    1
    Sythe Gold:
    0
    The Official RuneDream/DreamRS/JBot Thread

    The Black Tux what are the specs of your server?
     
  18. The Black Tux

    The Black Tux Veteran
    The Black Tux Donor Java Programmers PHP Programmers

    Joined:
    Apr 19, 2009
    Posts:
    10,306
    Referrals:
    30
    Sythe Gold:
    55
    Vouch Thread:
    Click Here
    Two Factor Authentication User Cool Kid Former OMM Cook RsProd Sythe Awards 2012 Winner Village Drunk
    The Official RuneDream/DreamRS/JBot Thread

    RuneDream is not only running in 1 of my servers :) Currently in 3. Plus an extra for DNS.

    And I can't disclose that information.
     
  19. yujee

    yujee Forum Addict

    Joined:
    Oct 26, 2011
    Posts:
    347
    Referrals:
    0
    Sythe Gold:
    10
    The Official RuneDream/DreamRS/JBot Thread

    oh cool, alching script is out.
     
  20. Vizionic

    Vizionic Newcomer

    Joined:
    Jan 8, 2012
    Posts:
    19
    Referrals:
    0
    Sythe Gold:
    0
    The Official RuneDream/DreamRS/JBot Thread

    has this been mod/admin verified as legit ? just curious cause i been waiting for powerbot to come back so i can get 50m xp in hunter but yea......they are slacking over there.
     
< Bot that restarts itself? | auto typer >


 
 
Adblock breaks this site