This will give you random typo messages :) put this with the other maxes in structs.h #define MAX_TYPOS 7 in interpreter.c find the line: send_to_char("Huh?!?\r\n", ch); and replace it with: rand_typo(ch); put this in interpreter.c const char *typo_table[] = { "Yer wot?", "I'm sorry, I don't understand!", "Sorry, can you repeat that?", "What was that?", "Stop mumbling...", "TYPO ALERT!!!!", "Huh?! " }; void do_rand_typo(struct char_data *ch) { char buf[MAX_STRING_LENGTH]; int number1; number1 = number(1, MAX_TYPOS) -1; sprintf(buf, "\n\r%s\n\r", typo_table[number1].typo); send_to_char(buf, ch); } Special Thanx to Poe of Age of War for the changes Pete Schroeder (aka KillsTheWeak) pschroe1@tampabay.rr.com killstheweak@netzero.net killstheweak@hotmail.com