11-07-2009, 05:19 PM
|
#7 (permalink)
|
|
Membro - Marechal
Registrado em: Nov 2008
Posts: 283
Agradecido 70 Vezes em 47 Posts
Achei Ruim:
Acharam ruim Vezes em Posts
|
Seto. O meu esta assim:
@echo off
title Game Server Console
:start
REM ----------- Set Class Paths and Calls setenv.bat -----------------
SET OLDCLASSPATH=%CLASSPATH%
call classpath.bat
REM ------------------------------------------------------------------
REM -------------------------------------
REM Default parameters for a basic server.
java -Dfile.encoding=UTF-8 -Xmx512m com.l2dot.gameserver.GameServer
REM
REM If you have a big server and lots of memory, you could experiment for example with
REM java -server -Xmx1536m -Xms1024m -Xmn512m -XX:PermSize=256m -XX:SurvivorRatio=8 -Xnoclassgc -XX:+AggressiveOpts
REM -------------------------------------
SET CLASSPATH=%OLDCLASSPATH%
if ERRORLEVEL 2 goto restart
if ERRORLEVEL 1 goto error
goto end
:restart
echo.
echo Admin Restart ...
echo.
goto start
:error
echo.
echo Server terminated abnormaly
echo.
:end
echo.
echo server terminated
echo.
pause
Meu Windows e XP 64 Bits, com 4 GB de Ram.
Qual a melhor config para meu GS ?
|
|
|