?~ Can someone post All-antiban by WarX ~?

Discussion in 'Archives' started by I B0t 4 Phun, Nov 29, 2008.

Thread Status:
Not open for further replies.
?~ Can someone post All-antiban by WarX ~?
  1. Unread #1 - Nov 29, 2008 at 6:13 AM
  2. I B0t 4 Phun
    Joined:
    Nov 18, 2008
    Posts:
    181
    Referrals:
    0
    Sythe Gold:
    0

    I B0t 4 Phun Active Member
    Banned

    ?~ Can someone post All-antiban by WarX ~?

    Since rsbot is down and i can't find anywhere to download it, could someone post it and send me a link or via msn?

    Thx!
     
  3. Unread #2 - Nov 29, 2008 at 6:45 AM
  4. 'HaVoK'
    Joined:
    Nov 20, 2008
    Posts:
    670
    Referrals:
    0
    Sythe Gold:
    0

    'HaVoK' Apprentice
    Banned

    ?~ Can someone post All-antiban by WarX ~?

    rsbot is up again
     
  5. Unread #3 - Nov 29, 2008 at 7:00 AM
  6. I B0t 4 Phun
    Joined:
    Nov 18, 2008
    Posts:
    181
    Referrals:
    0
    Sythe Gold:
    0

    I B0t 4 Phun Active Member
    Banned

    ?~ Can someone post All-antiban by WarX ~?

    uhm yea, how do i save it as .java? o_O
     
  7. Unread #4 - Nov 29, 2008 at 7:20 AM
  8. rivgen
    Joined:
    Jul 22, 2008
    Posts:
    536
    Referrals:
    0
    Sythe Gold:
    0

    rivgen Forum Addict

    ?~ Can someone post All-antiban by WarX ~?

    Save it as AllAntiBan.java into the AntiBan's folder.
    Code:
    import com.speljohan.rsbot.script.Random;
    import com.speljohan.rsbot.bot.Bot;
    import com.speljohan.rsbot.logging.Log;
    import java.awt.event.*;
    
    import javax.swing.*;
    
    public class AllAntiBan extends Random {
    
        int randomInt;
        int GambleInt;
        long lastCheck = 0;
        long timer = System.currentTimeMillis();
        int checkTime;
        public String[] thingsToSayIdle = new String[] {
    ""};
    
    
        public String getName() {
            return "AllAntiBan";
        }
    
        public double getVersion() {
          return  01;
        }
    
        public String getAuthor() {
            return "WarXperiment";
        }
    
        private boolean timer(int seconds) {
            return System.currentTimeMillis() * 1000 < seconds;
        }
    
       public Log getLog() {
           if(LOG != null)
                LOG = null;
    
           return super.getLog();
        }
    
        public boolean activateCondition() {
            randomInt = random(1, 100);
            if (isLoggedIn() && randomInt == 50)
    		return true;
    
    	return random(0, 100) == 25;
        }
    	
    	public void turnCamera() {
        	char[] LR = new char[] { KeyEvent.VK_LEFT, KeyEvent.VK_RIGHT };
        	char[] UD = new char[] { KeyEvent.VK_DOWN, KeyEvent.VK_UP };
        	char[] LRUD = new char[] { KeyEvent.VK_LEFT, KeyEvent.VK_RIGHT,
        							 KeyEvent.VK_UP, KeyEvent.VK_DOWN };
        	int random2 = random(0,2);
        	int random1 = random(0,2);
        	int random4 = random(0,4);
        	
        	if(random(0,3) == 0) {
            	Bot.getInputManager().pressKey(LR[random1]);
            	try { Thread.sleep(random(100, 400)); } catch (Exception e) {}
            	Bot.getInputManager().pressKey(UD[random2]);
            	try { Thread.sleep(random(300, 600)); } catch (Exception e) {}
            	Bot.getInputManager().releaseKey(UD[random2]);
            	try { Thread.sleep(random(100, 400)); } catch (Exception e) {}
            	Bot.getInputManager().releaseKey(LR[random1]);        		
        	} else {
        		Bot.getInputManager().pressKey(LRUD[random4]);
        		if(random4>1) {
        			try { Thread.sleep(random(300, 600)); } catch (Exception e) {}
        		} else {
        			try { Thread.sleep(random(500, 900)); } catch (Exception e) {}
        		}
        		Bot.getInputManager().releaseKey(LRUD[random4]);
        	}
        }
    	
    	
        public int loop() {
            GambleInt = random(1, 20);
    		if (GambleInt == 1) {
    			turnCamera();
    		}
    
    		if (GambleInt == 2) {
    			int xA = random(0, 750);
    			int yA = random(0, 500);
    			moveMouse(xA, yA);
    			turnCamera();
    		}
    		
    		if (GambleInt == 3) {
    			if (getCurrentTab() != TAB_INVENTORY) {
    				openTab(TAB_INVENTORY);
    				turnCamera();
    			}
    		}
    
    		if (GambleInt == 4) {
    			clickCharacter(getNearestPlayerByLevel(1,130) , "Cancel");
    			return (random(500, 1750));
    		}
    
    		if ((System.currentTimeMillis() - lastCheck) >= checkTime) {
    			lastCheck = System.currentTimeMillis();
    			checkTime = random(300000, 600000);
    			turnCamera();
    		        openTab(random(0, 13));
    			turnCamera();
    		}
    		
    		
    		if (GambleInt == 5) {
    	    	        turnCamera();
    			int xA = random(0, 750);
    			int yA = random(0, 500);
    			moveMouse(xA, yA);
    		}
    		
    		if (GambleInt == 6) 
    			turnCamera();
    			
    		if (GambleInt == 7) 
    			openTab(random(0, 13));
    			
    		if (GambleInt == 8) 
    			moveMouse(random(0,450), random(0,450));
    
    		return -1;
    	}	
    }
     
  9. Unread #5 - Nov 30, 2008 at 5:44 AM
  10. I B0t 4 Phun
    Joined:
    Nov 18, 2008
    Posts:
    181
    Referrals:
    0
    Sythe Gold:
    0

    I B0t 4 Phun Active Member
    Banned

    ?~ Can someone post All-antiban by WarX ~?

    nevermind
     
  11. Unread #6 - Nov 30, 2008 at 9:57 AM
  12. iKILLbeers
    Joined:
    Nov 19, 2008
    Posts:
    90
    Referrals:
    0
    Sythe Gold:
    0

    iKILLbeers Member

    ?~ Can someone post All-antiban by WarX ~?

    lol!!!!! ahahahahahahah rsbot is never up............. same people that run jagex must run rsbot
     
  13. Unread #7 - Nov 30, 2008 at 10:02 AM
  14. Thug319
    Referrals:
    0

    Thug319 Guest

    ?~ Can someone post All-antiban by WarX ~?

    Thanks, I really needed this. I thought that I had this script but I was mistaken

    Thanks :)
     
  15. Unread #8 - Nov 30, 2008 at 10:11 AM
  16. SMEGPOT
    Joined:
    Nov 29, 2008
    Posts:
    68
    Referrals:
    1
    Sythe Gold:
    0

    SMEGPOT Member

    ?~ Can someone post All-antiban by WarX ~?

    what extras are in this script like guys ?

    Thanks.
     
< How to fix: RSbot - Tools.jar / JDK Errors. | Selling level 50 pure ranger 70range/1 defence. >

Users viewing this thread
1 guest
Thread Status:
Not open for further replies.


 
 
Adblock breaks this site