Results 31 to 45 of 53

Threaded View

  1. #1
    SushiWang's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    266
    My Mood
    Sleepy

    No-Recoil and Rapid-Fire Script for Rainbow Six Siege

    Hello Ladies and Gentleman,

    after my old thread was deleted (since I could not prove that my files do not contain any viruses) I decided to give you a script.
    To use this script, you need the Logitech Gaming Software.

    First, there is only one "No-Recoil" function (further functions will i add later). The "No-Recoil" function compensates for the recoil of the weapons.

    1. Right-click on your profile
    2.Click "Create Script"
    3.Paste my script and save
    4. close the window

    Press the 5th Mousebutton and "shift" to switch the "Recoil" function on or off.
    When you turn on the function u Need to press the 2nd Mousebutton first then the 1st Mousebutton to make it run.

    Press the 5th Mousebutton and "alt" to switch the "Rapidfire" function on or off.
    When you turn on the function you Need to press the 4th Mousebutton to make it run.
    To stop the rapidfire function press "shift" Button (it shoots automatically)

    Video :
    h t t p s : / / y o u t u . b e / H p l d d L c c i J 0



    Hope you Enyoj it!

    Code:
    local recoil = false
    local rapidfire = false
    
    
    function OnEvent(event, arg)
    OutputLogMessage("event = %s, arg = %s\n", event, arg)
    
    if (event == "PROFILE_ACTIVATED") then
    	EnablePrimaryMouseButtonEvents(true)
    end
    
    if (event == "MOUSE_BUTTON_PRESSED" and arg == 5) then
    	if (IsModifierPressed("shift")) then
    		recoil = not recoil 
    		rapidfire = false
    			if (recoil == true) then
    				OutputLogMessage("Recoil is On\n")
    			else
    				OutputLogMessage("Recoil is Off\n")
    			end
    	else
    		OutputLogMessage("Recoil is Off\n")
    	end
    end
    
    
    if (event == "MOUSE_BUTTON_PRESSED" and arg == 1 and recoil == true and rapidfire == false)  then
    	if IsMouseButtonPressed(1) and IsMouseButtonPressed(3)then 
    		repeat
    			MoveMouseRelative(-1,7)
    			Sleep(14)
    			MoveMouseRelative(1,-7)
    			Sleep(14)
    		until not IsMouseButtonPressed(1) or not IsMouseButtonPressed(3)
    	end
    end
    
    if (event == "MOUSE_BUTTON_PRESSED" and arg == 5) then
    	if IsModifierPressed("alt") then
    		rapidfire = not rapidfire
    		recoil = false
    			if (rapidfire == true) then
    				OutputLogMessage("Rapidfire is On\n")
    			else
    				OutputLogMessage("Rapidfire is Off\n")
    			end
    	else
    		OutputLogMessage("Rapidfire is Off\n")
    	end
    
    end
    
    if (event == "MOUSE_BUTTON_PRESSED" and arg == 4 and recoil == false and rapidfire == true) then
    		repeat
    			PressMouseButton(1)
    			Sleep(64)
    			ReleaseMouseButton(1)
    			Sleep(73)
    		until IsModifierPressed("shift")
    end
    
    end
    Last edited by SushiWang; 09-12-2017 at 10:06 AM.

  2. The Following User Says Thank You to SushiWang For This Useful Post:

    boy (09-29-2017)

Similar Threads

  1. [WTT] Assassin's Creed Syndicate UPlay Account for Rainbow Six Siege Gift on Steam
    By SnowSmasher in forum Selling Accounts/Keys/Items
    Replies: 0
    Last Post: 01-06-2016, 10:00 PM
  2. [WTS] NVIDIA game code for Rainbow Six Siege or Assassin’s Creed Syndicate
    By TooChang in forum Selling Accounts/Keys/Items
    Replies: 2
    Last Post: 10-11-2015, 12:55 AM
  3. Uplay Codes for Rainbow Six Siege
    By wEFTwefwfefesfefe in forum Giveaways
    Replies: 4
    Last Post: 10-01-2015, 10:40 PM
  4. [Other] Uplay Codes for Rainbow Six Siege
    By fl4zh in forum Giveaways
    Replies: 5
    Last Post: 10-01-2015, 01:19 PM
  5. [WTT] RAINBOW SIX SIEGE CLOSED BETA ACCOUNT FOR RAINBOW SIX SIEGE ORIGINAL GAME ACCOUNT
    By Mozilla Firefox in forum Trade Accounts/Keys/Items
    Replies: 1
    Last Post: 04-30-2015, 10:36 AM