Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 53
  1. #16
    xsparky18's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    2
    My Mood
    Dead
    Quote Originally Posted by SushiWang View Post
    Yeah try this pls

    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
    		recoil = not recoil
    			if (recoil == true) then
    				OutputLogMessage("Recoil is On\n")
    			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,6)
    			Sleep(14)
    			MoveMouseRelative(1,-6)
    			Sleep(14)
    		until not IsMouseButtonPressed(1) or not IsMouseButtonPressed(3)
    	end
    end
    
    
    end
    rapid fire coming soon. and the vid. Press first the right mousbutton then the left

    - - - Updated - - -

    I have updated the script
    Works! thanks <3





  2. #17
    EnglandIsMyCity123's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    1
    works nice script man

  3. The Following User Says Thank You to EnglandIsMyCity123 For This Useful Post:

    SushiWang (09-12-2017)

  4. #18
    SushiWang's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    266
    My Mood
    Sleepy
    Quote Originally Posted by EnglandIsMyCity123 View Post
    I'm testing
    Rapidfire incuded, Script fixed, take a look

    Hope You Enjoy it!

    - - - Updated - - -

    I will Release the final Script and my Profile tomorrow

    Functions Shield,Rapidfire,No-Recoil, etc.

    - - - Updated - - -

    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
    introductions and vid in the main post ^^

  5. #19
    xsparky18's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    2
    My Mood
    Dead
    Quote Originally Posted by SushiWang View Post
    Rapidfire incuded, Script fixed, take a look

    Hope You Enjoy it!

    - - - Updated - - -

    I will Release the final Script and my Profile tomorrow

    Functions Shield,Rapidfire,No-Recoil, etc.

    - - - Updated - - -

    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
    introductions and vid in the main post ^^
    sounds insane, could you add me on d.iscord? white chocolate#4154





  6. #20
    SushiWang's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    266
    My Mood
    Sleepy
    Quote Originally Posted by EnglandIsMyCity123 View Post
    works nice script man
    Hope You Enjoy It ^^

    - - - Updated - - -

    Quote Originally Posted by xsparky18 View Post
    sounds insane, could you add me on d.iscord? white chocolate#4154
    Sure ^^

    Hope You Enjoy It

  7. #21
    EnglandIsMyCity123's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    1
    Could u add me BrunoTheHero #4190

  8. #22
    SoFarOK's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    195
    Reputation
    10
    Thanks
    137
    What is it button 5? I would like to change it, but button 5 what type of button is?


    Vouch Thread: HERE

  9. #23
    SushiWang's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    266
    My Mood
    Sleepy
    Quote Originally Posted by SoFarOK View Post
    What is it button 5? I would like to change it, but button 5 what type of button is?
    You have 2 buttons on the left side of your mouse. The first of them
    Last edited by SushiWang; 09-12-2017 at 06:03 PM.

  10. #24
    SoFarOK's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    195
    Reputation
    10
    Thanks
    137
    Quote Originally Posted by SushiWang View Post
    You have 2 buttons on the left side of your mouse. The first of them
    Ok! But there is a way to change it? Because I have already assigned button 5 to gadget and I would like to change it


    Vouch Thread: HERE

  11. #25
    KimJohnUn's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    1
    My Mood
    Sad
    Quote Originally Posted by SushiWang View Post
    Rapidfire incuded, Script fixed, take a look

    Hope You Enjoy it!

    - - - Updated - - -

    I will Release the final Script and my Profile tomorrow

    Functions Shield,Rapidfire,No-Recoil, etc.

    - - - Updated - - -

    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
    introductions and vid in the main post ^^
    Will this ever get detected. I have lost my two rainbow six siege accounts in the past. I don't wanna lose another one

  12. #26
    SushiWang's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    266
    My Mood
    Sleepy
    Quote Originally Posted by SoFarOK View Post
    Ok! But there is a way to change it? Because I have already assigned button 5 to gadget and I would like to change it
    Yea sure. What button du you want to bind?

    - - - Updated - - -

    Quote Originally Posted by KimJohnUn View Post
    Will this ever get detected. I have lost my two rainbow six siege accounts in the past. I don't wanna lose another one
    Idk dude. I think FairFight could be the problem and not BE

  13. #27
    KimJohnUn's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    1
    My Mood
    Sad
    Quote Originally Posted by SushiWang View Post
    Yea sure. What button du you want to bind?

    - - - Updated - - -



    Idk dude. I think FairFight could be the problem and not BE
    <3 u
    <3 u
    <3 u
    <3 u

  14. #28
    SushiWang's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    266
    My Mood
    Sleepy
    Quote Originally Posted by KimJohnUn View Post
    <3 u
    <3 u
    <3 u
    <3 u
    Hope You Enjoy It final script and my profile coming soon

  15. #29
    SoFarOK's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    195
    Reputation
    10
    Thanks
    137
    Quote Originally Posted by SushiWang View Post
    Hope You Enjoy It final script and my profile coming soon
    G8 or G7 (button near the left mouse button on logitech mouse)


    Vouch Thread: HERE

  16. #30
    SushiWang's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    266
    My Mood
    Sleepy
    Quote Originally Posted by SoFarOK View Post
    G8 or G7 (button near the left mouse button on logitech mouse)
    Change the if(event=="MOUSE_BUTTON_PRESSED" and arg ==5...) then

    To

    if (event=="MOUSE_BUTTON_PRESSED" and arg == 8....) or mousebutton 7

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

    SoFarOK (09-14-2017)

Page 2 of 4 FirstFirst 1234 LastLast

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