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

Moving the Stats And Items Above 255


azaew
 Share

Recommended Posts

Right, to start with your first question. In order to change the max number of items, do this.

**Both client-side AND server-side, find this**:
```
Public Const MAX_ITEMS As Long = 255

```
and change the 255 to whatever you want. Then recompile.

* * *

The second part isn't as easy as the above, but it is pretty easy.

Do this **both client-side and server-side**.

Find:
```
    Add_Stat(1 To Stats.Stat_Count - 1) As Byte

```
and change it to:
```
    Add_Stat(1 To Stats.Stat_Count - 1) As Integer

```
Then find:
```
    Stat_Req(1 To Stats.Stat_Count - 1) As Byte

```
and change it to:
```
    Stat_Req(1 To Stats.Stat_Count - 1) As Integer

```
The next steps are client-side only.

Next, go to frmEditor_Item. When ever you see +(Stat Name here) (like +Str, +End, +Agi) look at the scrollbar next to it and click it. Then go to the property window on the right and change Max (or Maximum, I forget) to 32767.

Here's a picture if you don't get it.

[Picture](http://www.freemmorpgmaker.com/files/imagehost/pics/21d4a3f694cab6ff82b76df633e129a1.png).
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...