@@ -134,7 +134,7 @@ std::vector<std::unique_ptr<AutoStory_Segment>> make_autoStory_segment_list(){
134134 segment_list.emplace_back (std::make_unique<AutoStory_Segment_36>());
135135 segment_list.emplace_back (std::make_unique<AutoStory_Segment_37>());
136136 segment_list.emplace_back (std::make_unique<AutoStory_Segment_38>());
137- // segment_list.emplace_back(std::make_unique<AutoStory_Segment_39>());
137+ segment_list.emplace_back (std::make_unique<AutoStory_Segment_39>());
138138 // segment_list.emplace_back(std::make_unique<AutoStory_Segment_40>());
139139 }
140140 return segment_list;
@@ -309,8 +309,8 @@ std::vector<std::unique_ptr<AutoStory_Checkpoint>> make_autoStory_checkpoint_lis
309309 checkpoint_list.emplace_back (std::make_unique<AutoStory_Checkpoint_99>());
310310 checkpoint_list.emplace_back (std::make_unique<AutoStory_Checkpoint_100>());
311311 checkpoint_list.emplace_back (std::make_unique<AutoStory_Checkpoint_101>());
312- // checkpoint_list.emplace_back(std::make_unique<AutoStory_Checkpoint_102>());
313- // checkpoint_list.emplace_back(std::make_unique<AutoStory_Checkpoint_103>());
312+ checkpoint_list.emplace_back (std::make_unique<AutoStory_Checkpoint_102>());
313+ checkpoint_list.emplace_back (std::make_unique<AutoStory_Checkpoint_103>());
314314 // checkpoint_list.emplace_back(std::make_unique<AutoStory_Checkpoint_104>());
315315 // checkpoint_list.emplace_back(std::make_unique<AutoStory_Checkpoint_105>());
316316
@@ -478,7 +478,8 @@ AutoStory::AutoStory()
478478 " For Start Points that are at Pokecenters, ensure that you fly there so that your character is in the exactly correct start position."
479479 }
480480 , MAINSTORY_NOTE{
481- " Ensure you have a level 100 Gardevoir with the moves in the following order: Moonblast, Mystical Fire, Psychic, Misty Terrain.<br>"
481+ " Ensure you have a level 100 Gardevoir with the moves in the following order: Moonblast, Mystical Fire, Psychic, Misty Terrain."
482+ " Ensure PP is maxed out. Ensure Modest nature with max Special Attack and Speed EVs, with max IVs.<br>"
482483 " Also, make sure you have two other strong pokemon (e.g. level 100 Talonflames)<br>"
483484 " Refer to the documentation on github for more details."
484485 }
@@ -506,8 +507,7 @@ AutoStory::AutoStory()
506507 )
507508 , ENABLE_ADVANCED_MODE(
508509 " <b>Advanced mode:</b><br>"
509- " Select the start/end checkpoints instead of segments. i.e. finer control over start/end points.<br>"
510- " Also, this enables the option to toggle 'Change settings at Program Start'." ,
510+ " Select the start/end checkpoints instead of segments. i.e. finer control over start/end points." ,
511511 LockMode::UNLOCK_WHILE_RUNNING,
512512 false
513513 )
@@ -864,7 +864,7 @@ void AutoStory::on_config_value_changed(void* object){
864864 END_DESCRIPTION.set_visibility (!ENABLE_ADVANCED_MODE ? ConfigOptionState::ENABLED : ConfigOptionState::HIDDEN);
865865 START_CHECKPOINT_DESCRIPTION.set_visibility (ENABLE_ADVANCED_MODE ? ConfigOptionState::ENABLED : ConfigOptionState::HIDDEN);
866866 END_CHECKPOINT_DESCRIPTION.set_visibility (ENABLE_ADVANCED_MODE ? ConfigOptionState::ENABLED : ConfigOptionState::HIDDEN);
867- CHANGE_SETTINGS.set_visibility (ENABLE_ADVANCED_MODE ? ConfigOptionState::ENABLED : ConfigOptionState::HIDDEN);
867+ // CHANGE_SETTINGS.set_visibility(ENABLE_ADVANCED_MODE ? ConfigOptionState::ENABLED : ConfigOptionState::HIDDEN);
868868
869869 if (ENABLE_TEST_CHECKPOINTS){
870870 START_CHECKPOINT.set_visibility (ConfigOptionState::ENABLED);
@@ -1051,8 +1051,8 @@ void AutoStory::test_checkpoints(
10511051 checkpoint_list.push_back ([&](){checkpoint_99 (env, context, notif_status_update, stats);});
10521052 checkpoint_list.push_back ([&](){checkpoint_100 (env, context, notif_status_update, stats);});
10531053 checkpoint_list.push_back ([&](){checkpoint_101 (env, context, notif_status_update, stats);});
1054- // checkpoint_list.push_back([&](){checkpoint_102(env, context, notif_status_update, stats);});
1055- // checkpoint_list.push_back([&](){checkpoint_103(env, context, notif_status_update, stats);});
1054+ checkpoint_list.push_back ([&](){checkpoint_102 (env, context, notif_status_update, stats);});
1055+ checkpoint_list.push_back ([&](){checkpoint_103 (env, context, notif_status_update, stats);});
10561056 // checkpoint_list.push_back([&](){checkpoint_104(env, context, notif_status_update, stats);});
10571057 // checkpoint_list.push_back([&](){checkpoint_105(env, context, notif_status_update, stats);});
10581058
0 commit comments