-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorb1t.bat
24 lines (24 loc) · 1.08 KB
/
orb1t.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@echo off
echo ---------------------------------------------------
echo Terms of Service for [ORB1T]
echo ---------------------------------------------------
echo by agreeing to this/using this script you agree with the following:
echo.
echo the creator of orb1t prohibits, the use of orb1t for any type of unethical/illegal activities.
echo you have to take full responsibillity for any damage caused by orb1t.
echo the creator of orb1t is not liable for any damages or legal issues caused by orb1t.
echo this script/tool was created for only educational/testing purposes ONLY.
echo.
echo this script/tool was licensed under the MIT license, Any use or distribution of this script
echo must include proper attribution to the original author.
echo Claiming the source code as original work without acknowledgment is prohibited.
echo.
set /p agreement="Do you agree to the Terms of Service? (y/n): "
if /i "%agreement%"=="y" (
echo loading up orb1t...
python src\orb1t.py
) else (
echo You did not agree to the Terms of Service. Exiting...
exit /b
)
pause