delete pl0xx

delete pl0xx
Last edited by FatJoe; 25-08-2007 at 02:54 AM.
go away
They are tbh, i think anyway.
free post count init
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.
ibot = nexus..
lol @ ^^^
Very good. I make scripts for it.
Want to hide these adverts? Register an account for free!