- How long you been coding/hacking?
- 1 Year
Hey guys,
I made a "Recoil Control" like the mouse is just moving down when u press lmb
It works ingame in the menu everything but when u actually join the game like "Cold War"
the recoil is not working anymore.
could you guys give me some tips please ?
I made a "Recoil Control" like the mouse is just moving down when u press lmb
It works ingame in the menu everything but when u actually join the game like "Cold War"
the recoil is not working anymore.
could you guys give me some tips please ?
Code:
Public Declare Auto Function SetCursorPos Lib "User32.dll" (ByVal X As Integer, ByVal Y As Integer) As Long
If MouseButtons.HasFlag(MouseButtons.Left) Then
SetCursorPos(MousePosition.X, MousePosition.Y + TrackBar1.Value)
End If