Adblock breaks this site

How do I load RuneScape?

Discussion in 'Programming General' started by Mogyt, Jun 24, 2007.

  1. Mogyt

    Mogyt Guest

    Referrals:
    0
    How do I load RuneScape?

    Hi. I have created window, but don't know how to load to it RuneScape. If you know how to do it please post. Thanks for help :)
     
  2. Doombringe1

    Doombringe1 Forum Addict

    Joined:
    May 19, 2007
    Posts:
    471
    Referrals:
    0
    Sythe Gold:
    0
    How do I load RuneScape?

    well what you have to do is put the link in the window duh. You have to make the window the same size as the runescape window and then you just put in your script for the window to open the runescape window.
     
  3. speljohan

    speljohan Guru
    Visual Basic Programmers

    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0
    How do I load RuneScape?

    or you could download the classes, hook the runescape canvas using an updater and put the canvas in a JFrame.
     
  4. Doombringe1

    Doombringe1 Forum Addict

    Joined:
    May 19, 2007
    Posts:
    471
    Referrals:
    0
    Sythe Gold:
    0
    How do I load RuneScape?

    speljohan. OMG i cant believe i didnt think of that.. That is so much easier than what i said. Thank you buddy you just made my life a lot easier.
     
  5. speljohan

    speljohan Guru
    Visual Basic Programmers

    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0
    How do I load RuneScape?

    sarcasm much? :p
     
  6. SidStudios

    SidStudios Active Member

    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0
    How do I load RuneScape?

    How do you use a JFrame? I use JCreator LE 4.0, I'm new to Java.
     
  7. speljohan

    speljohan Guru
    Visual Basic Programmers

    Joined:
    Apr 24, 2005
    Posts:
    1,450
    Referrals:
    3
    Sythe Gold:
    0
    How do I load RuneScape?

    make your base application inherit a JFrame. Let me write a quick one up:
    Code:
    import javax.swing.*;
    
    public class HelloWorld extends JFrame {
    
    public static void main(String []args) {
    HelloWorld app = new HelloWorld();
    }
    
    public HelloWorld() {
    this.setSize(400,600);
    this.setTitle("My Test Window");
    this.setVisible(true);
    }
    }
    not sure if it will works as i just wrote out of my head.
     
< Dev-C++ help | SidNET 0.3 >


 
 
Adblock breaks this site