Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DELUXEHUNTER authored Feb 5, 2024
1 parent fcce88b commit aa6e27b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 30 deletions.
25 changes: 13 additions & 12 deletions Neoa/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,27 +59,28 @@ public static void Main(string[] args)
Console.Clear();
Console.WriteLine("Introduction:");
{
WriteLine("Initialization complete welcome, " + firstname + " " + lastname + " to the Neoan Exeon corporation system.. Employee record not found ",80);
WriteLine("Initialization complete welcome, " + firstname + " " + lastname + " to the Neoan Exeon corporation system..", 95)

Check failure on line 62 in Neoa/Program.cs

View workflow job for this annotation

GitHub Actions / build

; expected

Check failure on line 62 in Neoa/Program.cs

View workflow job for this annotation

GitHub Actions / build

; expected
WriteLine("Employee record not found ",95);
WriteLine("...Searching community records... New Employee File being created",80 );
WriteLine("|=========================================================|",90);
WriteLine("|Name:"+firstname+" "+lastname+" |",90);
WriteLine("|Gender:Male |",90);
WriteLine("|Age:25 |",90);
WriteLine("|Ethnicity:Axian |",90);
WriteLine("|=========================================================|",90);
WriteLine("Employee File Created...",90);
WriteLine("Operator system access given. Welcome "+firstname+" "+lastname+". The first of the Exeon corporation to be born you are ",80);
WriteLine("",80);
WriteLine("|=======================================================|",80);
// WriteLine("|Name:"+firstname+" "+lastname+" |",90);
WriteLine("|Gender:Male |",80);
WriteLine("|Age:25 |",80);
WriteLine("|Ethnicity:Axian |",80);
WriteLine("|=======================================================|",80);
WriteLine("Employee File Created..."+firstname+" "+lastname,95);
WriteLine("Operator system access given. Welcome "+firstname+" "+lastname+". The first of the Exeon corporation to be born you are ",95);
WriteLine("",95);

}

}
public static void WriteLine(string text, int speed)
public static void WriteLine(string text, int speed = 40)
{
foreach (char c in text)
{
Console.Write(c);
System.Threading.Thread.Sleep(80);
System.Threading.Thread.Sleep(95);
}
Console.WriteLine();
}
Expand Down
22 changes: 4 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,12 @@
# Neo
Welcome to neo, a simple C# game that I will be developing completely online, not in the sense that the game runs online, in the sense that the game is developed using the web editor. I've never developed a game of any kind and I'm hoping that this game will be somewhat enjoyable and the narrative will be followable and coherant. It may not function properly but I will try my best. This is one of the first games, if anyone would like to help me than please do I'd really appreciate tbe help, contributions are welcome for anyone, I would really appreciate it, but otherwise I will be working on this game entirely on my own until someone helps.

#### The beginning
You start out with selecting your characters name, and gender, it is recommended your first and last name be 6 characters otherwise it could end up like this:

![image](https://github.com/DELUXEHUNTER/neo/assets/100684231/972a537c-0833-4070-8966-d3036b555923)

After naming your character you will get to select your gender, and once the other character creation options are added, you will be able to select your ethnicity, and species, maybe even your age if I decide to but the more options I decide to add the more difficult it will be for me to code the many options that will be available within the game, so for now the game will stick to having a few options until someone would like to help me code them. I plan on spending a lot of time on this but I'm not going to waste time doing that until the basegame is entirely finished. Or almost entirely finished.


# Neo, C# Game
Welcome to Neo, a simple C# game that I will be developing completely online, not in the sense that the game runs online but in the sense that the game is developed using the web editor. I've never developed a game of any kind, and I'm hoping that this game will be somewhat enjoyable and the narrative will be followable and coherent. It may not function properly, but I will try my best. This is one of the first games. If anyone would like to help me, then please do. I'd really appreciate the help. Contributions are welcome for anyone; I would really appreciate it, but otherwise I will be working on this game entirely on my own until someone helps. If you come across this, I hope you enjoy playing, and if you have suggestions for lore or anything like that, then let me know and I'll be glad to add them.

### To-Do/Things I need help with:
* TOP PRIORITY: Type Animation/Slow print animation.
* Lore writing
* Health, combat, rpg mechanics in general
* Save System
* Save System/Progress restore
* Character creation
* Gender selection failing to work properly the first time.

### Future Plans:
A text based roleplay with many mechanics, ect... actual effects from having your selected character, for now it is a te


### Short Lore:
Based in the planet neo a planet with freezing cold tempuratures and an inhospitable enviroment. Lores not really written or thought of but this is the basis.
Just a short note, I'm not very good at writing, or ideas, so if the lore seems horrible its probably because I've been working on it entirely by myself, or been getting horrible suggestions now for the actual lore: The planet of Neo, a massive planet with several corporations on its surfuce. The planet of Neo is the equivelant of a frozen wasteland with nothing on its surface except dangerous ice, and liquid nitrogen rains that sometimes melt through the carbon suits worn by any traveler outside of the safe subterranean colonies under the planetary surface. Neo despite being almost completely inhospitable is one of the richest planets in the interspace region. Alongside New Axis,

0 comments on commit aa6e27b

Please sign in to comment.