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

2 Questions


Mixitrion
 Share

Recommended Posts

1.) Why does it says this when i try to add Points to a certain Stat:
![](http://www.freemmorpgmaker.com/files/imagehost/pics/002156a7437b1871f8c9d65594d53fc9.png)

2.)The Max Experience that a NPC can give(Well at least that's that mine says) is "32767", How can i make that greater? to be like "100000"?

Any Help?Did i make Myself Clear?XD
Link to comment
Share on other sites

You're going to need Visual Basic 6\. Then go into the client/server source and find Type NpcRec. It should say Experience As Integer, change it to Experience As Long. After you do that go the the client frmNpcEditor and change the Experience scroll bar to whatever number you want (below a certain limit, but that's more than 2 million).
Link to comment
Share on other sites

If TypeNpcRec is a file, I cant find it
but I can find a "modTypes.bas" file in my Client->Source folder. and I looked for NpcRec and this is what I found:

>! ![](http://www.freemmorpgmaker.com/files/imagehost/pics/dd03888dc4922f09855f2e76f62797ab.png)
And the "EXP" is set as "As Long"

Now when I go to frmNpcEditor and look for "Experience" this pops up:

>! ![](http://www.freemmorpgmaker.com/files/imagehost/pics/df9b42a13d97d5b902b08414218ed8fd.png)

But when I look for Scroll, theres one called "Begin VB.HScrollBar ExpGive", and I edit it like this:

>! ![](http://www.freemmorpgmaker.com/files/imagehost/pics/ba398ec154bad857b3d2ad460d86d5da.png)

But when I open up the "Edit NPCs" in my game (By pressing F1) it keeps saying this:

>! ![](http://www.freemmorpgmaker.com/files/imagehost/pics/35bceeea2f8abb510698b6beaa9e4b66.png)

It Didn't Change

I'm on ES
Link to comment
Share on other sites

@Mixitrion:

> Men I've read that VB6 Died, and besides what does VB6 Have That Visual Studio 2010 Doesn't?

There is a lot that has changed, Visual Studio 2010 uses the .NET framework, which VB6.0 does not, and there are tuns of other changes.
Link to comment
Share on other sites

@NGHS:

> @Mixitrion:
>
> > Men I've read that VB6 Died, and besides what does VB6 Have That Visual Studio 2010 Doesn't?
>
> There is a lot that has changed, Visual Studio 2010 uses the .NET framework, which VB6.0 does not, and there are tuns of other changes.

what i meant by that is that what is going to be the difference if i edit those files with VB6?
Link to comment
Share on other sites

Im not currently fluent in Visual Basic 6, but according to what Soul had said, You have to edit the source (open it with VB6) and change Integer(Im guessing find that file..) to Long in NpcRec where it handles the experience. Id suggest expirmenting with the files he named and trying to figure out what works and what doesn't.
Link to comment
Share on other sites

> Type NpcRec
>     Name As String * NAME_LENGTH
>     AttackSay As String * 100
>
>     Sprite As Long
>     SpawnSecs As Long
>     Behavior As Byte
>     Range As Byte
>
>     STR  As Long
>     DEF As Long
>     Speed As Long
>     Magi As Long
>     Big As Long
>     MAXHP As Long
>     Exp As Long
>     SpawnTime As Long
>
>     ItemNPC(1 To MAX_NPC_DROPS) As NPCEditorRec
>
>     Element As Long
>
>     SPRITESIZE As Byte
> End Type

Thats how i have it
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...