RPG_LvL_maker.bat:
Code:
FOR /L %%G IN (0,5,100) DO echo Levels=%%G >> rpg_lvl.txt
setting the InfiniteReqEXPOp to 0
and InfiniteReqEXPValue to 5
will do the same thing and will allow infinite number of levels.
For those that want to know: It is a script to generate a text file that makes the exp table for a server.
in linux it would be:
Code:
for x in $(seq 0 5 100); do echo Levels=${x};done>>rpg_lvl.txt