PDA

View Full Version : minimize the backpack



knazka
03-23-2016, 11:08 AM
He is looking for a script as to minimize the backpack which opens

krille09
03-23-2016, 11:07 PM
This is the basic.

Self.CloseContainers()
Self.OpenMainBackpack()



If you want to add more backpacks...

local LootBP = "Green Backpack"
local GoldBP = "Blue Backpack"
local SuppBP = "Red Backpack"

Self.CloseContainers()
Self.OpenMainBackpack(true):OpenChildren({LootBP, true}, {GoldBP, true}, {SuppBP, true})



Obviously put this in an label...