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 1 of 2 12 LastLast
Results 1 to 10 of 15
  1. #1
    Join Date
    May 2006
    Posts
    1,744
    Tokens
    0

    Latest Awards:

    Default LOL. You guys thinkg mouse clicking macros are bots

    delete pl0xx
    Last edited by FatJoe; 25-08-2007 at 02:54 AM.


  2. #2
    Join Date
    Jul 2007
    Location
    Brighton
    Posts
    626
    Tokens
    0

    Default

    go away

  3. #3
    Join Date
    Jul 2005
    Location
    Huntingdon
    Posts
    11,633
    Tokens
    0

    Latest Awards:

    Default

    They are.






  4. #4
    Join Date
    Aug 2005
    Location
    East London
    Posts
    2,578
    Tokens
    0

    Latest Awards:

    Default

    They are tbh, i think anyway.

  5. #5
    Join Date
    Jul 2005
    Location
    Huntingdon
    Posts
    11,633
    Tokens
    0

    Latest Awards:

    Default

    What's the point in creating a thread and saying delete ploxx anyway.






  6. #6
    Join Date
    Jul 2007
    Location
    Brighton
    Posts
    626
    Tokens
    0

    Default

    free post count init

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

    Latest Awards:

    Default

    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.


  8. #8
    Join Date
    Jul 2007
    Location
    Brighton
    Posts
    626
    Tokens
    0

    Default

    ibot = nexus..

  9. #9
    Join Date
    Nov 2006
    Posts
    1,882
    Tokens
    0

    Latest Awards:

    Default

    lol @ ^^^

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

    Latest Awards:

    Default

    Very good. I make scripts for it.


Page 1 of 2 12 LastLast

Posting Permissions

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