Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --En funktion för att använda blisterbomber från dispensers som ett flyganfall
- function blister()
- turtle.select(1)
- turtle.placeDown()
- loop = 2
- while loop < 11 do
- turtle.select(loop)
- turtle.dropDown()
- loop = loop + 1
- end
- ammo = 72
- ammo = ammo * 2
- while ammo > -1 do
- redstone.setOutput("bottom", true)
- sleep(0.01)
- redstone.setOutput("bottom", false)
- sleep(0.06)
- ammo = ammo - 1
- end
- turtle.select(1)
- turtle.digDown()
- end
- blister()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement