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

macht102

Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Everything posted by macht102

  1. @pigboss: > Hey Robin, how do I change the text in the Client that says: "welcome to eclipse origins….Click register to plunge into online world...."? to change that you just go into frmMenu.frm in vb6. then just move the credits window and all the other windows to the side because its at the bottom of the pile. then click on the window with the text and in the properties menu on the side find caption and just change the text.
  2. I get the error when I go to run and compile, then i try and log in, I then click debug and the error occurs at CopyMemory ByVal VarPtr(Npc(n)), ByVal VarPtr(NpcData(0)), NpcSize the full section is Private Sub HandleUpdateNpc(ByVal Index As Long, ByRef Data() As Byte, ByVal StartAddr As Long, ByVal ExtraVar As Long) Dim n As Long Dim Buffer As clsBuffer Dim NpcSize As Long Dim NpcData() As Byte Set Buffer = New clsBuffer Buffer.WriteBytes Data() n = Buffer.ReadLong ' Update the Npc NpcSize = LenB(Npc(n)) ReDim NpcData(NpcSize - 1) NpcData = Buffer.ReadBytes(NpcSize) CopyMemory ByVal VarPtr(Npc(n)), ByVal VarPtr(NpcData(0)), NpcSize Set Buffer = Nothing End Sub
×
×
  • Create New...