For sure. Not too difficult either
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
if(Message == "!runNotepad")
{
ChatWnd.SendMessage("/run c:\\windows\\notepad.exe");
}
}
makes use of the MsgPlus "/run" command. Simply replicate the if statement for your programs you want to run.