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

jordy205

Members
  • Posts

    50
  • Joined

  • Last visited

    Never

Posts posted by jordy205

  1. > Have you also deleted```
    > ? Considering the resource editor isn't related to this tutorial, I'm guessing you messed something up.
    >
    > This is an excellent time to learn [url]how to debug in VB6[/url]. I recommend the break-line approach.
    >
    > If you want i can show to you in teamviwer ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/tongue.png)
    >
    > Say me your skype and i will add ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/biggrin.png)
    > ```
  2. Ok i have play in debug mode and it is teh error:

    ```

    [color]Options.NightTile = GetVar(filename, "Graphics", "Night")[/color]

    ```
    and my options are these:

    ```

    [Options]

    Game_Name=Eclipse Mega

    Username=jordy205

    SavePass= 1

    IP=localhost

    Port= 7001

    MenuMusic=Banquet.mid

    Music= 1

    Sound= 1

    Debug= 1

    Levels= 0

    Password=

    [code][Graphics]

    Night= 113

    [b]

    But if i erase the

    [/b]

    [b]

    It run but i have a crazy error:

    When i login to in the client it open all the editor and then say Unecorable DX8 error:

    Screenshot

    [url]http://gyazo.com/2c355a61d1c20733484440420b073562[/url][/b][/code]
    ```
  3. > jordy205,
    >
    > A simultaneous strength and weakness of the Eclipse community is the number of engines. This isn't quite readily compatible with EFF, but can be easily tweaked to be.
    >
    > The error would come between when the server message reads load options and the next load in line. It could be this part in modGeneral:
    >
    > ```
    >
    > If Options.DayNight = 0 Then 'New
    >
    > frmServer.Label8.Visible = False 'New
    >
    > frmServer.lblGameTime.Visible = False 'New
    >
    > End If
    >
    > ```
    > In EFF frmServer.lblGameTime doesn't exist. This could be causing your error. Code involving this form is also in GameLoop. You should create the label in frmServer.
    >
    > Also, in EFF frmServer.Label8 is "Second Place: " in the status tab of the topkill event. This isn't an error, but it is silly to have two separate scripts updating the same label. Fix the labels in your frmServer.
    >
    > Edit: Just saw that the forms are included in the tutorial. Woops. Make sure that Label8 is not an array, such as Label8(0) and Label8(1). Check also that DayNight=1 is in the options.ini of your server. Other than that, no idea.

    But the error is in the client xD in the server is perfect i change the label 8 thanks for your help ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/wink.png) But it is the client when i open the client.
  4. > No, more like a treasure chest of limited randomness. You enter 5 pairs of a percentage and an item to give. When the player opens the box, they have a percentage chance to get each item. Like the lucky boxes in RO.

    a hahaha good job i will add in my game ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/wink.png) Thanks Good idea
  5. Hi, i have a error, i am using Eclipse The Final Frontier and when i finished all tutorial i have these error: [http://gyazo.com/6447524894129300dd8c66281f0eb2bb](http://gyazo.com/6447524894129300dd8c66281f0eb2bb) in the client.

    I supused that it is a error of loading the options:

    ```

    Public Sub LoadOptions()

    Dim filename As String

    ' If debug mode, handle error then exit out

    If Options.Debug = 1 Then On Error GoTo ErrorHandler

    filename = App.Path & "\Data Files\config.ini"

    If Not FileExist(filename, True) Then

    Options.Game_Name = "Eclipse Origins"

    Options.Password = vbNullString

    Options.savePass = 0

    Options.Username = vbNullString

    Options.IP = "127.0.0.1"

    Options.Port = 7001

    Options.MenuMusic = vbNullString

    Options.Music = 1

    Options.sound = 1

    Options.Debug = 0

    Options.Lvls = 0

    Options.NightTile = 1

    SaveOptions

    Else

    Options.Game_Name = GetVar(filename, "Options", "Game_Name")

    Options.Username = GetVar(filename, "Options", "Username")

    Options.Password = GetVar(filename, "Options", "Password")

    Options.savePass = Val(GetVar(filename, "Options", "SavePass"))

    Options.IP = GetVar(filename, "Options", "IP")

    Options.Port = Val(GetVar(filename, "Options", "Port"))

    Options.MenuMusic = GetVar(filename, "Options", "MenuMusic")

    Options.Music = GetVar(filename, "Options", "Music")

    Options.sound = GetVar(filename, "Options", "Sound")

    Options.Debug = GetVar(filename, "Options", "Debug")

    Options.Lvls = GetVar(filename, "Options", "Levels")

    Options.NightTile = GetVar(filename, "Graphics", "Night")

    End If

    ' Error handler

    Exit Sub

    ErrorHandler:

    HandleError "LoadOptions", "modDatabase", Err.Number, Err.Description, Err.Source, Err.HelpContext

    Err.Clear

    Exit Sub

    End Sub

    ```
    Sorry for my english ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/biggrin.png) Thanks
  6. Hi, i am changing the Event systen of the Resbak Online to the Eclipse Origins 3.0:

    But i have a problem wiht the Give Exp botton: [http://gyazo.com/fdb…d6c0e51412d9823](http://gyazo.com/fdb0e68eb9f750b71d6c0e51412d9823)

    When i tried to copile it say

    Copile error:

    Method or data member dont found.

    Screenshot: [http://gyazo.com/d03…061c43150e34565](http://gyazo.com/d036ec1d1ed1dc665061c43150e34565)

    Code:```

    Case EventType.evGiveExp

    frmEditor_Events.lstCommands.AddItem indent & "@>" & "Give Player " & tmpEvent.Pages(curPageNum).CommandList(curlist).Commands(i).Data1 & " Experience."

    ```

    Thanks very much ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/biggrin.png)
  7. > Then just change the frmMain to a bigger width and height and also follow my tutorials but skip the set to maximized step.
    >
    > and also change :
    >
    > Public Const MAX_MAPX As Byte = 31
    >
    > Public Const MAX_MAPY As Byte = 24
    >
    > To:
    >
    > Public Const MAX_MAPX As Byte = ((frmMain.width /32 )-1)
    >
    > Public Const MAX_MAPY As Byte = ((frmMain.height /32) -1)
    >
    > (change frmMain£.height with the height of the frmMain and frmMain.width with the width of frmMain)

    When i try to copile is say copile error Constant expression required:

    Public Const MAX_MAPX As Byte = ((frmMain.Width / 32) - 1) <–-----------------------

    Public Const MAX_MAPY As Byte = ((frmMain.Height / 32) - 1)
  8. > Please be more precise becuz now i don't understand what you actually want
    >
    > So for short MORE INFO NEEDED

    I want to change like these [http://oi48.tinypic.com/33cra4w.jpg](http://oi48.tinypic.com/33cra4w.jpg)

    the left image ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons/<#EMO_DIR#>/biggrin.png)

    i want to make more biger the game but not fullscreen :S
×
×
  • Create New...