Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. local MainBP = "backpack of holding"
  2. local StackBP = "jewelled backpack"
  3. local ItemBP = "Deepling Backpack"
  4. local GoldBP = "golden backpack"
  5. local PotionBP = "zaoan chess box"
  6. local AmmoBP = "green backpack"
  7.  
  8. local numberOfBackpacks = 6
  9.  
  10. Module('Alarm Containers', function(mod)
  11. if #Container.GetAll() < numberOfBackpacks and Self.isInPz() == false then
  12. print('Containers fucked up, stopping to reset BPs')
  13. Cavebot.Stop()
  14. Self.CloseContainers()
  15. Self.OpenMainBackpack(true):OpenChildren({StackBP, true}, {ItemBP, true}, {GoldBP, true}, {PotionBP, true}, {AmmoBP, true})
  16. wait(200, 500)
  17. Container.GetLast():Minimize()
  18. Cavebot.Start()
  19. end
  20. mod:Delay(2000)
  21. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement