You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo.THESE ARE DEBUG OPTIONS AND **CAN** BREAK THE PROGRAM!!
148
145
echo.ARE YOU **101% POSITIVE** THAT YOU NEED THESE?
149
-
set /p isSureOfDebugOptions=Say "I understand that the creator takes no responsibilty in what can happen if I, the user, breaks part of the program, by using explictly stated as options for DEBUGGING purposes."
150
-
if '%isSureOfDebugOptions%'=='I understand that the creator takes no responsibilty in what can happen if I, the user, breaks part of the program, by using explictly stated as options for DEBUGGING purposes.'
151
-
( echo.>WellThisWorks.txt
152
-
goto :realDebug )
153
-
else (goto :MainMenu)
146
+
echo.
147
+
echo.Say "I understand", to prove the you understand this aggreement: The creator takes no responsibilty in what can happen if I, the user, breaks part of the program, by using explictly stated as options for DEBUGGING purposes.
148
+
set /p isSureOfDebugOptions=
149
+
if '%isSureOfDebugOptions%'=='I understand' goto :realDebug
150
+
if '%isSureOfDebugOptions%'=='i understand' goto :useBetterGrammarDebug
151
+
goto :noDebug
152
+
153
+
154
+
:noDebug
155
+
echo No debug 4 u
156
+
:: Causes about a 0.25 second pause
157
+
ping techflash.ga -n 1>nul
158
+
goto :noDebug
154
159
155
160
:: Debug options don't exist as it would be accessible even if you didn't aggree to the terms.
0 commit comments