このコードを短くする方法はありますか?
if (event == "MOUSE_BUTTON_PRESSED" and arg == 1) then
PressKey ("a")
Sleep (50)
if not IsMouseButtonPressed(1) then
ReleaseKey ("a")
return
end
PressKey ("a")
Sleep (200)
if not IsMouseButtonPressed(1) then
ReleaseKey ("a")
return
end
...
next all the same with sleep values only changing
繰り返しまで使いたいのですが、睡眠の値が変化しているのでできません。コードで Repeat-Until を使用できるように、スリープ値をテーブル (つまり、50、200、100、75、25、200) に保存する方法はありますか? 検索しようとしていますが、Lua は初めてです。どんな助けでも大歓迎です、ありがとう