# HG changeset patch # User Wuzzy # Date 1444676834 0 # Node ID 044ef16b8ac598c63ec25117055f20db1e22e854 # Parent f161ad0b976df2f2db990ef5c85421e74b177c0e Better explanation of Goals diff -r f161ad0b976d -r 044ef16b8ac5 LuaAPI.wiki --- a/LuaAPI.wiki Mon Oct 12 19:02:08 2015 +0000 +++ b/LuaAPI.wiki Mon Oct 12 19:07:14 2015 +0000 @@ -153,7 +153,7 @@ * Map = "Bamboo" - the map being played * Theme = "Bamboo" - the theme to be used * !MapGen - type of map generator. One of `mgRandom`, `mgMaze`, `mgPerlin`, `mgDrawn`. - * Goals = "Jumping is disabled" - if you want to add info to the game mode dialog, use "|" to separate lines + * Goals = "Jumping is disabled" - Use this to add additional text to the goal text popup shown at the beginning and when using the quit or pause keys. The text is added to the default text which usually explains the game modifiers and does not replace it. Use “`|`” for line breaks. Also, all text before and including a “`:`” in a line will be highlighted. See also ShowMission * !TemplateFilter - _unknown meaning_ * !TemplateNumber - _unknown meaning_ * !MapFeatureSize - Used by random maps to determine its “curvyness” or complexity. This value can be set by the user with the slider under the random map preview in the game setup screen. The user-set value ranges from 1 (leftmost position) to 25 (rightmost position). @@ -1051,6 +1051,7 @@ === !ShowMission(caption, subcaption, text, icon, time) === Use to tell the player what he is supposed to do. If you use this function, a mission pop-up is shown for the amount of time specified in `time` (in milliseconds). +This function replaces the *entire* text of the pop-up. Compare this to the global `Goals` variable, which *adds* to the default text without replacing it. `caption` is the text displayed in the first line, `subcaption` is displayed in the second line and `text` is the text displayed in the third and following lines.