- Joined
- Jul 28, 2007
- Messages
- 246
- Reaction score
- 35
a)what his does is simply you click the cmd and walla no pressing key blah blah(really useful if your on the go) also you can make folder inside your start>allprograms and name it startup and put that in there and it should(depending on settings) auto launch upon turning on computer(useful if comp crashes and your computer auto restarts for some odd reason[like mine])
b)well all i really did was just edit it abit but hey it works
ok heres 2 small tuts on how to use these
tut 1
--------
open notepad
paste in
save as:all files
something.bat
tut 2
---------
right click your current bat, edit and clear it all then paste.
moving on... well i'll make 2 versions one is with the text INSIDE of the .bat and another is with the 3 bats zZz
this one is with text inside of the .bat
and this one is for 3 windows(not recommended but hell it's good if your debugging and looking for a problem etc)
if you ask me if this works, then you don't even deserve a siggy.
b)well all i really did was just edit it abit but hey it works
ok heres 2 small tuts on how to use these
tut 1
--------
open notepad
paste in
save as:all files
something.bat
tut 2
---------
right click your current bat, edit and clear it all then paste.
moving on... well i'll make 2 versions one is with the text INSIDE of the .bat and another is with the 3 bats zZz
this one is with text inside of the .bat
Code:
color 4c
title OdinMS: activating 0/3
start /b launch_world.bat
title OdinMS: activating 1/3
ping localhost -w 10000 >nul
start /b launch_login.bat >nul
title OdinMS: activating 2/3
ping localhost -w 10000 >nul
start /b launch_channel.bat >nul
title OdinMS: activating 3/3
ping localhost -w 10000 >nul
COLOR 3
title OdinMS: fully active
Code:
ECHO Starting launch_world.bat
start launch_world.bat
ping localhost -w 10>nul
ECHO Starting launch_login.bat
start launch_login.bat
ping localhost -w 10>nul
ECHO Starting launch_channel.bat
start launch_channel.bat