The Official RuneDream/DreamRS/JBot Thread

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

The Official RuneDream/DreamRS/JBot Thread
  1. Unread #161 - Jan 22, 2012 at 1:21 AM
  2. nissan nut
    Joined:
    Jun 9, 2008
    Posts:
    458
    Referrals:
    4
    Sythe Gold:
    29

    nissan nut Forum Addict

    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
     
  3. Unread #162 - Jan 22, 2012 at 1:28 AM
  4. Quantrell
    Joined:
    Jan 17, 2012
    Posts:
    17
    Referrals:
    0
    Sythe Gold:
    0

    Quantrell Newcomer

    The Official RuneDream/DreamRS/JBot Thread

    Nice Script Nissan
     
  5. Unread #163 - Jan 22, 2012 at 1:33 AM
  6. AverageRS
    Joined:
    Jan 17, 2012
    Posts:
    10
    Referrals:
    0
    Sythe Gold:
    0

    AverageRS Newcomer

    The Official RuneDream/DreamRS/JBot Thread

    It doesn't compile though. He's working on figuring out what's wrong.
     
  7. Unread #164 - Jan 22, 2012 at 1:48 AM
  8. nissan nut
    Joined:
    Jun 9, 2008
    Posts:
    458
    Referrals:
    4
    Sythe Gold:
    29

    nissan nut Forum Addict

    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) {}
    }
     
  9. Unread #165 - Jan 22, 2012 at 5:25 AM
  10. Jimmy
    Joined:
    Jun 24, 2008
    Posts:
    2,421
    Referrals:
    10
    Sythe Gold:
    25

    Jimmy Ghost
    Retired Sectional Moderator $5 USD Donor

    The Official RuneDream/DreamRS/JBot Thread

    So is RuneDream/DreamRS open source?
     
  11. Unread #166 - Jan 22, 2012 at 6:17 AM
  12. nissan nut
    Joined:
    Jun 9, 2008
    Posts:
    458
    Referrals:
    4
    Sythe Gold:
    29

    nissan nut Forum Addict

    The Official RuneDream/DreamRS/JBot Thread

    Yes it is.

    Im almost just finished a herb cleaner.
     
  13. Unread #167 - Jan 22, 2012 at 6:59 AM
  14. ganja for life
    Joined:
    Nov 30, 2011
    Posts:
    33
    Referrals:
    0
    Sythe Gold:
    0

    ganja for life Member

    The Official RuneDream/DreamRS/JBot Thread

    i still can't login when i try to start up the client, any help please?
     
  15. Unread #168 - Jan 22, 2012 at 7:08 AM
  16. Bailey888
    Joined:
    Feb 4, 2011
    Posts:
    625
    Referrals:
    0
    Sythe Gold:
    0

    Bailey888 Apprentice
    Banned

    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?
     
  17. Unread #169 - Jan 22, 2012 at 7:13 AM
  18. Yenthe666
    Joined:
    Apr 10, 2011
    Posts:
    1,013
    Referrals:
    0
    Sythe Gold:
    0

    Yenthe666 Guru
    Banned

    The Official RuneDream/DreamRS/JBot Thread

    Wow nice one Tux :D You sure know how to fix things.. :)
     
  19. Unread #170 - Jan 22, 2012 at 7:19 AM
  20. Quantrell
    Joined:
    Jan 17, 2012
    Posts:
    17
    Referrals:
    0
    Sythe Gold:
    0

    Quantrell Newcomer

    The Official RuneDream/DreamRS/JBot Thread

    Run as guest
     
  21. Unread #171 - Jan 22, 2012 at 11:26 AM
  22. The Black Tux
    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 Black Tux Veteran
    The Black Tux Donor Java Programmers PHP Programmers

    The Official RuneDream/DreamRS/JBot Thread

    No, it's closed source.

    This:
    --------------------------------
    It's been up since I started hosting it.
     
  23. Unread #172 - Jan 22, 2012 at 11:34 AM
  24. vChrisz
    Joined:
    Jan 17, 2012
    Posts:
    39
    Referrals:
    0
    Sythe Gold:
    0

    vChrisz Member

    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?
     
  25. Unread #173 - Jan 22, 2012 at 2:34 PM
  26. TxT
    Joined:
    Jun 16, 2011
    Posts:
    1,081
    Referrals:
    0
    Sythe Gold:
    0

    TxT Guru
    Banned

    The Official RuneDream/DreamRS/JBot Thread

    The website isnt loading for me? Is this happening to anyone else?
     
  27. Unread #174 - Jan 22, 2012 at 2:47 PM
  28. crazypipe
    Joined:
    Jul 3, 2007
    Posts:
    76,495
    Referrals:
    13
    Sythe Gold:
    504
    Discord Unique ID:
    552358074221068289
    Discord Username:
    www.crazy.gold#0001

    crazypipe #1 RS Powerleveler / over 1k accs sold

    The Official RuneDream/DreamRS/JBot Thread

    TBT, are the antirandoms and 6hrs patched on jbot?
     
  29. Unread #175 - Jan 22, 2012 at 3:09 PM
  30. bbbrttrader
    Joined:
    Feb 6, 2011
    Posts:
    364
    Referrals:
    0
    Sythe Gold:
    0

    bbbrttrader Forum Addict
    Trade With Caution

    The Official RuneDream/DreamRS/JBot Thread

    No, I asked the same thing alittle while back. This has good potential though.
     
  31. Unread #176 - Jan 22, 2012 at 5:12 PM
  32. The Black Tux
    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 Black Tux Veteran
    The Black Tux Donor Java Programmers PHP Programmers

    The Official RuneDream/DreamRS/JBot Thread

    Being solved. Temp server activated.
     
  33. Unread #177 - Jan 22, 2012 at 5:17 PM
  34. Frank0929
    Joined:
    Jun 8, 2011
    Posts:
    1,068
    Referrals:
    1
    Sythe Gold:
    0

    Frank0929 Guru
    Banned

    The Official RuneDream/DreamRS/JBot Thread

    The Black Tux what are the specs of your server?
     
  35. Unread #178 - Jan 22, 2012 at 9:58 PM
  36. The Black Tux
    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 Black Tux Veteran
    The Black Tux Donor Java Programmers PHP Programmers

    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.
     
  37. Unread #179 - Jan 22, 2012 at 10:25 PM
  38. yujee
    Joined:
    Oct 26, 2011
    Posts:
    347
    Referrals:
    0
    Sythe Gold:
    10

    yujee Forum Addict

    The Official RuneDream/DreamRS/JBot Thread

    oh cool, alching script is out.
     
  39. Unread #180 - Jan 23, 2012 at 11:19 PM
  40. Vizionic
    Joined:
    Jan 8, 2012
    Posts:
    19
    Referrals:
    0
    Sythe Gold:
    0

    Vizionic Newcomer

    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 >

Users viewing this thread
1 guest


 
 
Adblock breaks this site