Zilly
Zilly
CC#
Created by Zilly on 4/1/2025 in #help
✅ Grid Layout
else if (entercount == dialogue.Length && printcount == dialogue.Length)
{
Console.Clear();
for (int height = 0; height < 15; height++)
{
for (int width = 0; width < 17; width++)
{
Console.Write("[]");
}
}
}
else if (entercount == dialogue.Length && printcount == dialogue.Length)
{
Console.Clear();
for (int height = 0; height < 15; height++)
{
for (int width = 0; width < 17; width++)
{
Console.Write("[]");
}
}
}
100 replies
CC#
Created by Zilly on 2/14/2025 in #help
Console Game scenes equivalent
I usually use Unity for C# because I'm not very fluent in it. I'm trying to learn by making a very basic idle game, and want to add a new feature. I'd like a second scene i can open up when I use left arrow, which completely clears the console and writes the new screen. I also want updates on that page to be saved and to be able to change when they aren't loaded. I've talked to a close friend who's really good with C# and they suggested using arrays, but I don't understand how I could use them. Lmk if you want my code I can send it
174 replies