Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15
  1. #11
    Join Date
    Aug 2007
    Posts
    185
    Tokens
    0

    Default

    Quote Originally Posted by FatJoe View Post
    not rly. i use iBot which doesn't use your mouse. minimizeable. more than 1 bot ..

    So yeah

    Heres some code from a script :

    import impsoft.nexus.bots.color.ColorBot;
    import impsoft.nexus.bots.color.scriptable.*;
    import impsoft.nexus.bots.color.scriptable.components.*;
    import impsoft.nexus.bots.color.scriptable.components.bot tom.*;
    import impsoft.nexus.bots.color.scriptable.components.gam escreen.*;
    import impsoft.nexus.bots.color.scriptable.components.min imap.*;
    import impsoft.nexus.bots.color.scriptable.components.tab .*;
    import impsoft.nexus.bots.color.scriptable.interfaces.*;
    import impsoft.nexus.bots.color.scriptable.objects.*;
    import impsoft.nexus.bots.color.structures.*;
    import impsoft.nexus.bots.color.util.*;
    import impsoft.nexus.bots.reflection.objects.*;
    import impsoft.nexus.bots.reflection.scriptable.component s.*;
    import impsoft.nexus.bots.reflection.structures.*;
    import java.awt.Color;
    import java.awt.Graphics;
    import javax.swing.JOptionPane;

    public class barbFish extends ColorScript implements AutoPaint
    {
    //commands to show up
    public static String[] commands = new String[] { "barbFish" };

    //author(s) of script
    public static String author = "Fiori";

    //Description of script
    public static String description = "";

    //Version of script
    public static double version = 1.1;

    public static String[] keepThings = new String[] { "Fishing rod", "Fly fishing rod", "Feather" };

    AryanTile fishTile = new AryanTile(3105, 3430);
    AryanTile bankTile = new AryanTile(3093, 3493);
    AryanTile deathTile = new AryanTile(3222, 3218);

    RGB[] fishSpot = new RGB[] {new RGB(168,200,239), new RGB(184,200,240)};
    EdgeRGBCluster theSpot = new EdgeRGBCluster(fishSpot, this);

    public String holder = "";
    public int baitLure = 0; //If 0 bait fishing if anything else lure fishing
    public int fishCount = 0;
    final Color red = new Color(0, 255, 255, 255);

    public barbFish (ColorBot b, String cmd, String args[]) {
    super(b, false);

    }

    //main loop
    public void script()throws InterruptedException {
    holder = JOptionPane.showInputDialog(null, "Enter what type of fishing(0 for bait, 1 for lure)", "Type of Fishing", JOptionPane.QUESTION_MESSAGE);
    baitLure = Integer.parseInt(holder);
    while(true) {
    if(!isDead()) {
    while(!theTabs.Inventory.isFull() && !isDead()) {
    doFish();
    }
    walkToBank();
    doBank();
    walkToFish();
    }else {
    youDied();
    }
    }
    }

    public void doFish()throws InterruptedException {
    if(baitLure == 0) {
    theSpot.doTopTextAndMenu("Fishing spot", "Bait Fishing spot");
    sleep(random(2000,4000));
    } else {
    theSpot.doTopTextAndMenu("Fishing spot", "Lure Fishing spot");
    sleep(random(20000,25000));
    }
    }

    public void walkToBank()throws InterruptedException {
    theWorldMap.walkTo(bankTile);
    }

    public void walkToFish()throws InterruptedException {
    theWorldMap.walkTo(fishTile);
    }

    public void youDied()throws InterruptedException {
    theWorldMap.walkTo(bankTile);
    theBank.open();
    theBank.doDepositAll();
    if(baitLure == 0) {
    theBank.doWithDraw1("Fishing rod");
    } else {
    theBank.doWithDraw1("Fly fishing rod");
    }
    theWorldMap.walkTo(fishTile);
    }

    public void doBank()throws InterruptedException {
    theBank.doDepositAllBut(keepThings);
    sleep(random(1000,2000));
    fishCount = fishCount + 26;
    }


    public void paint(Graphics g) {
    g.setColor(red);
    g.drawString("Fish Caught: " + fishCount, 4, 30);

    }

    public boolean isDead()throws InterruptedException {
    if(getLocation().distanceTo(deathTile) <= 15) {
    return true;
    } else {
    return false;
    }
    }
    }

    If you know Java you will understand if not. You will NOT understand.
    *****

    What the hell are you talking about? Aryan got patched ages ago you ***.

  2. #12
    Join Date
    Jul 2004
    Posts
    6,980
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by RyanFTW View Post
    *****

    What the hell are you talking about? Aryan got patched ages ago you ***.
    Yeah it did. Unless some *** tried to make a new bot using an Aryan tag for the 'hype'.
    Doubt everything, even this.

  3. #13
    Join Date
    Apr 2007
    Location
    Scotland :)
    Posts
    1,224
    Tokens
    0

    Latest Awards:

    Default

    They all cheat anyway and get you banned
    Watch Scrubs on Paramount its gd

  4. #14
    Join Date
    May 2006
    Posts
    1,744
    Tokens
    0

    Latest Awards:

    Default

    What the hell are you talking about? Aryan got patched ages ago you ***.
    WOW . I LOLED in real LIFE LOLLOL. That's isn't Aryan. It doesn't use ID's it uses colors kinda like SCAR just minimizable. Look it uses toptext and RGB's . Idiot


  5. #15
    Join Date
    May 2005
    Location
    Yokohama (Japan)
    Posts
    6,499
    Tokens
    0

    Latest Awards:

    Default

    Seeing as the program is using the game for you it is a bot because you are not controlling it a program is.

    "Simple computer program used to perform highly repetitive operations, e.g. trawling websites to collect email addresses. 2. Computer program run concurrently with an online game to give the player an unfair advantage. Bots may alter the game environment, boost the abilities of the player's character or hinder opponents. Writing bots requires a great deal of skill; using them almost none."
    (゚Д゚≡゚Д゚)

    Roy: [singing] We don't need no education.
    Moss: Yes you do; you've just used a double negative

Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •