Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Select
- meant to be used in conjunction with inline
- batching commands. Exposes the ability to select
- a slot to the command line.
- Changelog:
- 5/14/2017 Initial Design by Kreezxil
- --]]
- local tArgs = {...}
- local slot = tonumber(tArgs[1])
- if slot == nil or slot < 1 or slot > 16 then
- print("Please you must choose a slot number")
- return
- end
- turtle.select(slot)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement