mister_daughter
level | total playtime | | |||||||
| 8 | | ||||||||
| | |||||||||
bio
public void InitialiseBio() //
{
string name = "mister_daughter"; // remember to add to list of aliases later
int meaningOfLife = 42; // not actual age
int myHappiness = 0;
List<string> myLikes =
["PvZ", "TF2", "WWII shooters", "internet humour", "mint ice cream", "Monster Energy", "sci-fi"];
foreach (string item in myLikes)
{
if (yourLikes.Contains(item)) // checks how much we have in common (import your list)
myHappiness++; // adds +1 to my will to live (/silly)
}
if (myHappiness >= 4)
myLikes.Add("You <3"); // no homo
// Content.Writeline("Check back soon for something cool!”);
}