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

Modification(S) 2.6 Nova


Richy420Rich
 Share

Recommended Posts

  • Replies 406
  • Created
  • Last Reply

Top Posters In This Topic

@Apple:

> Hello. I want to add a job system in my game.
> Problem is,I've done a lot of progress with my other clients.
> May I learn how to add a job system in my client/server?
> Thank you.

Just search a piece of code that relates to the Jobs sytem and copy/paste all things that link to it and debug it sometimes so you can look for missing pieces. ;)
Link to comment
Share on other sites

Since I have create the quest number 4 has every time I click on the button " Quest " of the menu of the player this error appear
http://img856.imageshack.us/i/bugiv.png
and when I clic on debug
http://img560.imageshack.us/i/bugfb.png

EDIT: He is my 4th quest, I believes that we can have maximum 3 quest
Link to comment
Share on other sites

I've did some edits in source and now I get rte 9 when doing an Skill, he's selecting this code:
```
If Resource(Resource_index).ItemReward(FinalReward) > 0 Then
```In **CheckResources**

Can someone please help me?
Link to comment
Share on other sites

Ive been useing Modifications for awhile now but what I dont understand When i started Making a summoner class, the first two Summons spells work but the 3,4,5,6 and so on Give an error known as Runtime Error 6 Overflow, this is confusing to me, do you know how to fix this? Any help would be greatly appreciated.
Link to comment
Share on other sites

I seem to be having a problem playing MIDI music in this version.

Get an error on **Set Segment = Loader.LoadSegment(App.Path & MUSIC_PATH & FileName)**

Spotted another error with the resources. After playing with some settings and attacking a resource tile, I get a Subscript out of Range error in the server which highlights this line of code:
**If Resource(Resource_index).ItemReward(FinalReward) > 0 Then**
Link to comment
Share on other sites

Ya'll got me mind boggled. I'm making my project and have not ran into any errors in quest maker or summoner making nor have had any other error, though I saw a couple bugs that I'll report here for those who have VB6 can fix.. I'm way too busy right now to really pay attention to this modification any longer.

For the music error, you all can try this;

In client - modHandleData - HandleFlash

Remove these two lines from the code.

```
Call StopMidi
Call SoundStop(Index)

```
As for the RTE 9 in resources, can be fixed in server..

Server - modPlayer - CheckResource

Look for 'Check for multi-item job
Replace with;

```
                'Check for multi-item job
                For i = 1 To 10
                If Resource(Resource_index).ItemReward(i) > 0 And Resource(Resource_index).ItemReward(i) < MAX_ITEMS Then
                If Player(index).ResourceLv(Resource_index) < Resource(Resource_index).ItemLevel(i) Then
                If i = 1 Then
                FinalReward = i
                Else
                FinalReward = (i - 1)
                End If
                Exit For
                Else
                FinalReward = i
                End If
                Else
                FinalReward = 0
                End If
                Next

```
Under that, replace 'inv space with this

```

                    ' inv space?
                    If Resource(Resource_index).ItemReward(FinalReward) > 0 Then
                        If FindOpenInvSlot(index, Resource(Resource_index).ItemReward(FinalReward)) = 0 Then
                            PlayerMsg index, "You have no inventory space.", BrightRed
                            Exit Sub
                        End If
                        Else
                        PlayerMsg index, "There's no item to obtain by this resource!", BrightRed
                        Exit Sub
                    End If

```
It's freehanded so I'm not sure if these will totally fix the problems that I hope it would.
As for the quest maker error, that's something totally new to me as it's never happened to me.
Link to comment
Share on other sites

Im haveing a strange problem when i try to save when exiting out after compiling.
this is what it says "btw this is for the frmMain"

system error &h80004005 (-2147467259). unspecified error

i dont understand, ive never got a error like this before, and the only thing ive added is two options buttons.
Link to comment
Share on other sites

my friend enter the server and they can't seems to see the screen theres nothing there.

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

and after they sync finish the client automaticly closes
Link to comment
Share on other sites

@janpan40:

> Im haveing a strange problem when i try to save when exiting out after compiling.
> this is what it says "btw this is for the frmMain"
>
> system error &h80004005 (-2147467259). unspecified error
>
> i dont understand, ive never got a error like this before, and the only thing ive added is two options buttons.

it happened to me before, and i think that only thing you can do with it is nothing.
i have just get blank eo and source modificated 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...