Advertisement
Cavitt

Untitled

Feb 15th, 2012
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. --Option 1  -- slot, backpack, item, item
  2. Self.WithdrawItem(0, "Main", 3725, 3061)
  3. Self.WithdrawItem(1, "Main", 3725, 3061)
  4. Self.WithdrawItem(2, "Main", 3725, 3061)
  5.                            
  6. --Option 2  -- slot, item, backpack  |  slot, item, backpack  |  slot, item  |  item
  7. Self.WithdrawItem({0, 3725, "Main"}, {0, 3456, "Golden Backpack"}, {0, 3345}, 6546)
  8.  
  9.  
  10. --[[
  11. Option 1 requires multiple functions if you want to work with more than one slot in the depot
  12. Option 2 can take multiple forms of entry but you have to specify information specifically for each one
  13. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement