Thread: [Renamed]Disable Background Flipping

Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1 [Renamed]Disable Background Flipping 
    Retired. Stop PMing me.

    Galkon's Avatar
    Join Date
    Nov 2007
    Age
    14
    Posts
    7,528
    Thanks given
    1,783
    Thanks received
    2,822
    Discord
    View profile
    Rep Power
    5000
    Replace drawLogo() with this:

    Code:
        private void drawLogo() {
            byte abyte0[] = titleStreamLoader.getDataForName("title.dat");
            Sprite sprite = new Sprite(abyte0, this);
            aRSImageProducer_1110.initDrawingArea();
            sprite.method346(0, 0);
            aRSImageProducer_1111.initDrawingArea();
            sprite.method346(-637, 0);
            aRSImageProducer_1107.initDrawingArea();
            sprite.method346(-128, 0);
            aRSImageProducer_1108.initDrawingArea();
            sprite.method346(-202, -371);
            aRSImageProducer_1109.initDrawingArea();
            sprite.method346(-202, -171);
            aRSImageProducer_1112.initDrawingArea();
            sprite.method346(0, -265);
            aRSImageProducer_1113.initDrawingArea();
            sprite.method346(-562, -265);
            aRSImageProducer_1114.initDrawingArea();
            sprite.method346(-128, -171);
            aRSImageProducer_1115.initDrawingArea();
            sprite.method346(-562, -171);
            int ai[] = new int[sprite.myWidth];
            for(int j = 0; j < sprite.myHeight; j++) {
                for(int k = 0; k < sprite.myWidth; k++)
                    ai[k] = sprite.myPixels[(sprite.myWidth - k - 1) + sprite.myWidth * j];
    
                System.arraycopy(ai, 0, sprite.myPixels, sprite.myWidth * j, sprite.myWidth);
            }
    
            sprite = null;
            Object obj = null;
            Object obj1 = null;
            System.gc();
        }
    Also removes the RuneScape logo from drawing.

    You can also remove image producers not being used. For instance I removed all but 1107 and 1109, so its like this:
    Code:
        private void drawLogo() {
            byte abyte0[] = titleStreamLoader.getDataForName("title.dat");
            Sprite sprite = new Sprite(abyte0, this);
            aRSImageProducer_1107.initDrawingArea();
            sprite.method346(-128, 0);
            aRSImageProducer_1109.initDrawingArea();
            sprite.method346(-202, -171);
            int ai[] = new int[sprite.myWidth];
            for(int j = 0; j < sprite.myHeight; j++) {
                for(int k = 0; k < sprite.myWidth; k++)
                    ai[k] = sprite.myPixels[(sprite.myWidth - k - 1) + sprite.myWidth * j];
    
                System.arraycopy(ai, 0, sprite.myPixels, sprite.myWidth * j, sprite.myWidth);
            }
            sprite = null;
            Object obj = null;
            Object obj1 = null;
            System.gc();
        }
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  2. #2  
    35518
    Guest
    o wow u is smart
    Reply With Quote  
     

  3. #3  
    Retired. Stop PMing me.

    Galkon's Avatar
    Join Date
    Nov 2007
    Age
    14
    Posts
    7,528
    Thanks given
    1,783
    Thanks received
    2,822
    Discord
    View profile
    Rep Power
    5000
    Quote Originally Posted by .Jack View Post
    o wow u is smart
    i no rite it took me 3 days
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  4. #4  
    Banned

    Join Date
    Oct 2008
    Posts
    842
    Thanks given
    81
    Thanks received
    53
    Rep Power
    0
    This is helpful I have been looking for this cba converting the non-renamed version which I had into renamed xd xd
    Reply With Quote  
     

  5. #5  
    35518
    Guest
    Quote Originally Posted by Galkon View Post
    i no rite it took me 3 days
    only 3 days>???!!ONE!!!! you should be lyk supa vet.
    Reply With Quote  
     

  6. #6  
    Banned

    Join Date
    Oct 2007
    Posts
    1,406
    Thanks given
    37
    Thanks received
    79
    Rep Power
    0
    omg ROFL, IT TOOK YOU THREE DAYS JUST TO REMOVE PART OF A CODE LOLOLOL.
    Reply With Quote  
     

  7. #7  
    Derp.
    BenjaR's Avatar
    Join Date
    May 2008
    Age
    26
    Posts
    2,086
    Thanks given
    167
    Thanks received
    125
    Rep Power
    915
    Quote Originally Posted by .Jack View Post
    only 3 days>???!!ONE!!!! you should be lyk supa vet.
    LoL1!
    One
    Reply With Quote  
     

  8. #8  
    Retired. Stop PMing me.

    Galkon's Avatar
    Join Date
    Nov 2007
    Age
    14
    Posts
    7,528
    Thanks given
    1,783
    Thanks received
    2,822
    Discord
    View profile
    Rep Power
    5000
    Quote Originally Posted by Xaezez View Post
    omg ROFL, IT TOOK YOU THREE DAYS JUST TO REMOVE PART OF A CODE LOLOLOL.
    I hope you know I was joking, lol. It took less than a minute.
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  9. #9  
    Registered Member
    discipl3's Avatar
    Join Date
    Sep 2008
    Posts
    324
    Thanks given
    1
    Thanks received
    5
    Rep Power
    95
    If i'm not mistaken, can't you just find:

    Code:
     flipBackground = true;
    in:
    Code:
        public static void main(String args[]) {
            try {
                System.out.println("User release " + 317);
                nodeID = 0;
                portOff = 0;
                isMembers = true;
                logo = true; // false adds logo, true removes logo
                flames = true; // false remoes flames, true adds flames
                flipBackground = true; // false uses one image, true flips background
                setHighMem();
                signlink.storeid = 32;
                signlink.startpriv(InetAddress.getLocalHost());
                //new Jframe(args);
    			client client1 = new client();
                 client1.createClientFrame(523, 765);
    			//setVisible(false);
            } catch (Exception exception) {}
        }
    and just make it false??
    All models i post are made by me. Yay.
    Quote Originally Posted by Koâk View Post
    I WILL RAPE++
    Reply With Quote  
     

  10. #10  
    Debilitation
    Guest
    We don't use fail retarded clients like you sir.
    Reply With Quote  
     

Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •