Thread: Interface 667 (Fixed)

Results 1 to 9 of 9
  1. #1 Interface 667 (Fixed) 
    Extreme Donator

    Skrew's Avatar
    Join Date
    Jul 2011
    Posts
    894
    Thanks given
    166
    Thanks received
    121
    Rep Power
    122
    I know this has been posted several times, and I've searched through other threads on this topic and still can't figure it out.

    This is my issue: https://www.rune-server.ee/runescape...-resolved.html

    Code:
    if (interfaceId == 387) {
    if (componentId == 39) {
        openEquipmentBonuses(player, false);	
    });
    Code:
    public static void openEquipmentBonuses(final Player player, boolean banking) {
    		player.stopAll();
    		player.getInterfaceManager().sendInterface(667);
    		player.getInterfaceManager().sendInventoryInterface(670);
    		player.getPackets().sendItems(93, player.getInventory().getItems());
    		player.getPackets().sendGlobalConfig(779, player.getEquipment().getWeaponRenderEmote());
    		player.getPackets().sendRunScript(787, 1);
    		player.getPackets().sendInterSetItemsOptionsScript(670, 0, 93, 4, 7, "Equip", "Examine");
    		player.getPackets().sendUnlockIComponentOptionSlots(670, 0, 0, 27, 0, 1, 2, 3);
    		player.getPackets().sendIComponentSettings(667, 7, 0, 15, 1538);
    		refreshEquipBonuses(player);
    	}
    Fixed

    Add:
    Code:
    player.getPackets().sendInterface(false, 548, 11, 667);
    In your openbank method
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    Feb 2010
    Posts
    715
    Thanks given
    133
    Thanks received
    378
    Rep Power
    550
    When opening the bank, do you do anything with the equipment interface?

    I have both interfaces working perfectly (rev 667), together and separately. No special timings or scripts needed
    Reply With Quote  
     

  3. #3  
    Extreme Donator

    Skrew's Avatar
    Join Date
    Jul 2011
    Posts
    894
    Thanks given
    166
    Thanks received
    121
    Rep Power
    122
    Quote Originally Posted by Vincent View Post
    When opening the bank, do you do anything with the equipment interface?

    I have both interfaces working perfectly (rev 667), together and separately. No special timings or scripts needed
    No. I'm not doing anything with the equipment screen when opening the bank. (I removed some bank pin code, but other than that this is my openbank command.)

    Code:
    public void openBank() {
    		player.getInterfaceManager().sendInterface(762);
    		player.getInterfaceManager().sendInventoryInterface(763);
    		refreshViewingTab();
    		refreshTabs();
    		unlockButtons();
    		sendItems();
    		refreshLastX();
    		refreshBankSize();
    	}
    Reply With Quote  
     

  4. #4  
    Registered Member

    Join Date
    Feb 2010
    Posts
    715
    Thanks given
    133
    Thanks received
    378
    Rep Power
    550
    You need to also open the equipment interface when you open the bank, but not in the default child of the gameframe (default central is 19 fixed/12 resizeable on v667). I open it on child 9/10.
    You shouldn't have to do anything special with the equipment interface afterwards
    Reply With Quote  
     

  5. #5  
    Extreme Donator

    Skrew's Avatar
    Join Date
    Jul 2011
    Posts
    894
    Thanks given
    166
    Thanks received
    121
    Rep Power
    122
    Quote Originally Posted by Vincent View Post
    You need to also open the equipment interface when you open the bank, but not in the default child of the gameframe (default central is 19 fixed/12 resizeable on v667). I open it on child 9/10.
    You shouldn't have to do anything special with the equipment interface afterwards
    You lost me at... "open the equipment interface when you open the bank." Can you explain?
    Reply With Quote  
     

  6. #6  
    Registered Member

    Join Date
    Feb 2010
    Posts
    715
    Thanks given
    133
    Thanks received
    378
    Rep Power
    550
    Quote Originally Posted by Koto View Post
    You lost me at... "open the equipment interface when you open the bank." Can you explain?
    Try this in fixed size mode, in your openBank

    player.getInterfaceManager().sendTab(11, 667);
    Reply With Quote  
     

  7. #7  
    Extreme Donator

    Skrew's Avatar
    Join Date
    Jul 2011
    Posts
    894
    Thanks given
    166
    Thanks received
    121
    Rep Power
    122
    Quote Originally Posted by Vincent View Post
    Try this in fixed size mode, in your openBank

    player.getInterfaceManager().sendTab(11, 667);
    Unfortunately didn't work for me, thanks though.
    Reply With Quote  
     

  8. #8  
    Registered Member

    Join Date
    Feb 2010
    Posts
    715
    Thanks given
    133
    Thanks received
    378
    Rep Power
    550
    Quote Originally Posted by Koto View Post
    Unfortunately didn't work for me, thanks though.
    Oops, not sendTab, it needs to be closeable.

    try sendInterface(false, 548, 11, 667)
    Reply With Quote  
     

  9. Thankful users:


  10. #9  
    Extreme Donator

    Skrew's Avatar
    Join Date
    Jul 2011
    Posts
    894
    Thanks given
    166
    Thanks received
    121
    Rep Power
    122
    Quote Originally Posted by Vincent View Post
    Oops, not sendTab, it needs to be closeable.

    try sendInterface(false, 548, 11, 667)
    Thanks, that seems to fix it!
    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

Similar Threads

  1. Replies: 66
    Last Post: 01-01-2024, 06:04 PM
  2. Drops / interface bug fix [667]
    By Dot. in forum Buying
    Replies: 9
    Last Post: 04-30-2017, 11:50 AM
  3. [667/***] Fixing a dupe
    By Kova+ in forum Snippets
    Replies: 13
    Last Post: 05-25-2012, 10:57 AM
  4. [667] Fixing Dicing [667]
    By `Cocaine in forum Snippets
    Replies: 0
    Last Post: 02-26-2012, 09:58 AM
  5. [Galkon's]Interface rotations fix !
    By zivkovic in forum Buying
    Replies: 19
    Last Post: 02-16-2012, 11:27 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •