Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Rainbow

Pages: 1 ... 293 294 295 296 297 [298] 299 300 301 302 303 ... 467
4456
Off Topic / Re: Post your thoughts of the above user's signature.
« on: December 14, 2010, 11:15:09 PM »
Ill always bee your friend rookie

4457
Off Topic / Re: Post your thoughts of the above user's signature.
« on: December 14, 2010, 11:10:27 PM »
Magick loves us all

except muzzles56
for being black and irish

4458
Off Topic / Re: Military Academy :S
« on: December 14, 2010, 09:53:43 PM »
Rookie, i sent you a pm of a link to tinychat


4459
Off Topic / Re: RSbot - It works!
« on: December 14, 2010, 09:33:45 PM »
Anyone botting chickens?

hit chicken

RUN THE HELL AWAY

hit chicken

repeat

4460
Off Topic / Re: Military Academy :S
« on: December 14, 2010, 09:32:39 PM »
ontopic: this might suck for you

offtopic: rookie i sent you a pm asdgdfh

4461
Drama / Re: Bloody Mary is A.R.C!
« on: December 14, 2010, 09:20:09 PM »
post the real steam chat pic or it isnt legit

also pinetree

4462
Off Topic / Re: Yogamoanyo...
« on: December 14, 2010, 08:49:23 PM »
Who gonna sing them buhbokabuh's  :cookieMonster:

buhbookabuh

4463
Off Topic / Re: RSbot - It works!
« on: December 14, 2010, 08:48:24 PM »
Also
All Legit


83 CB


pine tree or it isnt legit

4464
Off Topic / Re: Ctrl + V game.
« on: December 14, 2010, 08:44:09 PM »
Once upon a time there was a lone soldier who was allergic to grass and phone1.  That older head2 had the nose of a bumblebee and berated3.  Can you remember I did not ever say and berated.  Towers all the way to grandma's house4.  Folger county was bounded5 by Mexican immigrants in 1809. It was a peaceful town until the cowboys and samurai brought their bloody war to it.  Back to the lone soldier story.  He was drinking all these warnings6 when he suddenly realized that you're gonna die good and whether do a nude to convene erated denied that can lead to a pack of the above a popup if two erated that these edits a suntan erated to erated7.  Suddenly a cowboy jumped out of A bush and totally killed all the samurai with Bob Dylan the villain8. And who can deny how totally awesome that would be.

4465
Off Topic / Re: whoooooo parents almost found my research
« on: December 14, 2010, 08:37:05 PM »

everything inside there

4466
Off Topic / Re: RSbot - It works!
« on: December 14, 2010, 08:28:56 PM »
Hmmm I wonder what it is. Maybe Origuthan?

Yeah, probably that one.

pwnd.

Always hide your name in screenshots :)

4467
Off Topic / Re: Ctrl + V game.
« on: December 14, 2010, 08:16:31 PM »
WhiteBearEssenceMiner.java

4468
Off Topic / Re: (country/region/race), UNITE! megathread
« on: December 14, 2010, 07:52:52 PM »
Yes

meberlist:
- Rainbow
- D3ATHCAT
- Mr.jacksaunt
- steve5451
- 1/2 The Titanium
-
-
-
-
-
-
-
-
-
-
-


4469
Off Topic / Re: Northern Americans, UNITE!
« on: December 14, 2010, 07:50:32 PM »
updated list

4470
Off Topic / Re: Ctrl + V game.
« on: December 14, 2010, 07:03:40 PM »
Code: [Select]
//Script made by Beaker of Powerbot.org 




import org.rsbot.script.ScriptManifest;
import org.rsbot.script.Script;
import java.awt.*;

import javax.imageio.ImageIO;
import java.io.IOException;
import java.net.URL;
import org.rsbot.event.listeners.PaintListener;
import org.rsbot.script.methods.Mouse;
import org.rsbot.script.methods.Skills;
import org.rsbot.script.wrappers.RSNPC;


@ScriptManifest(authors = "Beaker", keywords = "Fisher", name = "PowerFisher", version =

1.4, description = "Fishes Trout/Salmon at Barbarian Village, drops, repeats.")
public class PowerFisher extends Script implements PaintListener{
    

