switch (Utility.Random(3))
{
case 0: { DoCondemn(); break; }
case 1: { DoSummon(); break; }
case 2: { DoNuke(); break; }
}
switch (Utility.Random(2))
{
//case 0: { DoCondemn(); break; }
case 0: { DoSummon(); break; }
case 1: { DoNuke(); break; }
}
mine does not have the code=csharp does that matterHe's supposed to do that, but if you want him to not...
find the following section:
C#:switch (Utility.Random(3)) { case 0: { DoCondemn(); break; } case 1: { DoSummon(); break; } case 2: { DoNuke(); break; } }
and change it to:
C#:switch (Utility.Random(2)) { //case 0: { DoCondemn(); break; } case 0: { DoSummon(); break; } case 1: { DoNuke(); break; } }
We use essential cookies to make this site work, and optional cookies to enhance your experience.