err you cant combine two status tags like /away and /busy.
you can combine a status tag with some text if you put them on seperate lines (in a program or a quicktext)
such as in the ParseCommand function in a MsgPlus plugin.
code:
if(stricmp(sCommand, "/xbye") == 0)
{
strcpy(sResult, "#I'm leaving, see ya!\n");
strcat(sResult, "#/away");
return TRUE;
}
will result in the text being sent and your status being set.
you could use this with /block command for your block bot.