Before you start this please make sure your server is completely
shut down. Because you will have to recompile the sourcecode
at the end of this tutorial.
So one of the annoying things with the swgemu sever is the stack size being
limited to only 100,000 of any resource in one stack.
Now this can be changed
This is located in the directory
Core3/MMOCoreORB/src/server/zone/objects/resource
And you want to open up the file ResourceContainer.idl
Now the first instance of this is pretty close to the top of
file around line 20. This is subject to change as the code
changes but you should start looking around there.
Look for this line:
public static final int MAXSIZE = 100000;
Now I change mine to a 1 million stack size so it
looks something like this.
public static final int MAXSIZE = 100000;
Now after you do this you will have to recompile your source code again
in Core3/MMOCoreORB
Now for me I do a make -j4 because I only have 4 cores
on this server if you have more cores then you will have to change
this.
Tips and tricks and commands for running a SWGEMU development server.
Showing posts with label SWGEMU; resources; stack; size; greater; 100000; change; 100K. Show all posts
Showing posts with label SWGEMU; resources; stack; size; greater; 100000; change; 100K. Show all posts
Subscribe to:
Posts (Atom)
So you want to be a Jedi?
Granting Jedi Skills Light Master: /gmJediState 4; Dark Master: /gmJediState 8; /grantPadawanTrialsEligibility; /grantSkill force_ran...
-
So there was a file a long time ago on a Google Drive called "Commands V2 - Sorted.pdf" I still had a copy of this file on my ha...
-
This is a guide for if you are running a SWGEMU development enviroment. If you don't have a development enviroment already running see t...
-
So you want your server to have more lots per character so they can drop more harvesters and houses etc. Well this is how you do it. Firs...