Allows you to play a system beep sound.
Example
Running this code will create a loop that plays a system beep sound 4 times with the following properties:
- Frequency: 1000
- Duration: 100
- Seconds to wait: 0.5 second
loop(4) {
plugin command("OS Automation.dll", "system beep sound", 1000, 100)
wait(.5)
}