1) In the source code for CircleMUD 3.1, there's a function that produces this MENU.
Welcome to CircleMUD!
0) Exit from CircleMUD.
1) Enter the game.
2) Enter description.
3) Read the background story.
4) Change password.
5) Delete this character.
Make your choice:
I'm having difficulty locating it! Anyone know what file it's in?
2) In the source code for CircleMUD 3.1, there's a function that produces this message.
Welcome to the land of CircleMUD! May your visit here be... Interesting.
When you login as a player, the message is displayed after the motd and before the room title. I suspect it's associated with either the WELC_MESSG variable or the START_MESSG variable. Regardless, I'm having difficulty locating it, as well! Anyone know what file it's in?
Thank you. The assistance is much appreciated! Wouldn't ya know, I found them while waiting for the post to be approved by a mod and while working on another issue.
Turns out the text bits for MENU, WELC_MESSG, and START_MESSG are all there. WELC_MESSG and START_MESSG are constants, not varriables. The function calls to them are made from the file "interpreter.c" in the section for "newcomers and other non-playing sockets" starting at line 1280.