Spawntaek wrote:borka wrote:WolfHeart wrote:Does it take awhile for characters to load when you first use this client?Spawntaek wrote:How can i hide windows prompt shell :
when i use : @echo off "C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xms256m -Xmx512m -jar haven.jar moltke.seatribe.se
that doesn't work.
if you use normal run.bat withoutthe command window should close itself
- Code: Select all
@echo off
That doesn't work. I have always command window when i run .bat
try this
- Code: Select all
start C:\PROGRA~2\Java\jre6\bin\javaw -Djava.library.path="THE PATH TO YOUR ENDER FOLDER GOES HERE IN THE QUOTES" -Xms256m -Xmx512m -jar haven.jar moltke.seatribe.se -r ./res
2 things to note are the "start" which will close the terminal (I believe this is addressed earlier in the thread) and the "PROGRA~2" directory name which is (rather, should be) your "Program Files (x86)" folder under the DOS convention (http://en.wikipedia.org/wiki/8.3_filename). I can't remember all the reasons why I had to do all of this to the command which for your case may be 1 or 2 steps extra but it was mainly because I am on a 64-bit machine which uses the 64-bit javaw by default; so, when I used the 32-bit I had to use the explicit path, I had to use the DOS convention for the "start" command to recognize the path and I can't remember the details behind the -Djava.library.path flag inclusion.
Hope this helps.