HI GUYS
i find a new recoil
!!! You can change the value
At the end of this line in Script >>>>> MoveMouseRelative(0,1) <<<<<
i set on 0,3
video tutorial :
Script :
i find a new recoil
!!! You can change the value
At the end of this line in Script >>>>> MoveMouseRelative(0,1) <<<<<
i set on 0,3
video tutorial :
function OnEvent(event, arg)
OutputLogMessage("event = %s, arg = %d\n", event, arg)
if (event == "PROFILE_ACTIVATED") then
EnablePrimaryMouseButtonEvents(true)
elseif event == "PROFILE_DEACTIVATED" then
ReleaseMouseButton(2) -- to prevent it from being stuck on
end
if (event == "MOUSE_BUTTON_PRESSED" and arg == 4) then
recoil = not recoil
spot = not spot
end
if (event == "MOUSE_BUTTON_PRESSED" and arg == 1 and recoil) then
if recoil then
spot = not spot
repeat
Sleep(10)
MoveMouseRelative(0,1)
Sleep(10)
MoveMouseRelative(0,2)
Sleep(21)
MoveMouseRelative(0,1)
Sleep(15)
until not IsMouseButtonPressed(1)
end
end
end