PDA

View Full Version : LOL. You guys thinkg mouse clicking macros are bots



FatJoe
25-08-2007, 02:47 AM
delete pl0xx

Narsh
25-08-2007, 12:46 PM
go away

Axel
25-08-2007, 12:48 PM
They are.

Naruto!
25-08-2007, 12:52 PM
They are tbh, i think anyway.

Axel
25-08-2007, 12:55 PM
What's the point in creating a thread and saying delete ploxx anyway.

Narsh
25-08-2007, 01:14 PM
free post count init

FatJoe
25-08-2007, 02:22 PM
not rly. i use iBot which doesn't use your mouse. minimizeable. more than 1 bot :)..

So yeah xD

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.

Narsh
25-08-2007, 03:28 PM
ibot = nexus..

Typoh.
25-08-2007, 03:44 PM
lol @ ^^^

FatJoe
25-08-2007, 04:11 PM
Very good. I make scripts for it.

RyanFTW
25-08-2007, 04:15 PM
not rly. i use iBot which doesn't use your mouse. minimizeable. more than 1 bot :)..

So yeah xD

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 ***.

Ashley 12344
25-08-2007, 04:51 PM
*****

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'.

Jambe
25-08-2007, 05:27 PM
They all cheat anyway and get you banned :)

FatJoe
25-08-2007, 06:39 PM
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

Mr.Sam
25-08-2007, 06:42 PM
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."

Want to hide these adverts? Register an account for free!