27-10-2008, 06:02 AM
JoinGame needs something like:
and then the sub would be like
And you'll need a packet client side. Reverse engineer it from the sub I gave you
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)
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 SubAnd you'll need a packet client side. Reverse engineer it from the sub I gave you
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)
