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

[EO] Server Startup Problem


Kool_dude4ever
 Share

Recommended Posts

Sorry for the long reply, yesterday the client.vbp was damaged so i couldnt open it..but i tried just now, and it work..

i couldnt find it but i debugged it, then it automatically ran it. Then it gave another error (in vb6) and i clicked debug and it went to the part

```
Sub SaveResource(ByVal ResourceNum As Long)
    Dim filename As String
    Dim F As Long
    filename = App.Path & "\data\resources\resource" & ResourceNum & ".dat"
    F = FreeFile
    Open filename For Binary As #F
        Put #F, , Resource(ResourceNum)
    Close #F
End Sub

```
the highlighted text is  the code _Open filename For Binary As #F_
Link to comment
Share on other sites

Ctrl + F5 does a full compile & run so you can see any errors immediately. Simply pressing F5 or pressing the play button runs the program and errors only appear when the line of code is actually accessed.

To make the changes live, you need to re-compile the client. File -> Make client.exe.
Link to comment
Share on other sites

The download works fine straight out of the box.

It seems that by simply coming into contact with it you've managed to break it.

If you're going to be a cheeky little kid instead of actually following my instructions so I can fix your problem, I just won't bother.
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...