gearSlotData: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 30: | Line 30: | ||
}; | }; | ||
uiNamespace setVariable ["/VDMJ/RscDisplayGear/SlotDataEH", { | |||
_self = _this select 0; | |||
_self | |||
_weaponName = gearSlotData _self; | _weaponName = gearSlotData _self; | ||
_conf = configFile >> _confSection >> _weaponName; | _conf = configFile >> _confSection >> _weaponName; | ||
_name = getText(_conf >> "displayName"); | |||
_name | _desc = getText(_conf >> "Library" >> "libTextDesc"); | ||
_desc | |||
_image = getText(_conf >> "picture"); | _image = getText(_conf >> "picture"); | ||
hint parseText format[ | hint parseText format[ | ||
'<t size="1.3" align="center" shadow="true" shadowColor="#000000">%1</t><br /><img image="%2" size="6" align="center" /><br />%3<br />%4', | '<t size="1.3" align="center" shadow="true" shadowColor="#000000">%1</t><br /><img image="%2" size="6" align="center" /><br />%3<br />%4', | ||
_name, _image, _desc | _name, _image, _desc | ||
]; | ]; | ||
}; | }]; | ||
for "_i" from 107 to 145 do { | |||
_dspl displayCtrl _i ctrlAddEventHandler ["ButtonClick", | |||
format [ | |||
for "_i" from | '_confSection = "%1"; _this call (uiNamespace getVariable "/VDMJ/RscDisplayGear/SlotDataEH");', | ||
_dspl displayCtrl _i ctrlAddEventHandler ["ButtonClick", | if( _i >= 109 && _i <= 129 ) then { "CfgMagazines" } else { "CfgWeapons" } | ||
] | |||
]; | |||
}; | }; | ||
</nowiki></pre>|= EXAMPLE1 | </nowiki></pre>|= EXAMPLE1 |
Revision as of 20:44, 18 June 2010
Description
- Description:
- Returns gear slot item name.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
- Open any ammobox and click by any gear slots
private "_dspl"; disableSerialization; waitUntil { _dspl = findDisplay 106; ! isNull _dspl; }; uiNamespace setVariable ["/VDMJ/RscDisplayGear/SlotDataEH", { _self = _this select 0; _weaponName = gearSlotData _self; _conf = configFile >> _confSection >> _weaponName; _name = getText(_conf >> "displayName"); _desc = getText(_conf >> "Library" >> "libTextDesc"); _image = getText(_conf >> "picture"); hint parseText format[ '<t size="1.3" align="center" shadow="true" shadowColor="#000000">%1</t><br /><img image="%2" size="6" align="center" /><br />%3<br />%4', _name, _image, _desc ]; }]; for "_i" from 107 to 145 do { _dspl displayCtrl _i ctrlAddEventHandler ["ButtonClick", format [ '_confSection = "%1"; _this call (uiNamespace getVariable "/VDMJ/RscDisplayGear/SlotDataEH");', if( _i >= 109 && _i <= 129 ) then { "CfgMagazines" } else { "CfgWeapons" } ] ]; };
Additional Information
- See also:
- See also needed
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