choicedesc.Text="Select a choice to see more information about it and to begin.";
btnbegin.Hide();
break;
case1:
choicetitle.Text="Side With DevX";
choicedesc.Text="Side with DevX and gain full control of ShiftOS.";
btnbegin.Show();
break;
case2:
choicetitle.Text="Destroy DevX";
choicedesc.Text="DevX put you through digital torture. He stripped you of all your personal files, put you in a barely usable OS and made you make it better. Now it's time to take him down before he can do it to anyone else.";
btnbegin.Show();
break;
case3:
choicetitle.Text="End it all";
choicedesc.Text="It's time to stop dealing with all this stuff and bring you back to your old operating system.";
btnbegin.Show();
break;
}
}
publicvoidSetupConfirmUI()
{
List<string>dependencies=newList<string>();
panel1.Hide();
pnlchoices.Hide();
pnldescription.Hide();
pnlmain.Hide();
pnlconfirm.Show();
switch(choice)
{
case1:
dependencies.Add("HoloChat");
break;
case2:
dependencies.Add("HoloChat");
dependencies.Add("Network Browser");
dependencies.Add("Hacking skills");
break;
case3:
break;
}
lbconfirm.Text="You are about to start a mission. It is worth noting that during the mission you will not be able to shut down ShiftOS, access Shiftnet applications, or access applications like Pong, Knowledge Input, Shifter, Skin Loader, Shiftorium, or other OS-modifying applications.";
lbconfirm.Text+=Environment.NewLine+Environment.NewLine+"The following things will be needed to start this mission:"+Environment.NewLine;
foreach(vardindependencies)
{
lbconfirm.Text+=d+Environment.NewLine;
}
lbconfirm.Text+=Environment.NewLine+"During the mission, a window will appear near the top of the screen showing you what to do. You can also use the 'quests' Terminal Command to view a list of everything you need to do.";
API.CreateInfoboxSession("Begin mission","Are you sure you'd like to start this mission? You will not be able to access many applications or shut down ShiftOS until you have completed the mission.",infobox.InfoboxMode.YesNo);
API.CreateInfoboxSession("Return to Desktop","You came this far and are ready to stop DevX, but you are really willing to cancel and go to your desktop?",infobox.InfoboxMode.YesNo);