Thread: Error unpacking interfaces

Results 1 to 4 of 4
  1. #1 Error unpacking interfaces 
    Derp.
    BenjaR's Avatar
    Join Date
    May 2008
    Age
    29
    Posts
    2,083
    Thanks given
    167
    Thanks received
    125
    Rep Power
    915
    Well I'm making an interface (which I will release when done). Just started and put the basics in but first time to try test I get "unpacking interfaces 95" blah blah. I don't know what the problem is so here's the interface so far:

    Code:
        public static void SkillInterface(Class30_Sub2_Sub1_Sub4[] wid)
        {
            Class9 tab = addTab(19000);
                /*addText(ID, "Text", wid, Size, Colour);*/
                addText(19001, "Total Lvl:", wid, 1, 0xffff00);
                
                /*addInterfaceSprite(ID, SpriteON, SpriteOFF, "Sprite")*/
                addInterfaceSprite(19002, 19002, 19002, "Sprite");
    
                /*addActionButton(ID, SpriteON, SpriteOFF, SpriteX, SpriteY, "SpriteText");*/
                addActionButton(19003, 19003, 19003, 18, 18, "Show combat skills");
                addActionButton(19004, 19004, 19004, 18, 18, "Show non-combat skills");
    
                /*addInterfaceSprite(ID, SpriteON, SpriteOFF, "Sprite")*/
                addInterfaceSprite(19005, 19005, 19005, "Sprite");
    
            tab.anIntArray240 = new int[5];
            tab.anIntArray241 = new int[5];
            tab.anIntArray272 = new int[5];
    
                tab.anIntArray240[0] = 19001; //Total Lvl:
                tab.anIntArray241[0] = 8;
                tab.anIntArray272[0] = 3;
    
                tab.anIntArray240[1] = 19002; //Total Lvl - back sprite:
                tab.anIntArray241[1] = 7;
                tab.anIntArray272[1] = 0;
    
                tab.anIntArray240[2] = 19003; //Show combat skills:
                tab.anIntArray241[2] = 0;
                tab.anIntArray272[2] = 143;
                
                tab.anIntArray240[3] = 19004; //Show non-combat skills:
                tab.anIntArray241[3] = 0;
                tab.anIntArray272[3] = 164;
                
                tab.anIntArray240[4] = 19005; //Interface - back sprite
                tab.anIntArray241[4] = 7;
                tab.anIntArray272[4] = 20;
    
        }
    Help would be much appreciated
    Cheers
    Reply With Quote  
     

  2. #2  
    Community Veteran

    Dexter Morgan's Avatar
    Join Date
    Nov 2008
    Age
    28
    Posts
    4,415
    Thanks given
    1,181
    Thanks received
    756
    Rep Power
    3098
    can you stop adding shit like

    Code:
                /*addInterfaceSprite(ID, SpriteON, SpriteOFF, "Sprite")*/
    ?...

    Theres nothing wrong with the interface.

    and wdf is this?

    Code:
                	addActionButton(19004, 19004, 19004, 18, 18,
    it just could be
    Code:
                	addActionButton(19004, 18,
    Reply With Quote  
     

  3. #3  
    Registered Member Buddie's Avatar
    Join Date
    Apr 2009
    Posts
    76
    Thanks given
    0
    Thanks received
    0
    Rep Power
    8
    the unpacking error is probobly caused by the images not being loading, try checking the path you used to load them.
    Reply With Quote  
     

  4. #4  
    Derp.
    BenjaR's Avatar
    Join Date
    May 2008
    Age
    29
    Posts
    2,083
    Thanks given
    167
    Thanks received
    125
    Rep Power
    915
    Quote Originally Posted by 2012 View Post
    can you stop adding shit like

    Code:
                /*addInterfaceSprite(ID, SpriteON, SpriteOFF, "Sprite")*/
    ?...

    Theres nothing wrong with the interface.

    and wdf is this?

    Code:
                	addActionButton(19004, 19004, 19004, 18, 18,
    it just could be
    Code:
                	addActionButton(19004, 18,
    I think my methods are different to yours 2012, so please stfu =]
    Plus I don't think the deob loads custom images and I wouldn't know how to make it so if anyone could help more that would be much appreciated.
    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
  •