Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Loading Editor
#7
JoinGame needs something like:

Code:
Call SendUpDateNewThing(Index)

and then the sub would be like

Code:
Sub SendUpDateNewThing(ByVal Index As Long)
Dim Packet As String

Packet = "UPDATENEWTHING" & SEP_CHAR

For i = 1 to MAX_NEWTHING
    Packet = Packet & NewThing(i).Name & SEP_CHAR
Next i

Packet = Packet & END_CHAR

End Sub

And you'll need a packet client side. Reverse engineer it from the sub I gave you Tongue This is all pseudo code, might not be exactly correct (especially if you're using MS4, this is based on the packet system in earlier versions of mirage)
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)