Skip to content

Commit

Permalink
Code fix?????Q?!?!?
Browse files Browse the repository at this point in the history
  • Loading branch information
DELUXEHUNTER authored Feb 14, 2024
1 parent cf6909b commit 6cc9bbb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
14 changes: 6 additions & 8 deletions Docs/Lore/Lore.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,18 @@ Anaxia is the closest neighbor to Neoa being the third most prominent kingdom wi
These are the ancient ancestors of the people of Ethran that some people have in common with themselves
<!--- These entries are not going to be filled with much detail. -->

#### Avalon, Neoan Lord
#### Avalon,<br>Neoan Lord
<!---Unremovable --->
Avalon is the patron of Neoa, He is the founder of Neoa, and the very first king, often considered the greatest king in Neoan history by most Neoans.


#### Iedelan, Anaxian hero
Idelan is the patron of Anaxia, The greatest King in Anaxian history
#### Iedelan,<br>Anaxian hero


#### Dresden, Traveler of worlds
<!-- This is is temporary name and is subject to change, -->

A mysterious wandering man who appears at certain times, its unknown why he randomly shows up to certain things, but by many historians in their findings its been noted hes been seen at many important events. No one has ever spoken or seen him. It is known by the world that he still lives to this day.
#### Lexian


#### Tau-an, The Undead.
#### Tau-an,<br>The Undead.
<!-- Idea Entry -->
The Immortal undead ancestor of all things dead. Considered the creator and master of the first undead until having been overthrown by the very dead he raised, as the more he brought back the more they learned and became sentient giving themselves thoughts and minds to use. Not one of the first vampires, but after the vampiric rise he has taken dominion over vampires giving them blessings and everything.

Expand All @@ -73,3 +70,4 @@ The Dream realm is the realm that all dreams of almost every being, resides and
<!---Its possible the voice could be someone important to you? or possibly the one of your ancestors -->
This mysterious voice guides you on your adventure, and rarely speaks to you. Its unknown if its malicious or intends to help you the best it can. Until its proven, its best you do what it says without questioning it too much. It goes by many names, typically all variants of The mystical voice.


6 changes: 3 additions & 3 deletions Neoa/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -287,20 +287,20 @@ public static void Prologue()

DisplayLine(ConsoleColor.Green,"You","",0);
string input = Console.ReadLine();
while(input.ToLower != "s" && input.ToLower != "i")
while(input.ToLower() != "s" && input.ToLower != "i")

Check failure on line 290 in Neoa/Program.cs

View workflow job for this annotation

GitHub Actions / build

Operator '!=' cannot be applied to operands of type 'method group' and 'string'

Check failure on line 290 in Neoa/Program.cs

View workflow job for this annotation

GitHub Actions / build

Operator '!=' cannot be applied to operands of type 'method group' and 'string'
{
DisplayLine(ConsoleColor.White,"narrator",$"{Player.Name} just stands there doing nothing");
Console.WriteLine("{Possible Choicees: (S)leep, (I)nspect");
}
if(input.ToLower == "i")
if(input.ToLower() == "i")
{
//NeoanExchange Papers are used to give a certain amount of Marks when turned in at a bank or some stores that will appear in the future
//Int still needs to be added
Player.NeoanExchange += 1;
DisplayLine(ConsoleColor.White,"narrator","searching through the drawers you find a piece of paper with a royal signature, for now you decide to put the paper back not knowing what to do with it");
DisplayLine(ConsoleColor.White,"narrator","..you then decide to go to sleep");
}
else if(input.ToLower == "s")
else if(input.ToLower() == "s")
{
DisplayLine(ConsoleColor.White,"narrator","you decide its best you sleep now and worry about your room later on.. laying in the bed you find it hard to sleep until eventually you find a comfortable spot in your bed");
}
Expand Down

0 comments on commit 6cc9bbb

Please sign in to comment.