Difference between revisions of "Translations:Macros/13/fr"

From GIMX
Jump to: navigation, search
(Created page with "MACRO MBUTTONDOWN BUTTON_LEFT KEYDOWN p DELAY 50 KEYUP p DELAY 50 MBUTTONDOWN BUTTON_LEFT MACRO MBUTTONUP BUTTON_LEFT KEYUP p MBUTTONDOWN BUTTON_LEFT")
 
 
Line 1: Line 1:
MACRO MBUTTONDOWN BUTTON_LEFT
+
<pre>MACRO MBUTTONDOWN BUTTON_LEFT
KEYDOWN p
+
KEYDOWN p
DELAY 50
+
#Set delay no less than the maximum rate of fire
KEYUP p
+
#10 rounds per second (600 rpm)
DELAY 50
+
DELAY 100
MBUTTONDOWN BUTTON_LEFT
+
KEYUP p
 +
#~Do not set delay after keyup or it will negatively impact automatic weapons
 +
MBUTTONDOWN BUTTON_LEFT
 
   
 
   
MACRO MBUTTONUP BUTTON_LEFT
+
MACRO MBUTTONUP BUTTON_LEFT
KEYUP p
+
MBUTTONDOWN BUTTON_LEFT
MBUTTONDOWN BUTTON_LEFT
+
#Sometimes the fire key can be stuck down after the macro ends this releases it after the macro has been terminated
 +
KEYUP p</pre>

Latest revision as of 17:20, 30 September 2015

Information about message (contribute)

This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.

Message definition (Macros)
<pre>MACRO MBUTTONDOWN BUTTON_LEFT
KEYDOWN p
#Set delay no less than the maximum rate of fire
#10 rounds per second (600 rpm)
DELAY 100
KEYUP p
#~Do not set delay after keyup or it will negatively impact automatic weapons
MBUTTONDOWN BUTTON_LEFT
 
MACRO MBUTTONUP BUTTON_LEFT
MBUTTONDOWN BUTTON_LEFT
#Sometimes the fire key can be stuck down after the macro ends this releases it after the macro has been terminated
KEYUP p</pre>
Translation<pre>MACRO MBUTTONDOWN BUTTON_LEFT
KEYDOWN p
#Set delay no less than the maximum rate of fire
#10 rounds per second (600 rpm)
DELAY 100
KEYUP p
#~Do not set delay after keyup or it will negatively impact automatic weapons
MBUTTONDOWN BUTTON_LEFT
 
MACRO MBUTTONUP BUTTON_LEFT
MBUTTONDOWN BUTTON_LEFT
#Sometimes the fire key can be stuck down after the macro ends this releases it after the macro has been terminated
KEYUP p</pre>
MACRO MBUTTONDOWN BUTTON_LEFT
KEYDOWN p
#Set delay no less than the maximum rate of fire
#10 rounds per second (600 rpm)
DELAY 100
KEYUP p
#~Do not set delay after keyup or it will negatively impact automatic weapons
MBUTTONDOWN BUTTON_LEFT
 
MACRO MBUTTONUP BUTTON_LEFT
MBUTTONDOWN BUTTON_LEFT
#Sometimes the fire key can be stuck down after the macro ends this releases it after the macro has been terminated
KEYUP p