Log in

View Full Version : Scripts after update not working anymore! read please



sietse
04-28-2014, 08:03 PM
--[Open Backpacks]]--
elseif (labelName == "OpenBP") then
print("Opening Backpacks")
setWalkerEnabled(false)
Self.CloseContainers()
Self.OpenMainBackpack(true):OpenChildren({LootBp, true})
setWalkerEnabled(true)

elseif (labelName == "CheckBP") then
print("Checking Backpacks")
if #Container.GetAll() == 2 then
Walker.Goto("BPsOK")
else
Walker.Goto("OpenBP")
end
setWalkerEnabled(true)



Hello,
my backpack opener is not working anymore since the update
it just opens 1 backpack

yours

ppgab
04-28-2014, 08:41 PM
--[Open Backpacks]]--
elseif (labelName == "OpenBP") then
print("Opening Backpacks")
setWalkerEnabled(false)
Self.CloseContainers()
Self.OpenMainBackpack(true):OpenChildren({LootBp, true})
setWalkerEnabled(true)

elseif (labelName == "CheckBP") then
print("Checking Backpacks")
if #Container.GetAll() == 2 then
Walker.Goto("BPsOK")
else
Walker.Goto("OpenBP")
end
setWalkerEnabled(true)



Hello,
my backpack opener is not working anymore since the update
it just opens 1 backpack

yours


>> Self.OpenMainBackpack(true):OpenChildren({LootBp, true})

it only opens main and lootbp, and if it doesn't work it will try again

you should have this at the start of your script

LootBp = 'example backpack'

make sure to doublecheck if you even have a bp with that name

sietse
04-28-2014, 08:49 PM
Im using Biesje his scripts, and all got the same problem
both bp openers arent working