PDA

View Full Version : Interacting with inventory side screen of bank screen?



vwxz
02-02-2014, 09:22 PM
Are there built-in SRL functions to use the inventory while the bank screen is open (such as filling runecrafting pouches)? I looked but I may have been looking in the wrong part of the docs. If there aren't, what existing Simba/SRL functions come closest to existing functionality to build off of to achieve this? Thanks in advance!

Ashaman88
02-02-2014, 09:44 PM
packslot stuff from bankscreen.simba

The Mayor
02-02-2014, 10:31 PM
function bankScreen.getPackSlotBoxes: TBoxArray;
function bankScreen.getPackSlotBox(slot: integer): TBox;
function bankScreen.getPackCount(): integer;
function bankScreen.isItemInPackSlot(slot: integer): boolean;
function bankScreen.isPackFull: boolean;
function bankScreen.isPackEmpty: boolean;
function bankScreen.getPackCountDTM(dtm: integer): integer;
function bankScreen.getPackCountBitmap(bmp, tolerance: integer): integer;

vwxz
02-02-2014, 10:45 PM
Awesome! Thank you both. My bad I was accidentally looking at the TabBackpack stuff.