How to make Mikrotik beep on adding new log entry

Good morning.
What device do you have?
As @holvoetn already wrote, if it doesn’t have a beeper it’s all useless.

Is possible use this as a basis:
http://forum.mikrotik.com/t/log-filter/166898/24

To obtain this:
:global lastLog
:if ([:typeof $lastLog] != “num”) do={:set lastLog 0}

{
:local id2num do={:return [:tonum “0x$[:pick $1 1 [:len $1]]”]}

/log
:foreach item in=[find where (([$id2num $“.id”] > $lastLog) and (buffer=memory) and (message~“beep”))] do={
:set lastLog [$id2num $item]
:beep frequency=4000 length=500ms
}

}
Just set it in the scheduler to run every 10 seconds.
In the example, if the device has it, it emits a beep every time one entry, containing “beep” on message, is logged