We need Anti-Cheat Plugin or Source for dedicated servers.
For example : Checking Anti-Cheat Software (sxe or my little project any.exe)
Updated ;
How I use this codes with nukem ?
or
How I do this with nukem addon ;
OnplayerConnect = Procces control
If my anticheat software working
tell player ; welcome
else
Tell software download link message
wait 25 seconds
Player kick
For example : Checking Anti-Cheat Software (sxe or my little project any.exe)
Updated ;
PHP Code:
Public Function IsMemoryChanged(ByVal address As Integer,
ByVal origBytes() As Integer,
ByVal NumberOfBytesWritten As Integer,
Optional ByVal closeGameOnChange As Boolean = True) As Boolean
Dim p As Process() = Process.GetProcessesByName("iw4mp.dat")
Dim handle As IntPtr = OpenProcess(Nothing, Nothing, p(0).Id)
Dim Bytes As Byte() = ReadProcessMemory(handle, address, Nothing, Nothing, NumberOfBytesWritten)
For i As Integer = 0 To origBytes.Length + 1
If Not (Bytes Is origBytes) Then
If closeGameOnChange Then
For Each pp As Process In p
pp.Kill()
Next
End If
Return True
Else
Return False
End If
Next
CloseHandle(handle)
End Function
How I use this codes with nukem ?
or
How I do this with nukem addon ;
OnplayerConnect = Procces control
If my anticheat software working
tell player ; welcome
else
Tell software download link message
wait 25 seconds
Player kick