BIS fnc curatorObjectRegisteredTable: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "= <code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-_]+)\]\]([^<]*)<\/code>" to "= <code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - "= <code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-_]+)\]\]([^<]*)<\/code>" to "= <code>$1$2$3</code>") |
||
Line 20: | Line 20: | ||
|x1= <code>// Nothing but the listed flare modules will show up in the curator's unit list | |x1= <code>// Nothing but the listed flare modules will show up in the curator's unit list | ||
[getAssignedCuratorLogic player, ["ModuleFlareWhite_F",0.02,"ModuleFlareYellow_F",0.02,"ModuleFlareGreen_F",0.02]] | [getAssignedCuratorLogic player, ["ModuleFlareWhite_F",0.02,"ModuleFlareYellow_F",0.02,"ModuleFlareGreen_F",0.02]] call [[BIS_fnc_curatorObjectRegisteredTable]];</code> | ||
|seealso= [[BIS_fnc_exportCuratorCostTable]] | |seealso= [[BIS_fnc_exportCuratorCostTable]] |
Revision as of 16:56, 13 July 2022
Description
- Description:
- Register curator object costs from a table.
A table can be exported into a spreadsheet using BIS_fnc_exportCuratorCostTable and used as argument for this function. - Execution:
- call
- Multiplayer:
- Must be executed where the logic is local (on the machine of the player it is assigned to)
- Groups:
- Curator
Syntax
- Syntax:
- [curatorLogic, [className, cost, className, cost...]] call BIS_fnc_curatorObjectRegisteredTable
- Parameters:
- curatorLogic: Object - The curator logic to set the object costs for.
- className: String - The class name of the object you wish to assign a cost to. Any objects not listed in the array won't appear in the curator's unit list.
- cost: Number - The cost you wish to assign to the preceding object. The cost should be between 0 and 1, with 1 representing the entire resource bar of the curator.
- Return Value:
- Boolean
Examples
- Example 1:
// Nothing but the listed flare modules will show up in the curator's unit list [getAssignedCuratorLogic player, ["ModuleFlareWhite_F",0.02,"ModuleFlareYellow_F",0.02,"ModuleFlareGreen_F",0.02]] call BIS_fnc_curatorObjectRegisteredTable;
Additional Information
- See also:
- BIS_fnc_exportCuratorCostTable
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
- Posted on November 10, 2014 - 17:02 (UTC)
- SilentSpike
- Be aware that you must provide an equal number of elements to the array of class names and costs. That mean every class name should be followed by an associated cost. You can add as many objects as you want as long as this condition is met.