im working on my hack in visual studios but i have ran accross a little problem...
Writeinteger is what is messing up right and also the & is getting an error too...
this hack consists of an on and off button for 2 hacks... BT3D and BTWIRE are the buttons
C++:
Public Class form1
Private Sub BT3Don_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BT3Don.Click
Dim BoxHackOn As Integer
BoxHackOn = 1
WriteInteger("left4dead2", &18f386b0, BoxHackOn)
End Sub
Private Sub BT3Doff_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BT3Doff.Click
Dim BoxHackOff As Integer
BoxHackOff = 0
WriteInteger("left4dead2", &18f386b0, BoxHackOff)
End Sub
Private Sub BTWIREon_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BTWIREon.Click
Dim WireHackOn As Integer
WireHackOn = 2
WriteInteger("left4dead2", &18f386b0, WireHackOn)
End Sub
Private Sub BTWIREoff_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BTWIREoff.Click
Dim WireHackOff As Integer
WireHackOff = 1
WriteInteger("left4dead2", &18f386b0, WireHackOff)
End Sub
Writeinteger is what is messing up right and also the & is getting an error too...
this hack consists of an on and off button for 2 hacks... BT3D and BTWIRE are the buttons