23.03.2011, 15:36
You don't need to format constants...
case 219 : { format(returnt,sizeof(returnt), "Secretary"); }
should be
case 219 : returnt = "Secretary";
case 219 : { format(returnt,sizeof(returnt), "Secretary"); }
should be
case 219 : returnt = "Secretary";