if (randwar1 > randatk1){
hp2 = hp2 - 1;
Console.WriteLine("bruh 1");
continue;
}
else if (randwar1 < randatk1){
Console.WriteLine(hp2);
continue;
}
while(true){
randatk1 = rnd1.Next(0,101);
randatk2 = rnd1.Next(0,101);
Console.WriteLine(randwar1);
Console.WriteLine(randatk1);
if (randwar1 > randatk1){
hp2 = hp2 - 1;
Console.WriteLine("bruh 1");
continue;
}
...