如何在 Lua 中发送垃圾邮件
How to spam a key in Lua
我想在我的罗技鼠标上使用它。
我知道这是一个错误的代码,因为我不知道 Lua。
function OnEvent(event, arg)
if input.IsKeyDown(KEY_L) then
PressKey("l")
Sleep(0)
ReleaseKey("l")
PressKey("enter")
Sleep(0)
ReleaseKey("enter")
end
end
按下鼠标按钮 4 时发送垃圾邮件
function OnEvent(event, arg)
if event == "MOUSE_BUTTON_PRESSED" and arg == 4 then
repeat
PressKey("l")
Sleep(10)
ReleaseKey("l")
PressKey("enter")
Sleep(10)
ReleaseKey("enter")
until not IsMouseButtonPressed(4)
end
end
我想在我的罗技鼠标上使用它。
我知道这是一个错误的代码,因为我不知道 Lua。
function OnEvent(event, arg)
if input.IsKeyDown(KEY_L) then
PressKey("l")
Sleep(0)
ReleaseKey("l")
PressKey("enter")
Sleep(0)
ReleaseKey("enter")
end
end
按下鼠标按钮 4 时发送垃圾邮件
function OnEvent(event, arg)
if event == "MOUSE_BUTTON_PRESSED" and arg == 4 then
repeat
PressKey("l")
Sleep(10)
ReleaseKey("l")
PressKey("enter")
Sleep(10)
ReleaseKey("enter")
until not IsMouseButtonPressed(4)
end
end