Results 1 to 3 of 3
  1. #1
    lumpi999's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    15
    My Mood
    Amused

    Logitech LUA recoil reduce Script! for every Game!

    Hi,
    i see Admin clean out :-)
    well you only need 2 mice... a logitech mice and a normal for gaming.
    Logitech has Lua support for Logitech and with mod for 3rd Party mice!!
    You need Logitech Gaming Software in Englich!

    From my old Thread and extended:
    For Full Auto Weapon
    J = Enemy Spotted
    Spacebar= hold Breath
    Hold to sight = ON
    I use 900 and 450 dpi

    With this scritpt you can:
    - pressing Left Mousebutton: Hold Breath, Spotted Enemy, reduce DPI
    - pressing Right Mousebutton: lower recoil

    To activate press Mousewheel to the Leftside!

    I am only insert my x and y value.
    Source is from the Logitechforum :-)
    Code:
    local recoil = false local aim = false
     sleep_duration = 50
     MaxBreak = 1000
     TimeStamp = -MaxBreak-1    -- it's negative 2 seconds
     recoil_coords = {
         { x = -2, y = 5 },        
         { x = -2, y = 5 },        
         { x = -3, y = 5 },        
         { x = -3, y = 5 },        
         { x = -3, y = 5 },
         { x = -3, y = 5 },        
         { x = -3, y = 5 },        
         { x = -3, y = 5 },        
         { x = -3, y = 5 },        
         { x = -3, y = 5 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -4, y = 8 },        
         { x = -5, y = 9 },        
         { x = -5, y = 9 },    
         { x = -5, y = 9 },        
         { x = -5, y = 9 },    
         { x = -5, y = 9 },        
         { x = -5, y = 9 },        
         { x = -5, y = 9 },        
         { x = -5, y = 9 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },            
         { x = -7, y = 10 },        
         { x = -7, y = 10 },            
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },            
         { x = -7, y = 10 },        
         { x = -7, y = 10 },            
         { x = -7, y = 10 },        
         { x = -7, y = 10 },            
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -7, y = 10 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
         { x = -5, y = 8 },        
     }
     recoil_count = # recoil_coords
     LastIndex = 1
     function OnEvent(event, arg)    
         if event == "PROFILE_ACTIVATED" then
             EnablePrimaryMouseButtonEvents(true)
         end
     
    
         
         if (event == "MOUSE_BUTTON_PRESSED" and arg == 11) then -- Press mouse button 3 to toggle recoil
             recoil = not recoil 
             if (recoil == false) then
                 OutputLogMessage("RecoilScript turned OFF\n")
             else 
                 OutputLogMessage("RecoilScript turned ON\n")
             end
     end
         
     
    
         if (event == "MOUSE_BUTTON_PRESSED" and arg == 1) and recoil  then
                          
             if (GetRunningTime() - TimeStamp < MaxBreak) and (LastIndex <= recoil_count) then
                 i = LastIndex
             else
                 i = 1
             end
             while i <= recoil_count do
                 Sleep(sleep_duration)
                 if not IsMouseButtonPressed(1) then
                     LastIndex = i
                     TimeStamp = GetRunningTime()
                     break
                 end
                 MoveMouseRelative( recoil_coords[i].x, recoil_coords[i].y )
                 if not IsMouseButtonPressed(1) then break end
                 i = i + 1
             end
         end
     
    
             
     
    
         if event == "MOUSE_BUTTON_PRESSED" and arg == 2 and recoil then
               
             PressKey("Spacebar")
             PressAndReleaseKey("J") 
             PlayMacro("DPI Down")
             
           else
         
         if event == "MOUSE_BUTTON_RELEASED" and arg == 2 then
              
             ReleaseKey("Spacebar")
             PressAndReleaseKey("J") 
             PlayMacro("DPI Up")
         end
     end
     end
    Warning!
    This can be detect by Anti Cheat like AAO 2.5 Assist!
    Rapid Key Fire Scripts are not good!!
    For Bolt and Burst Weapon change:
    Code:
    local recoil = false
    
    function OnEvent(event, arg)	
    	if event == "PROFILE_ACTIVATED" then
    		EnablePrimaryMouseButtonEvents(true)
    	end
    
    	
    	if (event == "MOUSE_BUTTON_PRESSED" and arg == 11) then -- Press mouse button 3 to toggle recoil
    		recoil = not recoil 
    		if (recoil == false) then
    			OutputLogMessage("RecoilScript turned OFF\n")
    		else 
    			OutputLogMessage("RecoilScript turned ON\n")
    		end
    end
    	
    
    	if (event == "MOUSE_BUTTON_PRESSED" and arg == 1) and recoil  then
                    if IsMouseButtonPressed(1) then 
    repeat
    PressKey("M")
    Sleep(50)
    ReleaseKey("M")
    MoveMouseRelative(-2,3)
    if not IsMouseButtonPressed(1) then break end
    PressKey("M")
    Sleep(50)
    ReleaseKey("M")
    MoveMouseRelative(-3,5)
    if not IsMouseButtonPressed(1) then break end
    PressKey("M")
    Sleep(50)
    ReleaseKey("M")
    MoveMouseRelative(-4,6)
    if not IsMouseButtonPressed(1) then break end
    until not IsMouseButtonPressed(1) 
     end
    end
    if event == "MOUSE_BUTTON_PRESSED" and arg == 2 and recoil then
        		SetMouseDPITableIndex(1)
    		PressKey("Spacebar")
    		PressAndReleaseKey("J")
    else
    		if event == "MOUSE_BUTTON_RELEASED" and arg == 2 then
       		SetMouseDPITableIndex(2)
    		ReleaseKey("Spacebar")
    		PressAndReleaseKey("J")
    		end
    end
    end
    If you want use this script with a 3rd Party Mouse (Like Zowie) u need only this add at the end:
    -->> gLua Setup - EDIT THE NEXT LINE(s)
    dofile( [[C:\gLua.lua]] ) -- edit your filepath here!!!
    EnableThirdPartyMouseEvents() -- will enable MB1-5
    EnableMouseButton23Switch(true) -- Switch MB2 and 3 => 3rd party is like a G-Mouse

    glua.lua you find at google :-)

    and you need change this:
    from 11 to 3
    if (event == "MOUSE_BUTTON_PRESSED" and arg == 11) then
    to
    if (event == "MOUSE_BUTTON_PRESSED" and arg == 3) then

    Button 11 = Mousewheel to the left side
    Button 3 = Mousewheel Button

  2. #2
    Lilmoeyx's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    150
    Reputation
    10
    Thanks
    10
    @chuck //2short

  3. #3
    Foxmind1's Avatar
    Join Date
    Nov 2018
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1

    .

    i use 1100 !!!!

Similar Threads

  1. [Source Code] Logitech LUA recoil reduce Script! - work on every mouse
    By lumpi999 in forum Battlefield 1 Hacks & Cheats
    Replies: 7
    Last Post: 12-19-2020, 09:58 AM
  2. [Source Code] Logitech LUA recoil reduce Script! for every Game!
    By lumpi999 in forum Battlefield 4 Hacks & Cheats
    Replies: 2
    Last Post: 02-28-2016, 11:23 PM
  3. [Release] Rapid Fire for every Game [AHK]
    By |cS| StikxX in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 28
    Last Post: 01-27-2013, 07:51 AM
  4. No recoil macro software for every FPS game you own! (PB, VAC, ESL Wire PROOF)
    By marko4452 in forum Selling Accounts/Keys/Items
    Replies: 9
    Last Post: 09-12-2012, 02:46 PM
  5. [VISUAL BASIC 2008] D3D pic for every game
    By GER-Domi. in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 5
    Last Post: 08-23-2010, 06:06 AM