diff options
author | Mumbles <mumbles@qt-ro.com> | 2013-11-05 19:35:48 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-11-05 19:37:46 +0100 |
commit | 4fbe8e2a270997b02e2e002074259e4648ac0031 (patch) | |
tree | cafaa2a0a6e667e883149b930856a39abf5143bc | |
parent | 285296a2c748533a85d07589687f6ccdc2d94613 (diff) | |
download | hercules-4fbe8e2a270997b02e2e002074259e4648ac0031.tar.gz hercules-4fbe8e2a270997b02e2e002074259e4648ac0031.tar.bz2 hercules-4fbe8e2a270997b02e2e002074259e4648ac0031.tar.xz hercules-4fbe8e2a270997b02e2e002074259e4648ac0031.zip |
Follow-up to 97001710c06ed7053d18c8baaac602eb563b64b3
- Added script-checker.bat launcher for Windows.
-rw-r--r-- | script-checker.bat | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/script-checker.bat b/script-checker.bat new file mode 100644 index 000000000..e05eda64e --- /dev/null +++ b/script-checker.bat @@ -0,0 +1,29 @@ +@ECHO OFF + +REM Copyright (c) Hercules Dev Team, licensed under GNU GPL. +REM See the LICENSE file +REM Base Author: Mumbles @ http://hercules.ws + +COLOR 0F + +ECHO. +ECHO Hercules Development Team presents +ECHO _ _ _ +ECHO ^| ^| ^| ^| ^| ^| +ECHO ^| ^|_^| ^| ___ _ __ ___ _ _^| ^| ___ ___ +ECHO ^| _ ^|/ _ \ '__/ __^| ^| ^| ^| ^|/ _ \/ __^| +ECHO ^| ^| ^| ^| __/ ^| ^| (__^| ^|_^| ^| ^| __/\__ \ +ECHO \_^| ^|_/\___^|_^| \___^|\__,_^|_^|\___^|^|___/ +ECHO. +ECHO Script Syntax Checker +ECHO http://hercules.ws/board/ +ECHO. +ECHO Drag and drop or input manually +ECHO. +ECHO. + +:LOOP + SET /P SCRIPT="Enter path/to/your/script.txt: " %=% + map-server.exe --script-check %SCRIPT% + ECHO. +GOTO LOOP |