Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
DELUXEHUNTER authored Feb 5, 2024
1 parent 6f43faf commit d708cb3
Showing 1 changed file with 10 additions and 18 deletions.
28 changes: 10 additions & 18 deletions Neoa/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,34 +33,26 @@ public static void Main(string[] args)
WriteLine("DFG: Rising",110);
WriteLine("..... System re-initializing",95);
WriteLine("New operator detected.....",95);


//Naming

WriteLine(" .....Enter operator first name.",95);

string firstname = Console.ReadLine();
WriteLine("..Input last name ",95);
WriteLine("Input last name ",95);
string lastname = Console.ReadLine();
WriteLine("Continuing Initilization process",95);

Console.WriteLine("[In the case you haven't read the readme, press enter anytime nothing happens");
Console.WriteLine("if this does not work send a screenshot of where you are.");
Console.WriteLine("Typically this marks a Console.Clear command or a temporary pause to read.]");
Console.WriteLine("if this does not work send a screenshot of where you are.]");
Console.ReadLine();






//Rest of the game





// reset color command Console.ResetColor();

Console.Clear();


//Ints
//int correct = 0;

Expand All @@ -73,9 +65,9 @@ public static void Main(string[] args)

WriteLine("Initialization complete",80);
Console.WriteLine("[Clear console. Press Enter.]");
Console.ReadLine();
Console.Clear();
Console.Clear();
Console.WriteLine("Introduction:");
WriteLine("Initialization complete welcome, " + firstname + " " + lastname + " to the Neoan Exeon corporate system..", 95);
WriteLine("Searching for Record..",95);
WriteLine("Employee record not found ",95);
Expand All @@ -90,16 +82,16 @@ public static void Main(string[] args)
WriteLine("Employee File Created..."+firstname+" "+lastname,95);
WriteLine("Complete system access given operator X998. Welcome "+firstname+" "+lastname+". System restore.. Success. ",95);
WriteLine("Base employee access given",95);
WriteLine("Initilization complete.")
WriteLine("Initilization complete.");

WriteLine(firstname+" "+lastname+":");
WriteLine("F");
WriteLine("");


}
public static void WriteLine(string text, int speed = 60)
{
foreach (char c in text)
foreach (char c in text);

Check warning on line 94 in Neoa/Program.cs

View workflow job for this annotation

GitHub Actions / build

Possible mistaken empty statement

Check warning on line 94 in Neoa/Program.cs

View workflow job for this annotation

GitHub Actions / build

Possible mistaken empty statement
{
Console.Write(c);

Check failure on line 96 in Neoa/Program.cs

View workflow job for this annotation

GitHub Actions / build

The name 'c' does not exist in the current context

Check failure on line 96 in Neoa/Program.cs

View workflow job for this annotation

GitHub Actions / build

The name 'c' does not exist in the current context
System.Threading.Thread.Sleep(98);
Expand Down

0 comments on commit d708cb3

Please sign in to comment.