    int PoleID = 309;
    int[] FishID = {331, 335};
    int[] FishSpot = {328, 329};
    int FeatherID = 314;
    public long startTime = System.currentTimeMillis();
    private String status = "";
    public int startexp;
    int XPhour;
    int startLevel;
    
    private Image getImage(String url) {
        try {
            return ImageIO.read(new URL(url));
        } catch(IOException e) {
            return null;
        }
    }

    private final Image img1 =

getImage("http://img440.imageshack.us/img440/3803/betterw.jpg");

    public void onRepaint(Graphics g1) {
        int EXPtill = skills.getExpToNextLevel(Skills.FISHING);
        int currentLevel = skills.getCurrentLevel(Skills.FISHING);
        int levelsGained = currentLevel - startLevel;
        int xpGained = 0;
        if ( startexp == 0) {
        startexp = skills.getCurrentExp(Skills.FISHING);
        }
        xpGained = skills.getCurrentExp(Skills.FISHING) - startexp;
        long millis = System.currentTimeMillis() - startTime;
        long hours = millis / (1000 * 60 * 60);
        millis -= hours * (1000 * 60 * 60);
        long minutes = millis / (1000 * 60);
        millis -= minutes * (1000 * 60);
        long seconds = millis / 1000;
        long minutes2 = minutes + (hours * 60);

        Graphics2D g = (Graphics2D)g1;
        g.drawImage(img1, 2, 338, null);
        g.setColor(Color.red);
        g.drawString("Run Time : " + hours + ":" + minutes + ":" + seconds , 16, 414);
        g.drawString("XP Gained : " +xpGained , 16, 424);
        g.drawString("Levels Gained : " +levelsGained , 16, 434);
        g.drawString("XP Until Level : " +EXPtill , 16, 444);
        g.drawString("XP Per Hour : " +XPhour , 16, 454);
        g.drawString("Status : " +status , 195, 454);
        float xpsec = 0;
        if ((minutes > 0 || hours > 0 || seconds > 0) && xpsec > 0) {
        xpsec = ((float) xpsec)/(float)(seconds + (minutes*60) + (hours*60*60));
        }
        float xpmin = xpsec * 60;
        float XPhour = xpmin * 60;

    }



    
    public boolean onStart(){
        mouse.setSpeed(7);
        log("PowerFisher by Beaker has Successfully Started");
        startLevel = skills.getCurrentLevel(Skills.getIndex("fishing"));
        startexp = skills.getCurrentExp(Skills.getIndex("fishing"));

        return true;
    }
    

    
    public void antiBan() {

        int b = random(0, 10);
         switch (b) {

         case 1: //Checking Fishing XP
                if (random(0,4) == 4) {
                status = ("Checking Fishing XP");
                game.openTab(1);
                skills.doHover(Skills.INTERFACE_FISHING);
                sleep(random(3000, 4000));
          }
          break;

         case 2: //Mouse off Screen
                if (random(0,4) == 3) {
                status = ("Moving Mouse Off Screen");
                mouse.moveOffScreen();
                sleep(random(2000, 5500));
          }
          break;

         case 3: //Move Mouse
                if (random(0,4) == 2) {
                status = ("Moving Mouse");          
                mouse.moveSlightly();
                sleep(300, 700);
                mouse.moveRandomly(40, 860);
          }
          break;        

         case 4: //Turn Screen
                if (random(0, 4) == 1) {
                status = ("Rotating Screen");
                camera.setAngle(random(100, 359));
                sleep(500,1500);
          }
          break;

          default:

          break;

            }
        }
    
    public void Fish() {
        status = ("Fishing");
        if(getMyPlayer().getAnimation() == -1){
        RSNPC Spot = npcs.getNearest(FishSpot);
        if (Spot.doAction("Lure")) {
        Spot.doAction("Lure");
            sleep(random(150, 1000));
        }
              return;
              
              
        }

        }

            
  
    

    public int loop(){
        antiBan();
        Fish();
 
        
        if(inventory.isFull()){
            status = ("Dropping Fish");
            inventory.dropAllExcept(PoleID, FeatherID);
             inventory.dropAllExcept(PoleID, FeatherID);
            random(100, 110);
      }
        
        return 1000;
    }
    

      

    
    
    public void onFinish(){
        log("PowerFisher Terminated");
    }
}

Pages: 1 ... 293 294 295 296 297 [298] 299 300 301 302 303 ... 467