Skip to content

Commit 1e757ff

Browse files
committed
tower
1 parent 67a0dab commit 1e757ff

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
- Added ability to move labels to different corners
77
- Added TPS Bypass
88
- Added Mac Support
9-
- Added New Bypass category with <cl>Main Level Bypass, Tower Level Bypass, </c>
9+
- Added Main Level Bypass
10+
- Added Tower Level Bypass
1011

1112
# 1.3.5
1213

src/Client/ClientSetup.h

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class ClientUtils
1212
static void Setup(bool android = false)
1313
{
1414
SetupLevel();
15-
SetupBypass();
15+
//SetupBypass();
1616
SetupUniversal();
1717
SetupCreator();
1818
SetupCosmetic();
@@ -130,17 +130,9 @@ class ClientUtils
130130
bypass->id = "bypass-window";
131131
bypass->windowPos = ImVec2(50 + (50 + (Client::instance->tileSize.x)) * 0, 50);
132132

133-
134-
bypass->modules.push_back(new Module("Main Levels", "main-level-bypass", "Allows you to play the main demon levels"));
135-
bypass->modules.push_back(new Module("Tower Levels", "tower-level-bypass", "Allows you to play the levels in the tower"));
136-
137133
//bypass->modules.push_back(new Module("Slider Limit Bypass", "slider-limit", "Allows sliders to go beyond the limit of the slider. <cr>Doesn't work for scaling in the editor currently</c>"));
138134

139135
Client::instance->windows.push_back(bypass);
140-
141-
auto tps = new InputModule("Ticks:", "tps-bypass-value", "240");
142-
tps->maxSize = 6;
143-
Client::GetModule("tps-bypass")->options.push_back(tps);
144136
}
145137

146138
static void SetupUniversal()
@@ -160,8 +152,11 @@ class ClientUtils
160152
bypass->modules.push_back(new Module("Auto Safe mode", "auto-safe-mode", "Automatically enables safe mode if you have cheats enabled", true));
161153
bypass->modules.push_back(new Module("Safe mode", "safe-mode", "Disables all progress on levels"));
162154

163-
bypass->modules.push_back(new Module("Character Limit", "char-limit", "Removes the <cl>character limit</c> on input fields", false, "<cr>Warning!</c>\nThis module has been <cl>known</c> to cause issues on <cg>some</c> devices such as:\n<cl>- Crashing when you type</c>\n- Crashing when the input field goes away.\nIf the game crashes pressing an ok button, <cr>Disable</c> this module", true));
164-
bypass->modules.push_back(new Module("Character Filter", "char-filter", "Allows you to input <cg>any</c> character in input fields", false, "<cr>Warning!</c>\nThis module has been <cl>known</c> to cause issues on <cg>some</c> devices such as:\n<cl>- Crashing when you type</c>\n- Crashing when the input field goes away.\nIf the game crashes pressing an ok button, <cr>Disable</c> this module", true));
155+
bypass->modules.push_back(new Module("Character Limit", "char-limit", "Removes the <cl>character limit</c> on input fields", false, "<cr>Warning!</c>\nThis mod has been <cl>known</c> to cause issues on <cg>some</c> devices such as:\n<cl>- Crashing when you type</c>\n- Crashing when the input field goes away.\nIf the game crashes pressing an ok button, <cr>Disable</c> this mod", true));
156+
bypass->modules.push_back(new Module("Character Filter", "char-filter", "Allows you to input <cg>any</c> character in input fields", false, "<cr>Warning!</c>\nThis mod has been <cl>known</c> to cause issues on <cg>some</c> devices such as:\n<cl>- Crashing when you type</c>\n- Crashing when the input field goes away.\nIf the game crashes pressing an ok button, <cr>Disable</c> this mod", true));
157+
158+
bypass->modules.push_back(new Module("Main Levels", "main-level-bypass", "Allows you to play the main demon levels"));
159+
bypass->modules.push_back(new Module("Tower Levels", "tower-level-bypass", "Allows you to play the levels in the tower"));
165160

166161
bypass->modules.push_back(new Module("Auto Song Download", "auto-song", "Automatically downloads songs when you open a level"));
167162
bypass->modules.push_back(new Module("Full Options Menu", "full-options", "Replaces the mini options menu in the pause menu with the full options menu"));

0 commit comments

Comments
 (0)