Skip to content

Commit

Permalink
Merge pull request #251 from sansbruhgaming/main
Browse files Browse the repository at this point in the history
fix intro bot q + replaced nexus blitz with ultimate spellbook
  • Loading branch information
KebsCS authored Oct 2, 2024
2 parents 288e5e5 + c07a603 commit 2b36841
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions KBotExt/Definitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,16 +77,17 @@ enum QueueID
ARAM = 450,
Quickplay = 490,
Clash = 700,
IntroBots = 830,
BeginnerBots = 840,
IntermediateBots = 850,
IntroBots = 870,
BeginnerBots = 880,
IntermediateBots = 890,
ARURF = 900,
TFTNormal = 1090,
TFTRanked = 1100,
TFTTutorial = 1110,
TFTHyperRoll = 1130,
TFTDoubleUp = 1160,
NexusBlitz = 1300,
UltimateSpellbook = 1400,
Tutorial1 = 2000,
Tutorial2 = 2010,
Tutorial3 = 2020,
Expand Down
10 changes: 5 additions & 5 deletions KBotExt/GameTab.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ class GameTab
if (ImGui::Button("ARURF"))
gameID = ARURF;

if (ImGui::Button("Nexus Blitz"))
gameID = NexusBlitz;
if (ImGui::Button("Ultimate Spellbook"))
gameID = UltimateSpellbook;

if (ImGui::Button("ARURF 1V1 (PBE)"))
gameID = 901;
Expand Down Expand Up @@ -501,19 +501,19 @@ class GameTab

ImGui::NextColumn();

ImGui::Text("Nexus Blitz Force");
ImGui::Text("Ultimate Spellbook Force");

ImGui::SameLine();

if (ImGui::Button("Jungle"))
{
LCU::Request("PATCH", "/lol-champ-select/v1/session/my-selection", "{\"spell1Id\":4,\"spell2Id\":11}");
LCU::Request("PATCH", "/lol-champ-select/v1/session/my-selection", "{\"spell1Id\":4,\"spell2Id\":55}");
}

ImGui::SameLine();
if (ImGui::Button("Lane"))
{
LCU::Request("PATCH", "/lol-champ-select/v1/session/my-selection", "{\"spell1Id\":4,\"spell2Id\":7}");
LCU::Request("PATCH", "/lol-champ-select/v1/session/my-selection", "{\"spell1Id\":4,\"spell2Id\":54}");
}

ImGui::Columns(1);
Expand Down

0 comments on commit 2b36841

Please sign in to comment.