Page 8 of 9 FirstFirst ... 6789 LastLast
Results 106 to 120 of 129
  1. #106
    jonkel52's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    468
    Reputation
    10
    Thanks
    61
    @Yellow 13 any news?

  2. #107
    Ban_Wish's Avatar
    Join Date
    Feb 2016
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    3
    Please PM me about this, I really want macros for my Razer DA

  3. #108
    lumpi999's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    15
    My Mood
    Amused
    you can all have it for free!!!!
    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 the Logitech Gaming Software in Englich!

    my old Thread:
    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
    Last edited by lumpi999; 12-29-2016 at 09:34 PM.

  4. #109
    adrenaline123's Avatar
    Join Date
    Oct 2012
    Gender
    female
    Posts
    48
    Reputation
    10
    Thanks
    15
    Any news so far ?

  5. #110
    Leah Jaye's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Posts
    98
    Reputation
    10
    Thanks
    7
    My Mood
    Angelic
    give me bf4 premium .. i have unique script which works on all fps games :-)
    i have tested on bf4,bf3,bf1,rainbowsix siege :-)
    pm me if you can give me bf4 premium :-)

  6. #111
    ashkanoveisi's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    I have Bloody A90 , What should i do for Macro ?
    Tnx

  7. #112
    demlikci's Avatar
    Join Date
    Feb 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Hi Yellow .Can you send bloody v5 Bf1 macros ı really need this .thanks

  8. #113
    Raddclyffe's Avatar
    Join Date
    Feb 2017
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    4
    Well, so someone know what is going on? Can we use macros or not?
    All these C++ code are too complicated, especially to define macros

    If someone has more informations about macros, please contact me - maelkeur gmail.com or tell me here.

    Thanks guys.

  9. #114
    RedEyeBomb's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Are there any available yet?

  10. #115
    lumpi999's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    15
    My Mood
    Amused
    Quote Originally Posted by Raddclyffe View Post
    Well, so someone know what is going on? Can we use macros or not?
    All these C++ code are too complicated, especially to define macros

    If someone has more informations about macros, please contact me - maelkeur gmail.com or tell me here.

    Thanks guys.
    You can use this script on every 3rd party mouse you only need a Logitech gaming mouse.
    This is Lua not c++
    if you want it easy use old BF3&4 Macros or google and mseprogaming

  11. #116
    jinvarel's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    1
    Hi i got Razor naga 2014 can u help me

  12. #117
    maikel81's Avatar
    Join Date
    Aug 2017
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Hi, you would help me and you would profile me for these weapons in Battlefield 3
    My resolution is 1920x1080
    My Mouse is Thermaltake eSPORTS Level 10 M

    The main weapons I use is the AN-94. AEK 971. M16A3. M98. G18

    From now thank you: D

  13. #118
    mac 19's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Hi Yellow
    Can you pleas send me Bloody v6 Bf1 Macros? .thanks

  14. #119
    buraqk's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    Hey Yellow my mouse Bloody a90 pls send me bf1 macros thank dude.

  15. #120
    dexjax's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    any news? this code still working?

Page 8 of 9 FirstFirst ... 6789 LastLast

Similar Threads

  1. [REQUEST] A download link, working for all weapon mods/patterns, etc.
    By Viktor2000 in forum Payday 2 Hacks & Cheats
    Replies: 1
    Last Post: 10-03-2013, 06:42 PM
  2. Replies: 103
    Last Post: 11-09-2011, 03:35 PM
  3. For all of MPGH now
    By Casey95 in forum Combat Arms Discussions
    Replies: 26
    Last Post: 07-13-2010, 09:33 AM
  4. [Info] For all you stupid kids who think "All the hackers are gone now"
    By adytzu83 in forum CrossFire Hacks & Cheats
    Replies: 14
    Last Post: 11-28-2009, 10:07 PM
  5. All in one macro for all K-style moves.
    By kills999 in forum Gunz Hacks
    Replies: 9
    Last Post: 04-17-2008, 08:18 PM