I want to implent a byte to my rpm but I don't know how to do it.

Code:
 Dim pointer_to_localplayer As Integer
has to be in byte
and It has to be implented in the RPM lines and I don't know how to do that.
I've read a lot of tutorials here on MPGH about rpm and even google but can't figure it out.


thanks for helping me!

Code:
Function hacking()

        Dim m_nFlags As Integer
        Dim FL_ontopGROUND As Integer = 257
        Dim pointer_to_localplayer As Integer

        While (Not shutin)
            If loopdz = True Then
                ReadProcessMemory(csgo(0).Handle, adress_ml + localplayer_set, pointer_to_localplayer, 4, 0)
                ReadProcessMemory(csgo(0).Handle, pointer_to_localplayer + m_nFlags_offset, m_fFlags, 4, 0)
                'Return BitConverter.ToInt32(byteArray, 0)
                If (GetAsyncKeyState(VK_SPACE) < 0) Then
                    key_event(&H20,, 0, 0)
                    System.Threading.Thread.Sleep(1)
                    key_event(&H20, &H2, 0)
                End If
            End If
        End While
    End Function