Is it still works for the new update ?? White noise
Logitech Macros and Scripts
is it possible to have Rapid fire just by clicking left click?
Yes, but you have to edit the script
Anyone can help me ? h t t p s : / / i m g u r . c o m / a / u G R N y
Guys, help me please!!!
how to changw this script:
how to get in this script rapidfire by single pressing to set ON/OFF rapid fire????
it is possible?
how to changw this script:
Code:
--variable definition
sleeptime = 18
btn7down = false
btn8down = false
--func def
function booltostring(mybool)
if mybool then
return "true"
else
return "false"
end
end
function OnEvent(event, arg)
--initialization
OutputLogMessage("event = %s, arg = %d\n", event, arg)
-- profile intialization
if (event == "PROFILE_ACTIVATED") then
OutputLogMessage("profile activated! recoil sleeptime: " .. sleeptime .. "\n")
EnablePrimaryMouseButtonEvents(true)
elseif event == "PROFILE_DEACTIVATED" then
ReleaseMouseButton(2) -- to prevent it from being stuck on
end
--check if btn7 and btn8 down
if (event == "MOUSE_BUTTON_PRESSED" and arg == 10 ) then
btn7down = true
--OutputLogMessage("btn7 :" .. booltostring(btn7down) .. "\n")
end
if (event == "MOUSE_BUTTON_RELEASED" and arg == 10 ) then
btn7down = false
--OutputLogMessage("btn7 :" .. booltostring(btn7down) .. "\n")
end
if (event == "MOUSE_BUTTON_PRESSED" and arg == 11 ) then
btn8down = true
--OutputLogMessage("btn8 :" .. booltostring(btn8down) .. "\n")
end
if (event == "MOUSE_BUTTON_RELEASED" and arg == 11 ) then
btn8down = false
--OutputLogMessage("btn8 :" .. booltostring(btn8down) .. "\n")
end
-- set recoil
--btn8 to increase
if (event == "MOUSE_BUTTON_PRESSED" and arg == 11 ) then
sleeptime = sleeptime - 0
OutputLogMessage("current recoil:" .. sleeptime .. "\n")
end
--btn7 to decrease
if (event == "MOUSE_BUTTON_PRESSED" and arg == 10) then
sleeptime = sleeptime + 0
OutputLogMessage("current recoil:" .. sleeptime .. "\n")
end
--reset recoil
if (event == "MOUSE_BUTTON_PRESSED" and arg == 10 and IsModifierPressed("alt")) then
sleeptime = 18
OutputLogMessage("current recoil:" .. sleeptime .. "\n")
end
if (event == "MOUSE_BUTTON_PRESSED" and arg == 11 and IsModifierPressed("alt")) then
sleeptime = 18
OutputLogMessage("current recoil:" .. sleeptime .. "\n")
end
--handle recoil
if (event == "MOUSE_BUTTON_PRESSED" and arg == 1 and IsMouseButtonPressed(3)) then
repeat
MoveMouseRelative(9, -25)
Sleep(sleeptime)
MoveMouseRelative(-9, 25)
Sleep(sleeptime)
until not IsMouseButtonPressed(1)
end
end
it is possible?
yea no idea
Gonna try this, looks promosing.
g602 cannot get it to work. Please help!
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 the "shift" Button (it shoots automatically)
can you change it to HOLD mouse button 1 to make it run instead of auto firing?
When you turn on the function you Need to press the 4th Mousebutton to make it run.
To stop the rapidfire function press the "shift" Button (it shoots automatically)
can you change it to HOLD mouse button 1 to make it run instead of auto firing?
ur the best :v
How i use it on Cooler Master's MM530,how to port it to Cooler Master Portal?
Similar Threads
Rainbow Six: Siege Discussions & HelpLogitech drop shot macro or scriptII 6 CrossFire Mods & Rez ModdingCrossfire LogIn Font and Scripted+music.
8 Flaming & RageTo all you AlterIW hackers and script kiddies.DA 20 Knight Online HacksBypass premium, speedhack, wallhack, macro and more...
31 Call of Duty 4 - Modern Warfare (MW) HacksDownload hacks and scripts free here(No joke) 30

just follow instructions carefully