(I never much liked the term “
The players are not the only people in this environment; there are also NPCs, which are characters created by and controlled by the system. NPCs can be antagonistic, such as monsters, or friendly, like most merchants (and I just set up a system to define different levels of “friendliness” for NPCs).
So, how does the game represent these NPCs to the player? When I implemented this sort of system in the past, I had it work the same way that traditional RPG’s work: the GM represents the NPCs, like so:
The Banshee slashes at you with her claws, doing 8 damage.
However, after doing this for awhile, I realized that it was rather unsatisfying to interact with NPCs “through” the GM, as you can see:
! ask Parn about castle Parn says, "I don't know anything about the castle."
See how that’s unnatural? It’s frustrating to have to talk to the character through another person (even if the “person” is a bot, in this case).
With my
This creates certain complexities. For example, the GM has to keep a stable of bots online at all times, and direct them to take on a particular persona and join the channel at appropriate times. For another, the bots will have to communicate with the GM if they are killed, and the outcome of any battle. Also, if the players start travelling across the world, it may be very annoying to see bots joining and parting the channel in massive waves as the players move from room to room.
So, we’ll see how this works out.