delete pl0xx
Printable View
delete pl0xx
go away
They are.
They are tbh, i think anyway.
What's the point in creating a thread and saying delete ploxx anyway.
free post count init
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.
ibot = nexus..
lol @ ^^^
Very good. I make scripts for it.
They all cheat anyway and get you banned :)
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 . IdiotQuote:
What the hell are you talking about? Aryan got patched ages ago you ***.
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."