Sometimes, a player on your Don’t Starve Together server may want to change their character after they’ve already joined. This guide explains how to help them do that as an administrator.
Despawning a player will remove their inventory items, so it’s best to have them drop everything first.
Open the developer console by pressing the ~ (tilde) key.
Run the command:
c_listallplayers()This will show each player’s ID.
Drop the player’s items using:
AllPlayers[number].components.inventory:DropEverything()Replace number with the player’s ID.
Example:
AllPlayers[3].components.inventory:DropEverything()To allow a player to reselect their character, they need to be despawned, which will return them to the character selection screen.
Open the developer console again using the ~ (tilde) key.
Run the command:
c_listallplayers()to view the player’s ID.
Despawn the player by entering:
c_despawn(AllPlayers[number])Replace number with their ID.
Example:
c_despawn(AllPlayers[3])