mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-22 18:02:16 +00:00
Fixed #50 and errors during Oobe will no longer restart the entire step.
This commit is contained in:
parent
512a02ba88
commit
b6dff54e95
2 changed files with 10 additions and 7 deletions
|
@ -82,7 +82,7 @@ So make sure your password is secure enough that it can't be guessed, but easy f
|
|||
{
|
||||
TextType("You must specify a valid username!");
|
||||
currentPage--;
|
||||
SetupUI();
|
||||
//SetupUI();
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -90,7 +90,7 @@ So make sure your password is secure enough that it can't be guessed, but easy f
|
|||
{
|
||||
TextType("A password would seriously be recommended.");
|
||||
currentPage--;
|
||||
SetupUI();
|
||||
//SetupUI();
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -98,7 +98,7 @@ So make sure your password is secure enough that it can't be guessed, but easy f
|
|||
{
|
||||
TextType("You must name your computer.");
|
||||
currentPage--;
|
||||
SetupUI();
|
||||
//SetupUI();
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -109,7 +109,7 @@ So make sure your password is secure enough that it can't be guessed, but easy f
|
|||
{
|
||||
TextType("I have just verified that your username and password already exists on my end. Please choose another.");
|
||||
currentPage--;
|
||||
SetupUI();
|
||||
//SetupUI();
|
||||
|
||||
}
|
||||
else
|
||||
|
|
|
@ -186,11 +186,14 @@ namespace ShiftOS.WinForms
|
|||
Thread.Sleep(500);
|
||||
TextType("Your user account is stored on a server of mine called the multi-user domain. It holds every single user account, every script, every application, every thing within ShiftOS.");
|
||||
Thread.Sleep(600);
|
||||
TextType("Every time you boot ShiftOS, if you are connected to the Internet, you will immediately connect to the multi-user domain and ShiftOS will attempt to authenticate using the last successful username and password pair.");
|
||||
TextType("Every time you boot ShiftOS, if you are connected to the Internet, you will immediately connect to the multi-user domain and ShiftOS will attempt to authenticate using the last ");
|
||||
TextType("successful username and password pair.");
|
||||
Thread.Sleep(500);
|
||||
TextType("When you are in the MUD, you are in the middle of a free-for-all. I don't want it to be this way, it just is. I've employed you to help me develop and test the MUD and ShiftOS, but you have a secondary task if you choose to accept it.");
|
||||
TextType("When you are in the MUD, you are in the middle of a free-for-all. I don't want it to be this way, it just is. I've employed you to help me develop and test the MUD and ShiftOS, ");
|
||||
TextType("but you have a secondary task if you choose to accept it.");
|
||||
Thread.Sleep(500);
|
||||
TextType("There have been a few rebelious groups in the MUD - who have cracked ShiftOS's security barriers - and they're using these exploits to steal others' Codepoints, upgrades, and even spread damaging viruses.");
|
||||
TextType("There have been a few rebelious groups in the MUD - who have cracked ShiftOS's security barriers - and they're using these exploits to steal others' Codepoints, upgrades, ");
|
||||
TextType("and even spread damaging viruses.");
|
||||
Thread.Sleep(500);
|
||||
TextType("I want you to stop them.");
|
||||
Thread.Sleep(500);
|
||||
|
|
Loading…
Reference in a new issue