mew
This commit is contained in:
parent
fe086e3a0c
commit
1ff3cea4d6
29 changed files with 3206 additions and 79 deletions
17
computer/0/sfx
Normal file
17
computer/0/sfx
Normal file
|
@ -0,0 +1,17 @@
|
|||
speaker = peripheral.wrap("left")
|
||||
volume = 2
|
||||
|
||||
return {
|
||||
success = function ()
|
||||
speaker.playNote("pling",volume,4)
|
||||
sleep(0.1)
|
||||
speaker.playNote("pling",volume,8)
|
||||
sleep(0.1)
|
||||
speaker.playNote("pling",volume,16)
|
||||
end,
|
||||
fail = function ()
|
||||
speaker.playNote("didgeridoo", volume, 6)
|
||||
sleep(0.2)
|
||||
speaker.playNote("didgeridoo", volume, 3)
|
||||
end
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue