Page 5 of 15 FirstFirst ... 34567 ... LastLast
Results 61 to 75 of 216
  1. #61
    Daymarusssss's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    10
    go pls razer add

  2. #62
    zenginz's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Im trying to change it like this. But it doesnt work. Can someone help me ? Its for bursting with m16
    Code:
    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
                repeat
                    --Sleep(35)
                    Sleep(8)
                    PressMouseButton(1)
                    Sleep(50)
                    ReleaseMouseButton(1)
                    Sleep(10)
                    MoveMouseRelative(0, 1.5)
                   
                until not IsMouseButtonPressed(1)
            end
        end
    end

  3. #63
    rbrash4's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    I will also vouch for a possible Razer macro. Not sure if it is even possible but my understanding with macros is not nearly as great as others.

  4. #64
    badboy1295's Avatar
    Join Date
    Jul 2017
    Gender
    female
    Posts
    20
    Reputation
    10
    Thanks
    2
    My Mood
    Angelic
    Quote Originally Posted by zenginz View Post
    Im trying to change it like this. But it doesnt work. Can someone help me ? Its for bursting with m16
    Code:
    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
                repeat
                    --Sleep(35)
                    Sleep(8)
                    PressMouseButton(1)
                    Sleep(50)
                    ReleaseMouseButton(1)
                    Sleep(10)
                    MoveMouseRelative(0, 1.5)
                   
                until not IsMouseButtonPressed(1)
            end
        end
    end
    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(1) -- 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
    repeat
    --Sleep(35)
    Sleep(8)
    PressMouseButton(1)
    Sleep(50)
    ReleaseMouseButton(1)
    Sleep(10)
    MoveMouseRelative(0, 1)

    until not IsMouseButtonPressed(1)
    end
    end
    end

    done bro, i dont think mouse can move 1,5 pixcel. 1,5=1 pixcel
    and Sleep time too much, it willnot work

  5. #65
    zenginz's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by badboy1295 View Post
    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(1) -- 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
    repeat
    --Sleep(35)
    Sleep(8)
    PressMouseButton(1)
    Sleep(50)
    ReleaseMouseButton(1)
    Sleep(10)
    MoveMouseRelative(0, 1)

    until not IsMouseButtonPressed(1)
    end
    end
    end

    done bro, i dont think mouse can move 1,5 pixcel. 1,5=1 pixcel
    and Sleep time too much, it willnot work
    bro its not keep recoiling and shooting. Repeat function is not working.Its just moving 1 pixel down and shooting once.

  6. #66
    badboy1295's Avatar
    Join Date
    Jul 2017
    Gender
    female
    Posts
    20
    Reputation
    10
    Thanks
    2
    My Mood
    Angelic
    Quote Originally Posted by zenginz View Post
    bro its not keep recoiling and shooting. Repeat function is not working.Its just moving 1 pixel down and shooting once.
    wait a minute,
    I will try to fix it

  7. #67
    zenginz's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Because there is ReleaseMouseButton(1) in repeat function. and macro is working until not IsMouseButtonPressed(1). Thats the problem.

  8. #68
    hirnbliata's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    hello guys,

    iam totaly new, never used a macro. so plz help me, can i use this with Logitech g402? How?

  9. #69
    Mexor's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    96
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by hirnbliata View Post
    hello guys,

    iam totaly new, never used a macro. so plz help me, can i use this with Logitech g402? How?
    https://www.mpgh.net/forum/showthread...1#post12770317

  10. #70
    badboy1295's Avatar
    Join Date
    Jul 2017
    Gender
    female
    Posts
    20
    Reputation
    10
    Thanks
    2
    My Mood
    Angelic
    Code:
     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
            recoilx60 = not recoilx60
            spot = not spot
        end
       if (event == "MOUSE_BUTTON_PRESSED" and arg == 1 and recoilx60) then
            if recoilx60 then
                repeat
                    --Sleep(8)
                    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 20)
    Sleep(110)
                    MoveMouseRelative(-1, 20)
    Sleep(110)
                    MoveMouseRelative(-1, 20)
    Sleep(110)
                    MoveMouseRelative(-1, 20)
    Sleep(110)
                    MoveMouseRelative(-1, 20)
    Sleep(110)
                    MoveMouseRelative(-1, 21)
    Sleep(110)
                    MoveMouseRelative(-1, 21)
    Sleep(110)
                    MoveMouseRelative(-1, 21)
    Sleep(110)
                    MoveMouseRelative(-1, 23)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    
                until not IsMouseButtonPressed(1)
            end
        end
    
       
     if (event == "MOUSE_BUTTON_PRESSED" and arg == x) then
            recoilx4 = not recoilx4
            spot = not spot
        end
       if (event == "MOUSE_BUTTON_PRESSED" and arg == 1 and recoilx4) then
            if recoilx4 then
                repeat
                    --Sleep(8)
                   Sleep(120)
                    MoveMouseRelative(-1, 29)
                until not IsMouseButtonPressed(1)
            end
        end
    end
    can i fix it ? mouse donot stop
    this is marco for ump

  11. #71
    ducnghia2210's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by badboy1295 View Post
    Code:
     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
            recoilx60 = not recoilx60
            spot = not spot
        end
       if (event == "MOUSE_BUTTON_PRESSED" and arg == 1 and recoilx60) then
            if recoilx60 then
                repeat
                    --Sleep(8)
                    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 18)
    Sleep(110)
                    MoveMouseRelative(-1, 20)
    Sleep(110)
                    MoveMouseRelative(-1, 20)
    Sleep(110)
                    MoveMouseRelative(-1, 20)
    Sleep(110)
                    MoveMouseRelative(-1, 20)
    Sleep(110)
                    MoveMouseRelative(-1, 20)
    Sleep(110)
                    MoveMouseRelative(-1, 21)
    Sleep(110)
                    MoveMouseRelative(-1, 21)
    Sleep(110)
                    MoveMouseRelative(-1, 21)
    Sleep(110)
                    MoveMouseRelative(-1, 23)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    Sleep(110)
                    MoveMouseRelative(-1, 25)
    
                until not IsMouseButtonPressed(1)
            end
        end
    
       
     if (event == "MOUSE_BUTTON_PRESSED" and arg == x) then
            recoilx4 = not recoilx4
            spot = not spot
        end
       if (event == "MOUSE_BUTTON_PRESSED" and arg == 1 and recoilx4) then
            if recoilx4 then
                repeat
                    --Sleep(8)
                   Sleep(120)
                    MoveMouseRelative(-1, 29)
                until not IsMouseButtonPressed(1)
            end
        end
    end
    can i fix it ? mouse donot stop
    this is marco for ump
    i can't use this script, do u can lead me?

  12. #72
    tyriontheimp's Avatar
    Join Date
    Dec 2015
    Gender
    female
    Posts
    280
    Reputation
    10
    Thanks
    58
    If anyone can do a razer one :')

  13. #73
    badboy1295's Avatar
    Join Date
    Jul 2017
    Gender
    female
    Posts
    20
    Reputation
    10
    Thanks
    2
    My Mood
    Angelic
    Quote Originally Posted by ducnghia2210 View Post
    i can't use this script, do u can lead me?
    không thấy vn đây à, inbox đưa code test, đang cần người chỉnh sao cho phù hợp chứ lúc đc lúc k mệt vl

  14. The Following User Says Thank You to badboy1295 For This Useful Post:

    ducnghia2210 (07-28-2017)

  15. #74
    balashov's Avatar
    Join Date
    May 2016
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    1
    My Mood
    Amazed
    This will get u banned instandly becareful

  16. #75
    BootyMax's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by balashov View Post
    This will get u banned instandly becareful
    Proof? Been using daily for 2 months.

Page 5 of 15 FirstFirst ... 34567 ... LastLast

Similar Threads

  1. [Help] NO recoil or Macro for Logitech g402
    By mysterios29 in forum Rainbow Six: Siege Discussions & Help
    Replies: 6
    Last Post: 03-09-2019, 02:13 PM
  2. [Release] The Division - Mouse Macros for Logitech Mouses - Logitech Gaming Software
    By prazx in forum Tom Clancy's The Division Hacks & Cheats
    Replies: 11
    Last Post: 07-09-2018, 04:07 PM
  3. Black shot Global No Recoil Macros for Logitech
    By NeedHelpPles in forum Blackshot Help
    Replies: 3
    Last Post: 03-08-2017, 06:37 AM
  4. [Request] Logitech no recoil macro for M16A3
    By Migulin in forum Battlefield Hardline Hacks & Cheats
    Replies: 3
    Last Post: 02-17-2016, 03:03 AM
  5. [Solved] A4Tech Macros for Logitech Gaming Software?
    By ExXxO in forum Battlefield 4 Help
    Replies: 7
    Last Post: 03-05-2014, 01:30 AM