diff options
Diffstat (limited to 'src/tutorials')
| -rw-r--r-- | src/tutorials/tutorial_firststeps_main.js | 40 | ||||
| -rw-r--r-- | src/tutorials/tutorial_firststeps_modinfo.js | 3 | ||||
| -rw-r--r-- | src/tutorials/tutorial_firststeps_settings.js | 8 |
3 files changed, 31 insertions, 20 deletions
diff --git a/src/tutorials/tutorial_firststeps_main.js b/src/tutorials/tutorial_firststeps_main.js index 97330a48..4f9c1a74 100644 --- a/src/tutorials/tutorial_firststeps_main.js +++ b/src/tutorials/tutorial_firststeps_main.js @@ -46,6 +46,7 @@ function getTutorialSteps() function() {
tutorial.text = qsTr("Before we start installing mods, let's have a quick look at the settings.")
+ manager.activateTutorial("SettingsDialog", "tutorial_firststeps_settings.js")
highlightAction("actionSettings", true)
tutorialControl.waitForAction("actionSettings")
},
@@ -57,17 +58,23 @@ function getTutorialSteps() },
function() {
- tutorial.text = qsTr("There are a few ways to get mods into ModOrganizer. You can use your regular browser to send download from Nexus to MO. "
- + "Click on \"Nexus\" to open the appropriate nexusmods page. This will also register ModOrganizer as the downloader "
- + "for \"nxm links\" for the game MO is managing. \"nxm links\" are the green buttons on Nexus saying \"Download with Manager\".")
+ tutorial.text = qsTr("There are a few ways to get mods into ModOrganizer. "
+ + "If you associated MO with NXM links in the settings you can now use your regular browser to send downloads from Nexus to MO. "
+ + "Click on \"Nexus\" to open nexus, find a mod and click the green download buttons on Nexus saying \"Download with Manager\".")
highlightAction("actionNexus", true)
tutorialControl.waitForAction("actionNexus")
},
function() {
- tutorial.text = qsTr("Downloads will appear here. Please download at least one mod, then double click it to install.")
+ tutorial.text = qsTr("You can also install mods from disk using the \"Install Mod\" button.")
+ highlightAction("actionInstallMod", false)
+ waitForClick()
+ },
+
+ function() {
+ tutorial.text = qsTr("Downloads will appear on the \"Downloads\"-tab here. You have to download and install at least one mod to proceed.")
applicationWindow.modInstalled.connect(nextStep)
- highlightItem("downloadView", true)
+ highlightItem("tabWidget", true)
},
function() {
@@ -78,13 +85,6 @@ function getTutorialSteps() },
function() {
- tutorial.text = qsTr("This is how to get mods from Nexus.\n"
- + "You can also install mods from disk using the \"Install Mod\" button.")
- highlightAction("actionInstallMod", false)
- waitForClick()
- },
-
- function() {
unhighlight()
tutorial.text = qsTr("Now you know all about downloading and installing mods but they are not enabled yet...")
waitForClick()
@@ -149,8 +149,20 @@ function getTutorialSteps() function() {
tutorial.text = qsTr("MO applies some \"magic\" to make all BSAs that are checked in this list load in "
- + "the correct order interleaved with the non-bundled resources. Usually it's best "
- + "to check all bsas that have an exclamation mark at the side.")
+ + "the correct order interleaved with the non-bundled resources.")
+ waitForClick()
+ },
+
+ function() {
+ tutorial.text = qsTr("You can disable this magic to make MO behave more like other tools. In this case "
+ + "their load order follows that of the corresponding plugin (.esp).")
+ highlightItem("managedArchiveLabel", false)
+ waitForClick()
+ },
+
+ function() {
+ tutorial.text = qsTr("Many BSAs will appear grayed out and enabled. These mods are loaded by the game engine "
+ + "automatically so they can't be disabled here.")
waitForClick()
},
diff --git a/src/tutorials/tutorial_firststeps_modinfo.js b/src/tutorials/tutorial_firststeps_modinfo.js index 3c56d1f4..50c38345 100644 --- a/src/tutorials/tutorial_firststeps_modinfo.js +++ b/src/tutorials/tutorial_firststeps_modinfo.js @@ -11,8 +11,7 @@ function getTutorialSteps() },
function() {
tutorial.text = qsTr("If you installed the mod from Nexus, the corresponding tab should give you direct "
- +"access to the mod page. That tab can also be used to download optional packages "
- +"or updates for the mod.")
+ +"access to the mod page.")
waitForClick()
},
function() {
diff --git a/src/tutorials/tutorial_firststeps_settings.js b/src/tutorials/tutorial_firststeps_settings.js index 2bff4251..dd5c6e9c 100644 --- a/src/tutorials/tutorial_firststeps_settings.js +++ b/src/tutorials/tutorial_firststeps_settings.js @@ -4,13 +4,13 @@ function getTutorialSteps() function() {
highlightItem("tabWidget", true)
tutorial.text = qsTr("You can use your regular browser to download from Nexus.\nPlease open the \"Nexus\"-tab")
- tutorialControl.waitForTabOpen("tabWidget", 2)
+ tutorialControl.waitForTabOpen("tabWidget", 1)
},
function() {
- highlightItem("handleNXMBox", false)
- tutorial.text = qsTr("If this box is checked the \"DOWNLOAD WITH MANAGER\"-buttons "
- +"in your regular browser will also download with Mod Organizer.")
+ highlightItem("associateButton", false)
+ tutorial.text = qsTr("Click this button so that \"DOWNLOAD WITH MANAGER\"-buttons "
+ +"are download with Mod Organizer.")
waitForClick()
},
|
