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

Evb newest version rte


Jumbofile
 Share

Recommended Posts

RTE 9

I changed this code

```

Private Type ChatRec

text As String * 150

ReplyText(1 To 4) As String * 30

ReplyConvTo(1 To 4) As Byte

Event As Byte

Data1 As Long

Data2 As Long

Data3 As Long

Sound As String * NAME_LENGTH

End Type

```
to

```

Private Type ChatRec

text As String * 150

ReplyText(1 To 4) As String * 30

ReplyConvTo(1 To 4) As Byte

Event As Byte

Data1 As Long

Data2 As Long

Data3 As Long

Colour As Long

Sound As String * NAME_LENGTH

End Type

```
I added Colour As Long

When it tried to load the game it gave RTE9 and highlighted this line

```

CopyMemory ByVal VarPtr(Conv(n)), ByVal VarPtr(ConvData(0)), ConvSize

```

That is located in Private **Sub HandleUpdateConv**

Please tell me broke.
Link to comment
Share on other sites

You changed it so it looks Like this : ?

Private Type ChatRec

text As String * 150

ReplyText(1 To 4) As String * 30

ReplyConvTo(1 To 4) As Byte

Event As Byte

Data1 As Long

Data2 As Long

Data3 As Long

Sound As String * NAME_LENGTH

Colour As Long

End Type
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...