Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New Feature] Add star icon information to MapData wiki page #39

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
Update CreatingMissions.md
  • Loading branch information
tibetiroka committed Jun 24, 2024
commit 844153260ab742a167ce05e339fb1a6cff0e586a
8 changes: 8 additions & 0 deletions wiki/CreatingMissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -727,6 +727,14 @@ There are eleven events that can trigger a response of some sort:
* `daily`: every time the date advanced (every jump between systems and departure from a planet). (**v. 0.9.15**)
* `disabled`: if the player's flagship becomes disabled. (**v. 0.10.3**)

Beginning in **v. 0.10.9**, most of these triggers will not activate when the mission is already failed. In some cases, it still might be useful to keep track of the player until they land even if the mission failed. In these cases, you can make the triggers work by using `"can trigger after failure"`.
```html
on disabled
"can trigger after failure"
...
```


Beginning with **v. 0.9.9**, the `enter` action supports determining the system with a [location filter](LocationFilters). This filter is formatted in the same manner as `source` or `destination` for missions, or `system` for NPCs.
```html
on enter
Expand Down