Log in

View Full Version : Very important



balde
02-19-2016, 01:18 PM
i need script to open inbox and withdraw items to main backpack.

Mexen
02-20-2016, 10:23 PM
ok cool story bro

Hetcolt
02-21-2016, 08:20 PM
local SSAUse = "Stone Skin Amulet"
local SSAMax = 7
local SSABp = "Purple Backpack"
----------------------

registerEventListener(WALKER_SELECTLABEL, "onWalkerSelectLabel")
function onWalkerSelectLabel(labelName)
if (labelName == "WithdrawSSA") then
Self.ItemCount(Item.GetID(SSAUse) < SSAMax)
SSAToWithdraw = (SSAMax - Self.ItemCount(SSAUse))
Self.WithdrawItems(0, {Item.GetID(SSAUse), SSABp, SSAToWithdraw}) -- 0, Is the spot of bp on Depot.
end
end