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

QCherry

Members
  • Posts

    8
  • Joined

  • Last visited

    Never

Posts posted by QCherry

  1. Okay,

    I change in server this:

    ```
    Private Type TradeItemRec
        Item As Long
        ItemValue As Long
        itembonus As Byte
        ItemRank As Byte
        costitem As Long
        costvalue As Long
    End Type
    ```itembonus and itemrank to byte and crashes client same before post
  2. I replace TradeItemRec in server this code:

    ```
    Private Type TradeItemRec
        Item As Long
        ItemValue As Long
        Bonus As Byte
        Rank As Byte
        CostItem As Long
        CostValue As Long
    End Type
    ```And on click Shops editor in admin panel, crash CLIENT debug:

                    frmEditor_Shop.lstTradeItem.AddItem I & ": " & .ItemValue & "x " & Trim$(Item(.Item).Name) & " for " & .CostValue & "x " & Trim$(Item(.CostItem).Name)

    this line (error runtime 9' subscript out of rage)
  3. Hi,

    I have game on EO 3 source, and have a big problem, when adding new shop and click OK server give me this Run-Time error '9'

    ![](http://i.imgur.com/Y56jKT5.png)

    I debug server and have this

    ![](http://i.imgur.com/xUrXlzj.png?1)

    ( CopyMemory ByVal VarPtr(Shop(shopNum)), ByVal VarPtr(ShopData(0)), ShopSize ) line
×
×
  • Create New...