Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. PickupItems = {3246,27649,10201,28720,28715,28719,28716,28718,27648,27647,28714,28717,28720,28721,28722,28723,28724,28725,3422,29430,22759}
  2. Module.New('Item Picker+bp opener', function(module)
  3. for y = -8, 8 do
  4. for x = -8, 8 do
  5. if table.contains(PickupItems, Map.GetTopMoveItem(Self.Position().x + x, Self.Position().y + y, Self.Position().z).id) then
  6. Map.PickupItem(Self.Position().x + x, Self.Position().y + y, Self.Position().z, Container.GetFirst(), 0)
  7. end
  8. end
  9. end
  10. end
  11. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement