sudo apt get install NEWLIFE
Süper Üye
[TR]
Başlığın dediği gibi, bu bir LUA Komut Dosyasıdır; bu, Farenizin ve klavyenizin çoğu Yazılım programında çalıştırabileceğiniz anlamına gelir.
Her mouse için geçerlidir sadece mouse için lua ekleme editleme nasıl yapılır onu öğrenmelisiniz,
Bu script sağ ve sol tıklamaya aynı anda bastığınız zaman yani bildiğiniz nişan alıp sıkmaya başladığınızda çalışmaya başlar,
Aşağıdaki kodda MoveMouseRelative'de ki sayıları düşürerek veya artırarak özelleştirebilirsiniz.
Eğer bir sorun yaşarsanız makro düzgün çalışmazsa vs bu sizin hassasiyetinize ve DPI'nize bağlıdır.
[EN]
As the title says it is an LUA Script which means you can execute it inside the most Software programs of your Mouse and keyboard
for example, the Logitech G-Hub, which you can use if you have a Logitech mouse or keyboard. How to set up the script inside
the program is different from Software to Software, so just google it, and you will def find a tutorial on how to execute
scripts in you're software
The Script starts working when you press both, you're left and right mouse button together.
You can customize how strong it is by lowering or increasing the numbers behind MoveMouseRelative below in the code.
It depends all on your sensitivity and DPI. But all in all 10 is the best in my opinion, but you can try around.
Başlığın dediği gibi, bu bir LUA Komut Dosyasıdır; bu, Farenizin ve klavyenizin çoğu Yazılım programında çalıştırabileceğiniz anlamına gelir.
Her mouse için geçerlidir sadece mouse için lua ekleme editleme nasıl yapılır onu öğrenmelisiniz,
Bu script sağ ve sol tıklamaya aynı anda bastığınız zaman yani bildiğiniz nişan alıp sıkmaya başladığınızda çalışmaya başlar,
Aşağıdaki kodda MoveMouseRelative'de ki sayıları düşürerek veya artırarak özelleştirebilirsiniz.
Eğer bir sorun yaşarsanız makro düzgün çalışmazsa vs bu sizin hassasiyetinize ve DPI'nize bağlıdır.
[EN]
As the title says it is an LUA Script which means you can execute it inside the most Software programs of your Mouse and keyboard
for example, the Logitech G-Hub, which you can use if you have a Logitech mouse or keyboard. How to set up the script inside
the program is different from Software to Software, so just google it, and you will def find a tutorial on how to execute
scripts in you're software
The Script starts working when you press both, you're left and right mouse button together.
You can customize how strong it is by lowering or increasing the numbers behind MoveMouseRelative below in the code.
It depends all on your sensitivity and DPI. But all in all 10 is the best in my opinion, but you can try around.
Kod:
function OnEvent(event, arg)
if (event == "PROFILE_ACTIVATED") then
EnablePrimaryMouseButtonEvents(true)
end
if IsKeyLockOn("scrolllock")then
if (event == "MOUSE_BUTTON_PRESSED" and arg == 1)then
if IsMouseButtonPressed(3)then
repeat
MoveMouseRelative(-10, 12)
Sleep(10)
MoveMouseRelative(10, -10)
Sleep(10)
until not IsMouseButtonPressed(1)
end
end
end
end
GHUB LUA EKLEME/ADDING