Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

How do I change the amount of items i can have in my game?


Seb
 Share

Recommended Posts

Welcome to the forum!
Changing the maximum amount of items for your game using Eclipse Origins is quite easy. All you need is VB6 and the ability to change a number in a single line of code.

Step 1) You need to close your server and then you need to open Server.vbp.

Step 2) Open up the Modules folder on the right side of your screen and double click
            "modConstants"

Step 3) Find the line
```
Public Const MAX_ITEMS As Long = 255

```
Step 4) Change the number "255" to whatever number you want.

Step 5) Click "File" (located top left corner), then click "Make Server.exe".

Do the exact same steps in Client.vpb. It is to be noted the numbers must match in the Client.vpb and Server.vpb.
It is also good to note that in the same area you can change other game constants.

You will also need to send your new client to anyone trying to join your game.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...