22 lines
526 B
Lua
22 lines
526 B
Lua
term.clear()
|
|
term.setCursorPos(1,1)
|
|
|
|
speaker = peripheral.wrap("right")
|
|
while true do
|
|
for i = 1,100 do
|
|
pitch = math.random()*0.4+0.8
|
|
volume = math.random()*.5+1.5
|
|
--print("pitch: "..pitch,"volume: "..volume)
|
|
speaker.playSound(
|
|
"entity.wandering_trader.ambient",
|
|
volume,
|
|
pitch
|
|
)
|
|
--sleep(math.random()*3+1)
|
|
end
|
|
--sleep(math.random(300,600))
|
|
shell.run("pastebin", "run", "KMRmKTc1")
|
|
sleep(math.random(300,600))
|
|
end
|
|
|
|
|