From 8c03802d2451f8b82420ce3c3730faaf388b9dcf Mon Sep 17 00:00:00 2001 From: InspectorCaracal <51038201+InspectorCaracal@users.noreply.github.com> Date: Sat, 26 Nov 2022 16:34:30 -0700 Subject: [PATCH] Update Web-Character-Generation.md --- docs/source/Howtos/Web-Character-Generation.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/docs/source/Howtos/Web-Character-Generation.md b/docs/source/Howtos/Web-Character-Generation.md index d2582382e4..aca97d4c0b 100644 --- a/docs/source/Howtos/Web-Character-Generation.md +++ b/docs/source/Howtos/Web-Character-Generation.md @@ -10,15 +10,14 @@ log into the game and play immediately (the Character will not require staff app like that). This guide does not go over how to create an AccountDB on the website with the right permissions to transfer to their web-created characters. -It is probably most useful to set `MULTISESSION_MODE = 2` or `3` (which gives you a character- -selection screen when you log into the game later). Other modes can be used with some adaptation to -auto-puppet the new Character. +It is probably most useful to set `AUTO_CREATE_CHARACTER_WITH_ACCOUNT = False` so that all player +characters can be created through this. You should have some familiarity with how Django sets up its Model Template View framework. You need -to understand what is happening in the basic [Web Character View tutorial](Web-Character-View- -Tutorial). If you don’t understand the listed tutorial or have a grasp of Django basics, please look -at the [Django tutorial](https://docs.djangoproject.com/en/1.8/intro/) to get a taste of what Django -does, before throwing Evennia into the mix (Evennia shares its API and attributes with the website +to understand what is happening in the basic [Web Character View tutorial](Web-Character-View-Tutorial). +If you don’t understand the listed tutorial or have a grasp of Django basics, please look at the +[Django tutorial](https://docs.djangoproject.com/en/1.8/intro/) to get a taste of what Django does, +before throwing Evennia into the mix (Evennia shares its API and attributes with the website interface). This guide will outline the format of the models, views, urls, and html templates needed.