Server Launcher Script

Newbie Spellweaver
Joined
Jun 7, 2006
Messages
9
Reaction score
0
Put this in a text document and save it as Launcher.bat
Code:
@echo off
Title MapleStory Server Launcher
start launch_world.bat
echo Launched world sucsessfully
@ping 127.0.0.1 -n 2 -w 10000 > nul
@ping 127.0.0.1 -n %1% -w 10000 > nul
start launch_login.bat
echo Launched login sucsessfully
@ping 127.0.0.1 -n 2 -w 10000 > nul
@ping 127.0.0.1 -n %1% -w 10000 > nul
start launch_channel.bat
echo Launched channel sucsessfully
@ping 127.0.0.1 -n 2 -w 5000 > nul
@ping 127.0.0.1 -n %1% -w 5000 > nul
msg * Server launched sucsessfully
exit
 
Last edited:
Re: [Release]Wait script

its an all-in-one launcher to start your server with!
which has already been released a couple of times...........
 
Re: [Release]Server Launcher Script

@echo off
title YourServer: inactive
color 1b
echo YourServer Launcher
echo
echo.
echo Ready to execute, press any key
pause >nul
cls
color 4c
title YourServer: activating 0/3
start /b launch_world.bat
title YourServer: activating 1/3
ping localhost -w 10000 >nul
start /b launch_login.bat >nul
title YourServer: activating 2/3
ping localhost -w 10000 >nul
start /b launch_channel.bat >nul
title MsSoul: activating 3/3
ping localhost -w 10000 >nul
color 2a
title YourServer: Fully Active

This is mine if that dosnt work,

Been released already but still, good job :D
 
Re: [Release]Server Launcher Script

Eh... this thread is considered spam. You can't give him credits for anything here. He did nothing oO
 
Back