From 19418d3da8472593bdd73478934e1846baa28cb0 Mon Sep 17 00:00:00 2001 From: kyO The NinjA Date: Thu, 28 May 2020 23:25:59 -0300 Subject: [PATCH] Update quickguide --- doc/Quick guide.md | 2 +- module/config/argparser_en.py | 12 +++++------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/doc/Quick guide.md b/doc/Quick guide.md index 1b7c5af78..a26b4612c 100644 --- a/doc/Quick guide.md +++ b/doc/Quick guide.md @@ -19,7 +19,7 @@ ![venv](quickguide.assets/venv.png) You can see that now python has created some folders and files in the venv folder, it has created a completely clean virtual environment, thus preventing any conflicts. -* Now, it is necessary to activate the virtual environment in command line, go to project root and type `.\venv\scripts\activate.bat` +* Now, it is necessary to activate the virtual environment in command line, go to project root (the same where you have the file alas.py) and type `.\venv\scripts\activate.bat` ![venv_activate](quickguide.assets/venv_activate.png) diff --git a/module/config/argparser_en.py b/module/config/argparser_en.py index 3d2b5be4d..1611ea4f1 100644 --- a/module/config/argparser_en.py +++ b/module/config/argparser_en.py @@ -313,7 +313,7 @@ def main(ini_name=''): # ==========event_daily_ab========== event_ab_parser = subs.add_parser('event_daily_ab') event_name = event_ab_parser.add_argument_group('Choose an event', '') - event_name.add_argument('--event_name_ab', default=default('--event_name_ab'), choices=event_folder, help='E.g event_20200326_cn') + event_name.add_argument('--event_name_ab', default=default('--event_name_ab'), choices=event_folder, help='E.g event_20200521_en') # ==========main========== main_parser = subs.add_parser('main') @@ -325,19 +325,17 @@ def main(ini_name=''): event_parser = subs.add_parser('event') description = """ - Support "Songs under the dome" (event_20200521_cn), optimized for D1D3 -    D3 has a plot battle when he first enters the picture and clears 100%, which will cause an error. -    When the attack level is not optimized or the map does not reach the safe sea area, use the wasteland mode to run (slower) + Support "Iris of Light and Dark Rerun" (event_20200521_en), optimized for D2 """ event = event_parser.add_argument_group( 'Choose a level', '\n'.join([line.strip() for line in description.strip().split('\n')])) - event.add_argument('--event_stage', default=default('--event_stage'), + event.add_argument('--Event map', default=default('--Event map'), choices=['a1', 'a2', 'a3', 'b1', 'b2', 'b3', 'c1', 'c2', 'c3', 'd1', 'd2', 'd3'], help='E.g d3') - event.add_argument('--sp_stage', default=default('--sp_stage'), + event.add_argument('--SP map', default=default('--SP map'), choices=['sp1', 'sp2', 'sp3'], help='E.g sp3') - event.add_argument('--event_name', default=default('--event_name'), choices=event_folder, help='E.g event_20200312_cn') + event.add_argument('--Name event', default=default('--Name event'), choices=event_folder, help='There a dropdown menu with many options') # ==========半自动========== semi_parser = subs.add_parser('semi_auto')