8 lines
202 B
Lua
8 lines
202 B
Lua
s = peripheral.wrap("left")
|
|
while 1 do
|
|
sleep(10 + math.random(10))
|
|
for i = 0, math.random(3) + 2 do
|
|
s.playSound("block.gravel.break")
|
|
sleep(math.random(10)/20 + 0.2)
|
|
end
|
|
end
|