hostMission: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Game version" to "|Game version=")
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Host the mp mission described by config class. Should be called as reaction to some UI action in some dialog.
| Host the mp mission described by config class. Should be called as reaction to some UI action in some dialog.<br>
For example you can start a MP scenario from a button. It creates a host and takes you to the lobby with the scenario loaded.<br>
You need to provide the display which is active when the hostMission command is called. |DESCRIPTION=
____________________________________________________________________________________________


For example you can start a MP scenario from a button. It creates a host and takes you to the lobby with the scenario loaded.
| [[hostMission]] [pConfig, pDisplay]  |SYNTAX=


You need to provide the display which is active when the hostMission command is called. |DESCRIPTION=
|p1= [pConfig, pDisplay]: [[Array]] |Parameter1=
____________________________________________________________________________________________


| '''hostMission''' [pConfig, pDisplay] |SYNTAX=
|p2= pConfig: [[Config]] |Parameter2=


|p1= [pConfig, pDisplay]: [[Array]] |=
|p3= pDisplay: [[Display]] |Parameter3=
|p2= pConfig: [[Config]] |=
|p3= pDisplay: [[Display]] |=  


| [[Nothing]] |RETURNVALUE=
| [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code>'''hostMission''' [configMissionName, display];</code> |=  
|x1= <code>[[hostMission]] [configMissionName, display];</code> |Example1=


|x2= <code>[[hostMission]] <nowiki>[</nowiki>[[configFile]]/"CfgMissions"/"MPMissions"/_scenarioClassName, _currentlyActiveDisplay];</code> |=  
|x2= <code>[[hostMission]] <nowiki>[</nowiki>[[configFile]] >> "CfgMissions" >> "MPMissions" >> _scenarioClassName, _currentlyActiveDisplay];</code> |Example2=


|x3= Launch host mission dialog in Arma 3 from a client on dedicated server<code>[[hostMission]] [
|x3= '''{{arma3}}:''' Launch host mission dialog from a client on dedicated server:
<code>[[hostMission]] [
[[configFile]] >> "CfgMissions" >> "MPmissions" >> "MP_COOP_m01",
[[configFile]] >> "CfgMissions" >> "MPmissions" >> "MP_COOP_m01",
[[findDisplay]] 46
[[findDisplay]] 46
];</code> |=
];</code> |Example3=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 42: Line 43:


<dd class="notedate">Posted on January 03, 2011
<dd class="notedate">Posted on January 03, 2011
<dt class="note">'''[[User:kju|kju]]'''<dd class="note">
<dt class="note">[[User:kju|kju]]
<dd class="note">
The command must be called in the main menu or something similar menu it seems.
The command must be called in the main menu or something similar menu it seems.


<!-- Note Section END -->
<!-- Note Section END -->

Revision as of 00:13, 3 September 2019

Hover & click on the images for description

Description

Description:
Host the mp mission described by config class. Should be called as reaction to some UI action in some dialog.
For example you can start a MP scenario from a button. It creates a host and takes you to the lobby with the scenario loaded.
You need to provide the display which is active when the hostMission command is called.
Groups:
Uncategorised

Syntax

Syntax:
hostMission [pConfig, pDisplay]
Parameters:
[pConfig, pDisplay]: Array
pConfig: Config
pDisplay: Display
Return Value:
Nothing

Examples

Example 1:
hostMission [configMissionName, display];
Example 2:
hostMission [configFile >> "CfgMissions" >> "MPMissions" >> _scenarioClassName, _currentlyActiveDisplay];
Example 3:
Arma 3: Launch host mission dialog from a client on dedicated server: hostMission [ configFile >> "CfgMissions" >> "MPmissions" >> "MP_COOP_m01", findDisplay 46 ];

Additional Information

See also:
playScriptedMissionplayMission

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

Notes

Posted on January 03, 2011
kju
The command must be called in the main menu or something similar menu it seems.

Bottom Section