hostMission: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " \| *(game[0-9]|version[0-9]|gr[0-9]|serverExec|mp|pr|descr|s[0-9]|p[0-9]{1,3}|r[0-9]|x1?[0-9]|seealso) *= +" to " |$1= ") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 12: | Line 12: | ||
|gr1= Multiplayer | |gr1= Multiplayer | ||
|descr= Host the | |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]] [ | |s1= [[hostMission]] [configEntry, activeDisplay] | ||
|p1= | |p1= configEntry: [[Config]] | ||
|p2= | |p2= activeDisplay: [[Display]] | ||
|r1= [[Nothing]] | |r1= [[Nothing]] | ||
|x1= <code>[[hostMission]] [ | |x1= <code>[[hostMission]] [<nowiki/>[[configFile]] >> "CfgMissions" >> "MPMissions" >> _scenarioClassName, _currentlyActiveDisplay];</code> | ||
|x2 | |x2= '''{{arma3}}:''' Launch host mission dialog from a client on dedicated server: | ||
<code>[[hostMission]] [ | <code>[[hostMission]] [ | ||
[[configFile]] >> "CfgMissions" >> "MPmissions" >> "MP_COOP_m01", | [[configFile]] >> "CfgMissions" >> "MPmissions" >> "MP_COOP_m01", | ||
Line 39: | Line 33: | ||
}} | }} | ||
{{Note | |||
|user= kju | |||
|timestamp= 20110103165100 | |||
|text= 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. | |||
Revision as of 14:10, 24 November 2021
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:
- 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
- Posted on Jan 03, 2011 - 16:51 (UTC)
- The command must be called in the main menu or something similar menu it seems.