hostMission: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Take[ _]On[ _]Helicopters(\|.*)?\]\]" to "{{GameCategory|tkoh|Scripting Commands}}") |
Lou Montana (talk | contribs) m (Text replacement - "<sqf>([^↵][^\/]*↵[^\/]*)<\/sqf>" to "<sqf> $1 </sqf>") |
||
(36 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{RV|type=command | ||
| arma2oa | | |game1= arma2oa | ||
|version1= 1.55 | |||
|1. | |game2= tkoh | ||
|version2= 1.00 | |||
| | |game3= arma3 | ||
|version3= 0.50 | |||
|gr1= Multiplayer | |||
|descr= Host the multiplayer mission defined in the config class and opens the lobby with the scenario loaded. Must be called in UI action from a dialog. | |||
| | |s1= [[hostMission]] [configEntry, activeDisplay] | ||
| [[ | |p1= configEntry: [[Config]] | ||
| | |p2= activeDisplay: [[Display]] | ||
| | |r1= [[Nothing]] | ||
| | |x1= <sqf>hostMission [configFile >> "CfgMissions" >> "MPMissions" >> _scenarioClassName, _currentlyActiveDisplay];</sqf> | ||
| [ | |x2= Launch host mission dialog from a client on dedicated server in {{arma3}}: | ||
<sqf> | |||
hostMission [ | |||
configFile >> "CfgMissions" >> "MPmissions" >> "MP_COOP_m01", | |||
findDisplay 46 | |||
]; | |||
</sqf> | |||
| | |seealso= [[playScriptedMission]] [[playMission]] [[createMPCampaignDisplay]] [[createMissionDisplay]] | ||
}} | |||
{{Note | |||
|user= .kju | |||
| | |timestamp= 20110103165100 | ||
|text= The command must be called in the main menu or something similar menu it seems. | |||
}} | }} | ||
Latest revision as of 11:34, 3 September 2024
Description
- Description:
- Host the multiplayer mission defined in the config class and opens the lobby with the scenario loaded. Must be called in UI action from a dialog.
- Groups:
- Multiplayer
Syntax
- Syntax:
- hostMission [configEntry, activeDisplay]
- Parameters:
- configEntry: Config
- activeDisplay: Display
- Return Value:
- Nothing
Examples
- Example 1:
- hostMission [configFile >> "CfgMissions" >> "MPMissions" >> _scenarioClassName, _currentlyActiveDisplay];
- Example 2:
- Launch host mission dialog from a client on dedicated server in Arma 3:
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
- Posted on Jan 03, 2011 - 16:51 (UTC)
- The command must be called in the main menu or something similar menu it seems.