I’d like very much to adjust the user input prompt. Specifically, I’m allowing the player to switch PCs at will, so it would be clearer if the prompt indicated which PC the player is currently playing.
The desired behavior would be:
JOHN> SWITCH TO AMY
Switching from John to Amy… You are now playing Amy.
AMY>_
–I’ve been reading the docs for a couple days on this, and I know that there are PromptDaemons and OneTimePromptDaemons, and so forth, but I’m not finding where to splice into that string.
The libMessages object is responsible for rendering the prompt, in its mainCommandPrompt() method. Simply override that method. The default implementation is in lib/adv3/en_us/msg_neu.t, line 436.