-- Logitech Gaming Software (LGS) Lua 스크립트
macroMode = 1 -- 1 또는 2로 토글되는 매크로 모드
-- 매크로 키 배열 정의
macro1 = {"q", "w", "1", "e", "2", "e", "3", "e"}
macro2 = {"4", "e", "5", "e", "6", "e", "1", "e", "q", "w"}
-- CapsLock 상태 확인 함수
function IsCapsLockOn()
return (GetKeyState("CapsLock") == 1)
end
-- 랜덤 딜레이 함수 (0.2~0.45초)
function RandomSleep()
local delay = math.random(200, 450) -- 200~450ms 사이의 랜덤 값
Sleep(delay)
end
-- 이벤트 핸들러 함수
function OnEvent(event, arg)
if event == "MOUSE_BUTTON_PRESSED" and arg == 4 then
-- 현재 매크로 선택
local macroKeys = macroMode == 1 and macro1 or macro2
for i, key in ipairs(macroKeys) do
if key == "w" and IsCapsLockOn() then
-- CapsLock이 활성화된 경우 'w' 스킵
else
PressAndReleaseKey(key)
end
RandomSleep() -- 랜덤 딜레이 추가
end
-- 매크로 모드 토글 (1 ↔ 2)
macroMode = (macroMode == 1) and 2 or 1
end
end
위에 껀 마우스 4번 버튼으로 하는거고 마우스버튼은 너네가 원하는걸로 수정하고 딜레이도 마찬가지로 원하는대로 수정해라
참고로 랜덤딜레이다 .
렉이걸리는 똥컴들 키씹힌다고 느껴지면 딜레이값을 늘려라 .
-- Logitech Gaming Software (LGS) Lua 스크립트
macroMode = 1 -- 1 또는 2로 토글되는 매크로 모드
-- 매크로 키 배열 정의
macro1 = {"q", "w", "1", "e", "2", "e", "3", "e"}
macro2 = {"4", "e", "5", "e", "6", "e", "1", "e", "q", "w"}
-- CapsLock 상태 확인 함수
function IsCapsLockOn()
return (GetKeyState("CapsLock") == 1)
end
-- 랜덤 딜레이 함수 (0.2~0.45초)
function RandomSleep()
local delay = math.random(200, 450) -- 200~450ms 사이의 랜덤 값
Sleep(delay)
end
-- 이벤트 핸들러 함수
function OnEvent(event, arg)
if event == "KEYBOARD_PRESSED" and arg == 34 then -- 'G' 키를 누르면 실행
-- 현재 매크로 선택
local macroKeys = macroMode == 1 and macro1 or macro2
for i, key in ipairs(macroKeys) do
if key == "w" and IsCapsLockOn() then
-- CapsLock이 활성화된 경우 'w' 스킵
else
PressAndReleaseKey(key)
end
RandomSleep() -- 랜덤 딜레이 추가
end
-- 매크로 모드 토글 (1 ↔ 2)
macroMode = (macroMode == 1) and 2 or 1
end
end
위에랑 똑같은 매크론대 이건 키보드 g 키를 눌르면 발동된다 .
사용법은 다알것이고 .
세팅법도 알것이고 수정할거만 수정해서 쓰면된다 .
qw1e2e3e
4e5e6e1eqw
capslock 이 활성화 되어잇으면 w 는 안쓰니까
알아서 잘 이용하도록
macro1 = {"q", "w", "1", "e", "2", "e", "3", "e"}
macro2 = {"4", "e", "5", "e", "6", "e", "1", "e", "q", "w"}
이부분을 원하는대로 수정해서 써도 된다 뭔말인지 알지 ? 굳이 스킬키를 저키를 안써도 된다 이말이야 .
저건 예약시전용이고 .
1방씩만 쏴도 죽는 사냥터는 그냥 스킬키로 다 바꿔서 쓰면댐
원하는 매크로잇음 댓글달아라 언제든 만들어준다 .