Skip to content

Commit

Permalink
NextMortal Support
Browse files Browse the repository at this point in the history
  • Loading branch information
Sk1ffy authored and Sk1ffy committed May 27, 2024
1 parent 5dcaaaf commit bfa7742
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 4 deletions.
28 changes: 27 additions & 1 deletion RLOrbital/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 13 additions & 3 deletions RLOrbital/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private string GetToggleKey()
if (match.Success)
{
string ToggleKey = match.Groups[1].Value;
// MessageBox.Show(ToggleKey);
// MessageBox.Show(ToggleKey);
return ToggleKey;
}
return "";
Expand Down Expand Up @@ -263,18 +263,23 @@ private void button2_Click(object sender, EventArgs e)
}
else if (comboBotSelection.SelectedIndex == 1)
{
botSelection = " -b necto";
botSelection = " -b nextmortal";
}
else if (comboBotSelection.SelectedIndex == 2)
{
botSelection = " -b element";
botSelection = " -b necto";
}
else if (comboBotSelection.SelectedIndex == 3)
{
botSelection = " -b element";
}
else if (comboBotSelection.SelectedIndex == 4)
{
botSelection = " -b seer";
}



//Inject BakkesMod
if (checkBox1_BakkesMod.Checked)
{
Expand Down Expand Up @@ -660,5 +665,10 @@ private void Form1_Load(object sender, EventArgs e)
{
ToggleKeySetLoad();
}

private void linkLabel4_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
OpenBrowser("https://github.com/xenmods");
}
}
}

0 comments on commit bfa7742

Please sign in to comment.