What do you mean "makes a post"? Do you mean when someone sends text to the channel? You could do this with a simple script:
on *:text:*:#:{ if ($nick == nickname) { splay sound.wav } }This checks if someone called 'nickname' sends text to any channel, and then plays 'sound.wav' when they do. Sound.wav should be changed to whatever warning sound file you have. Using it like that, it should be in the mIRC directory (Where the mirc.exe file is). If the person uses a different nickname, then it won't work. Therefore, for a more precise way of detecting them you could use $address, or perhaps $site ($site detects only the part of the user's address after the
@ symbol in /whois). See the following help files:
/help if then else (see the 'iswm' operator)
/help $address
/help $site
/help on textHope this helps you out

Regards,