Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. init start
  2. local mainbp = 2871 --item id of the backpack immediately within the locker
  3. local innerbps = 2867 --item id of the backpacks within the main bp
  4. local item1 = 3029 --item id of the item you wish to move to the first backpack within the main bp
  5. local item2 = 3028 --item id of the item you wish to move to the second backpack within the main bp
  6. init end
  7.  
  8. if not islocation() then
  9. gotolabel 'Deposit'
  10. else
  11. reachgrounditem('depot')
  12. openitem('depot')
  13. wait(500,1000)
  14. openitem(mainbp,'Locker')
  15. wait(500,1000)
  16. openitem(innerbps,'null',1,1)
  17. wait(500,1000)
  18. moveitems(item1,'Red Backpack','Moon Backpack')
  19. wait(500,1000)
  20. closewindows('Red Backpack')
  21. wait(500,1000)
  22. openitem(innerbps, 'null',1,2)
  23. wait(500,1000)
  24. moveitems(item2,'Red Backpack','Moon Backpack')
  25. wait(500,1000)
  26. closewindows('Red Backpack')
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement