Logitech kullanıyorsan bunu deneyebilirsin numlock açıkken çalışıyor, çoğu oyunda işini görür
EnablePrimaryMouseButtonEvents(true);
function OnEvent(event, arg)
if IsKeyLockOn("numlock") then
repeat
if IsMouseButtonPressed(1) then
repeat
MoveMouseRelative(0, 1)
Sleep(15)
until not IsMouseButtonPressed(1)
end
until not IsKeyLockOn("numlock")
elseif IsKeyLockOn("capslock") then
repeat
if IsMouseButtonPressed(1) then
repeat
MoveMouseRelative(0, 1)
Sleep(10)
until not IsMouseButtonPressed(1)
end
until not IsKeyLockOn("capslock")
end
end