Project Sierra 117

Reputation
0
Hello, I am Assassin for those that don't know and I got an idea today.
That idea was to make a collection of Bots made for the users of RuneGear only.
I have been thinking about this idea today and I decided to set it in motion.

I will start with some simple coding as I haven't coded in Java for a while but anyone can make scripts.

I'm currently making a Willow powercutter.(I know there are many but I just got to get familiar with the commands.)


Leader(s)

  • Assassin
  • iRetribution™


Member(s)
  • None

If you want to help just post and i will add you to the list.
(I will not make this a unofficial group right now but maybe late if allot want to help.)
 
RE: Prodject Sierra 117

Might want to fix your spelling and make it look more legit =P
I don't know anything about coding but I'll gladly support this.. Although it'll take quite a bit of time to get a few nice working scripts done.
 
RE: Prodject Sierra 117

I'd be glad to help you with this, as a leader or a member. (I have no coding skills). Sign me up for either, and you spelled Project Pordject. :p
 
RE: Prodject Sierra 117

Heres the paint currently.
Code:
  //START: Trololololol
    private Image getImage(String url) {
        try {
            return ImageIO.read(new URL(url));
        } catch(IOException e) {
            return null;
        }
    }

    private final Color color1 = new Color(0, 0, 0);
    private final Color color2 = new Color(255, 0, 153);

    private final BasicStroke stroke1 = new BasicStroke(1);

    private final Font font1 = new Font("Arial", 0, 17);

    private final Image img1 = getImage("http://runegear.net/images/Banner.png");

    public void onRepaint(Graphics g1) {
        Graphics2D g = (Graphics2D)g1;
        g.drawImage(img1, 28, 344, null);
        g.setColor(color1);
        g.setStroke(stroke1);
        g.drawRoundRect(551, 208, 182, 254, 16, 16);
        g.setFont(font1);
        g.setColor(color2);
        g.drawString("Made By: Assassin", 588, 459);
    }
    //END: Assassin Owns
 
Back
Top