Thread: Adding Gameframe

Results 1 to 2 of 2
  1. #1 Adding Gameframe 
    Zykev3
    Guest
    Ok so I have the gameframe cut and everything and I put it in my sprites everything seems to work good, however the regular Map from the old gameframe is overlapping the new one... how do I fix this

    (Does it have something to do with class30_sub2_sub1_sub1?)
    Reply With Quote  
     

  2. #2  
    Insayne
    Guest
    Lol. It's loaded through the cache.
    You can change it, I forget which class though..

    If you wanna do through files, open Class30 s2 s1 s1
    Search mapback
    Code:
        	else if (s.startsWith("mapback"))
    	{
    		try
    		{
    				Image image = Toolkit.getDefaultToolkit().getImage("./SPRITES/MAPBACK 0.png");
    				anIntArray1439 = new int[anInt1440 * anInt1441];
    				PixelGrabber pixelgrabber = new PixelGrabber(image, 0, 0, anInt1440, anInt1441, anIntArray1439, 0, anInt1440);
    				pixelgrabber.grabPixels();
    				
    			}
    			catch (Exception exception)
    			{
    				System.out.println(((Object) (exception)));
    			}
    		}
    Replace your current one with that.
    Reply With Quote  
     


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
  •