Page MenuHomeFeedback Tracker

author or onLoadName aren't available as scripting commands
Acknowledged, WishlistPublic

Description

https://community.bistudio.com/wiki/briefingName is a scripting command that makes the name of the mission available to scripts. That way you can easily create a reference to the mission name with the format-command.
Other entries from the description.ext, like author or onLoadMission aren't, but it would be a great feature to have those available as well.

Example:
format ["The name of this mission is %1.", briefingName]
works, whereas
format ["This mission was built by %1.", author]
doesn't.

Details

Legacy ID
397696448
Severity
None
Resolution
Open
Reproducibility
Always
Category
Feature Request

Event Timeline

Belbo edited Steps To Reproduce. (Show Details)Oct 14 2014, 7:36 PM
Belbo edited Additional Information. (Show Details)
Belbo set Category to Feature Request.
Belbo set Reproducibility to Always.
Belbo set Severity to None.
Belbo set Resolution to Open.
Belbo set Legacy ID to 397696448.May 7 2016, 7:36 PM

In the meantime, just use this:

_author = getText (missionConfigFile >> "author");