setUserMFDValue: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]3(\|.*)\]\]" to "{{GameCategory|arma3|Scripting Commands}}") |
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
||
Line 1: | Line 1: | ||
{{Command|Comments= | {{Command|Comments= | ||
| arma3 |Game name= | | arma3 |Game name= | ||
Line 7: | Line 6: | ||
|gr1= Interaction |GROUP1= | |gr1= Interaction |GROUP1= | ||
| When MFD is using user controllers, this command can set values on them. For example, MFD config for Blackfoot has an entry | | When MFD is using user controllers, this command can set values on them. For example, MFD config for Blackfoot has an entry | ||
Line 19: | Line 17: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
which could control color of the MFD. See Example 2-3-4 on how to set different colors of the Blackfoot MFD |DESCRIPTION= | which could control color of the MFD. See Example 2-3-4 on how to set different colors of the Blackfoot MFD |DESCRIPTION= | ||
| vehicle '''setUserMFDValue''' [index, value]|SYNTAX= | | vehicle '''setUserMFDValue''' [index, value]|SYNTAX= | ||
Line 30: | Line 27: | ||
| [[Nothing]] |RETURNVALUE= | | [[Nothing]] |RETURNVALUE= | ||
|x1= <code> BIS_Plane [[setUserMFDValue]] [0,1]; // user0 in MFD will return 1</code> |EXAMPLE1= | |x1= <code> BIS_Plane [[setUserMFDValue]] [0,1]; // user0 in MFD will return 1</code> |EXAMPLE1= | ||
Line 45: | Line 41: | ||
|x4= Hide MFD:<code>Blackfoot [[setUserMFDValue]] [3, 0]; // "user3" - 0</code> |EXAMPLE4= | |x4= Hide MFD:<code>Blackfoot [[setUserMFDValue]] [3, 0]; // "user3" - 0</code> |EXAMPLE4= | ||
| [[getUserMFDValue]], [[setUserMFDText]], [[getUserMFDText]]|SEEALSO= | | [[getUserMFDValue]], [[setUserMFDText]], [[getUserMFDText]]|SEEALSO= |
Revision as of 03:56, 17 January 2021
Description
- Description:
- When MFD is using user controllers, this command can set values on them. For example, MFD config for Blackfoot has an entry
which could control color of the MFD. See Example 2-3-4 on how to set different colors of the Blackfoot MFD
... class Draw { alpha = "user3"; color[] = {"user0","user1","user2"}; ...
- Groups:
- Interaction
Syntax
- Syntax:
- vehicle setUserMFDValue [index, value]
- Parameters:
- vehicle: Object - an vehicle with MFD
- index: Number - index of custom MFD user actions
- value: Number - value which should custom source return in MFD
- Return Value:
- Nothing
Examples
- Example 1:
BIS_Plane setUserMFDValue [0,1]; // user0 in MFD will return 1
- Example 2:
- Set MFD Red:
Blackfoot setUserMFDValue [0, 1]; // "user0" - 1 Blackfoot setUserMFDValue [1, 0]; // "user1" - 0 Blackfoot setUserMFDValue [2, 0]; // "user2" - 0 Blackfoot setUserMFDValue [3, 1]; // "user3" - 1
- Example 3:
- Set MFD pale Blue:
Blackfoot setUserMFDValue [0, 0]; // "user0" - 0 Blackfoot setUserMFDValue [1, 0]; // "user1" - 0 Blackfoot setUserMFDValue [2, 1]; // "user2" - 1 Blackfoot setUserMFDValue [3, 0.1]; // "user3" - 0.1
- Example 4:
- Hide MFD:
Blackfoot setUserMFDValue [3, 0]; // "user3" - 0
Additional Information
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note