Advertisement
Luciano_fuentes

TDN - WRITES - MMR

Nov 1st, 2016
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Public Sub WriteSend_Search(ByRef ID() As String, ByVal n_Reto As Byte)
  2.     Dim LoopC As Long
  3.     With outgoingData
  4.         Call .WriteByte(ClientPacketID.Send_Search)
  5.         Call .WriteByte(n_Reto)
  6.         If n_Reto = 1 Then Exit Sub
  7.         For LoopC = 2 To n_Reto
  8.             Call .WriteASCIIString(ID(LoopC))
  9.         Next LoopC
  10.     End With
  11. End Sub
  12.  
  13. Public Sub WriteAccept_Search(ByVal ID_Send As Integer)
  14.     Call outgoingData.WriteByte(ClientPacketID.Accept_Search)
  15.     Call outgoingData.WriteInteger(ID_Send)
  16. End Sub
  17.  
  18. Public Sub WriteAccept_Matching()
  19.     Call outgoingData.WriteByte(ClientPacketID.Accept_Matching)
  20. End Sub
  21.  
  22. Public Sub WriteRefuse_Matching()
  23.     Call outgoingData.WriteByte(ClientPacketID.Refuse_Matching)
  24. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement