Skip to content

Commit 2b36841

Browse files
authored
Merge pull request #251 from sansbruhgaming/main
fix intro bot q + replaced nexus blitz with ultimate spellbook
2 parents 288e5e5 + c07a603 commit 2b36841

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

KBotExt/Definitions.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,17 @@ enum QueueID
7777
ARAM = 450,
7878
Quickplay = 490,
7979
Clash = 700,
80-
IntroBots = 830,
81-
BeginnerBots = 840,
82-
IntermediateBots = 850,
80+
IntroBots = 870,
81+
BeginnerBots = 880,
82+
IntermediateBots = 890,
8383
ARURF = 900,
8484
TFTNormal = 1090,
8585
TFTRanked = 1100,
8686
TFTTutorial = 1110,
8787
TFTHyperRoll = 1130,
8888
TFTDoubleUp = 1160,
8989
NexusBlitz = 1300,
90+
UltimateSpellbook = 1400,
9091
Tutorial1 = 2000,
9192
Tutorial2 = 2010,
9293
Tutorial3 = 2020,

KBotExt/GameTab.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ class GameTab
8282
if (ImGui::Button("ARURF"))
8383
gameID = ARURF;
8484

85-
if (ImGui::Button("Nexus Blitz"))
86-
gameID = NexusBlitz;
85+
if (ImGui::Button("Ultimate Spellbook"))
86+
gameID = UltimateSpellbook;
8787

8888
if (ImGui::Button("ARURF 1V1 (PBE)"))
8989
gameID = 901;
@@ -501,19 +501,19 @@ class GameTab
501501

502502
ImGui::NextColumn();
503503

504-
ImGui::Text("Nexus Blitz Force");
504+
ImGui::Text("Ultimate Spellbook Force");
505505

506506
ImGui::SameLine();
507507

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

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

519519
ImGui::Columns(1);

0 commit comments

Comments
 (0)