createMPCampaignDisplay: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *arma3 * * *\| *([0-2]\.[0-9]{2}) * " to "|game1= arma3 |version1= $1 ")
m (Text replacement - "[[Image:" to "[[File:")
 
(10 intermediate revisions by 2 users not shown)
Line 10: Line 10:
|gr1= GUI Control
|gr1= GUI Control


|descr= Create a MP campaign display. The class name must be a mission collection declared in the configs; for example, {{ic|[[configFile]]&nbsp;>>&nbsp;"CfgMissions"&nbsp;>>&nbsp;"MPMissions"&nbsp;>>&nbsp;"Apex"}}<br>
|descr= Create a MP campaign display. The class name must be a mission collection declared in the configs; for example, <sqf inline>configFile >> "CfgMissions" >> "MPMissions" >> "Apex"</sqf><br>
If the class doesn't exist or isn't a mission collection, the display will be created empty.
If the class does not exist or is not a mission collection, the display will be created empty.


|s1= display [[createMPCampaignDisplay]] class
|s1= display [[createMPCampaignDisplay]] class


|p1= display - [[Display]]
|p1= display: [[Display]]


|p2= class: [[String]] - Mission collection class [[name]]
|p2= class: [[String]] - mission collection classname


|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <code>[[findDisplay]] 46 [[createMPCampaignDisplay]] "Apex";</code>
|x1= <sqf>findDisplay 46 createMPCampaignDisplay "Apex";</sqf>


|seealso= [[createMissionDisplay]], [[playMission]], [[createDisplay]]
|seealso= [[createMissionDisplay]] [[playMission]] [[createDisplay]]
}}
}}


 
{{Note
<dl class="command_description">
|user= R3vo
 
|timestamp= 20160714231600
<dt></dt>
|text= <sqf>findDisplay 46 createMPCampaignDisplay "123";</sqf>
<dd class="notedate">Posted on July 14, 2016 - 23:16 (UTC)</dd>
[[File:MPCampaignDisplay_Apex Protocol.jpg|APEX Protocol Campaign Screen]]
<dt class="note">[[User:R3vo|R3vo]]</dt>
}}
<dd class="note">
<code>[[findDisplay]] 46 createMPCampaignDisplay "123";</code>
[[Image:MPCampaignDisplay_Apex Protocol.jpg|APEX Protocol Campaign Screen]]
</dd>
 
</dl>

Latest revision as of 00:09, 21 November 2023

Hover & click on the images for description

Description

Description:
Create a MP campaign display. The class name must be a mission collection declared in the configs; for example, configFile >> "CfgMissions" >> "MPMissions" >> "Apex"
If the class does not exist or is not a mission collection, the display will be created empty.
Groups:
GUI Control

Syntax

Syntax:
display createMPCampaignDisplay class
Parameters:
display: Display
class: String - mission collection classname
Return Value:
Nothing

Examples

Example 1:
findDisplay 46 createMPCampaignDisplay "Apex";

Additional Information

See also:
createMissionDisplay playMission createDisplay

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
R3vo - c
Posted on Jul 14, 2016 - 23:16 (UTC)
findDisplay 46 createMPCampaignDisplay "123";
APEX Protocol Campaign Screen