Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(3 edits) (+2)

I don't know if we are allowed to send batch files over so I will fill it out as text. It is meant to be a batch launcher to automate the process a bit. Be sure to install https://nodejs.org/en/download/ for the .js service. Internet Explorer or a Flash and ActionScript 3 enabled browser is required to launch the editor. URL to access if you lose your spot is http://localhost/html/list.html and it is there on your network. Here y'all go!:


@echo off

color 5A

CD %root%

cls

title GoAnimate Launcher

echo   ___  _____    __    _  _  ____  __  __    __    ____  ____ ____  ____   ___  _   _ 

echo  / __)(  _  )  /__\  ( \( )(_  _)(  \/  )  /__\  (_  _)( ___) (_  _)(_  _) / __)( )_( )

echo ( (_-. )(_)(  /(  )\  )  (  _)(_  )    (  /(  )\   )(   )__) _)(_   )(  ( (__  ) _ ( 

echo  \___/(_____)(__)(__)(_)\_)(____)(_/\/\_)(__)(__) (__) (____) (____) (__)  \___)(_) (_)

echo NOTE: VYOND WILL NEVER DMCA MY GOANIMATE ITCH PROJECT

echo (Made By GagoAnimate)

echo (Launcher Compiled By SammyRepsAnimator)

echo  _______________________________________________________________________________________

echo ^|!!!IMPORTANT!!! ^|

echo ^|Run with Internet Explorer or any Flash compatible browser supporting ActionScript 3! ^|

echo ^|It will not work otherwise! ^|

echo ^|_______________________________________________________________________________________^|

echo $

echo $

echo $

echo $

echo $

set /p Input=Is Node.js installed? (y/n/exit): 

If /I "%Input%"=="y" goto promptTwo

If /I "%Input%"=="n" goto NoNode

If /I "%Input%"=="exit" exit

:promptTwo

set /p Input=Is npm installed? (y/n/exit): 

If /I "%Input%"=="y" goto yes

If /I "%Input%"=="n" goto no

If /I "%Input%"=="exit" exit

:noNode

cls

start "" https://nodejs.org/en/download/

echo Please install from the website and run the program once done. Restarting program.

TIMEOUT /T 5

start GoAnimate.bat

exit

:yes

cls 

title GoAnimate Starting with npm service. If nothing appears after 10 seconds, please refresh...

TIMEOUT /T 3

start "" http://localhost/html/list.html

cls

npm start

:no

npm install

cls

echo npm now installed. Restarting program.

TIMEOUT /T 5

start GoAnimate.bat

exit