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

Classes Loading Bug


Monkey Boy
 Share

Recommended Posts

Really?
I thought that, Reload will reload the classes files.

But how do you know that the server said you're missing Class file?
It just says Specific File. Maybe it's missing something else.
The file probably load after the server is up(after loading is finished).

Sincerely,
Rithy
Link to comment
Share on other sites

@Rithy58:

> Really?
> I thought that, Reload will reload the classes files.
>
> But how do you know that the server said you're missing Class file?
> It just says Specific File. Maybe it's missing something else.
> The file probably load after the server is up(after loading is finished).
>
> Sincerely,
> Rithy

Cause, I could wait hours, it only happened once I clicked EDIT.
Link to comment
Share on other sites

@[SB:

> [Kingdom's Soft]Captain evilbunnie link=topic=53997.msg572784#msg572784 date=1257803719]
> Do you wannna host evil bunneh game?

I was trying to do some work. Isnt going well. And I have no idea how to host, and if it involves holding SERVER.exe up all day, probally not.
Link to comment
Share on other sites

OHH! Should have said that.

Tell me. Do you have Editor.exe in your server folder?

If you do, then move on to this.

Check your Data.ini
Classes=??

If it says Classes=3, you HAVE to have 3 files. In other word, Class0.ini, Class1.ini and Class2.ini

Sincerely,
Rithy

The following error or errors occurred while posting this message:
Warning - while you were typing 2 new replies have been posted. You may wish to review your post.
Dang!
Link to comment
Share on other sites

@Rithy58:

> OHH! Should have said that.
>
> Tell me. Do you have Editor.exe in your server folder?
> **Yes**
>
> If you do, then move on to this.
>
> Check your Data.ini
> Classes=??
> **Had One, Changed to two, still, no cigar.**
>
> If it says Classes=3, you HAVE to have 3 files. In other word, Class0.ini, Class1.ini and Class2.ini
>
> Sincerely,
> Rithy
>
> The following error or errors occurred while posting this message:
> Warning - while you were typing 2 new replies have been posted. You may wish to review your post.
> Dang!
Link to comment
Share on other sites

Dang, what's with Eclipse Lately.

A guy that did portforward correctly and everything and it didn't let him connect.
And now you.

Did you restart your server when you change the Data.ini?

Do this.
Make sure Classes=2 in Data.ini
The make sure there are Class0.ini and Class1.ini in Class Folder.
Restart your server.

If it still doesn't work, I don't know what the problem is but I'll look into it.

Sincerely,
Rithy
Link to comment
Share on other sites

Here's the fix for those of you who don't want to use the SVN.

Open the server, then open frmServer.frm.

```
Private Sub Command30_Click()
    Dim ClassNum As Long

    If FileExists("Editor.exe") Then
        ' We use Val() so we can catch empty results and strings, converting them to 0.
        ClassNum = Val(InputBox("Which class file would you like to open?", "Choose File", "0"))

        If FileExists("Classes\Class" & ClassNum & ".ini") Then
            Call Shell(App.Path & "\Editor.exe Classes\Class" & ClassNum & ".ini", vbNormalNoFocus)
        Else
            Call MsgBox("The file 'Classes\Class" & ClassNum & ".ini' could not be found.", vbOKOnly, "Error")
        End If
    Else
        Call MsgBox("The eclipse editor cannot be found!", vbOKOnly, "Error")
    End If
End Sub

```
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...