Hi, I have this simple script for logitech:
EnablePrimaryMouseButtonEvents (true);
*
function OnEvent (event, arg)
if IsKeyLockOn ("numlock") then
if IsMouseButtonPressed (3) then
repeat
if IsMouseButtonPressed (1) then
repeat
MoveMouseRelative (2,7)
Sleep (153)
until not IsMouseButtonPressed (1)
end
until not IsMouseButtonPressed (3)
end
end
end
I would like you to help me in the following.

I want to do to select 2 weapons with the script, I don't understand much about the programming world.

thanks.