Guest User

Untitled

a guest
May 20th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Private Sub sckClient_DataArrival(ByVal bytesTotal As Long)
  2. Dim sData As String
  3. On Error Resume Next
  4. sckClient.GetData sData
  5.  
  6. 'Reload on Kick Filter
  7. If frmConnect.chkReload.Value = 1 Then
  8. sData = Replace(sData, "@R", "DB0")
  9. End If
  10.  
  11. 'Block Kick Filter
  12. If frmConnect.chkReload.Value = 1 Then
  13. sData = Replace(sData, "@R", "@j")
  14. End If
  15.  
  16. sckServer.SendData sData
  17. Debug.Print "Out: " & sData
  18. End Sub
Add Comment
Please, Sign In to add comment