Hello, I have a question about using is_key in conjunction with a loop, I'll show an example
:loopfull
if is_key "left" then set_focus a and sleep 500
if is_key "right" then set_focus b and sleep 500
if is_key "set" then shoot_full
if is_key "down" then end
goto "loopfull"
When I press set to shoot, every time the loop repeats, it takes a shot, even long after I have let go of the button. Is there a solution/workaround available? Thanks!