crpl:docs:failmission

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
crpl:docs:failmission [2019/03/22 19:59] – add warning about bug Grabzcrpl:docs:failmission [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 8: Line 8:
 <note important>Be careful when using this function in the editor - FailMission can only trigger once. If you fail the mission in the editor and then save your map, FailMission will never trigger again, and it will be impossible to fail the mission anymore in that save file.</note> <note important>Be careful when using this function in the editor - FailMission can only trigger once. If you fail the mission in the editor and then save your map, FailMission will never trigger again, and it will be impossible to fail the mission anymore in that save file.</note>
 Fails the current mission and displays the Failed Mission dialog to the player. Fails the current mission and displays the Failed Mission dialog to the player.
 +
 +To prevent the issue with the use of FailMission in the editor explained above, make sure to never use it in the editor. You can use a custom function like this to ensure it'll only be called outside of the editor:
 +<code>
 +:SafeFailMission
 +    IsEditMode if
 +        ShowTraceLog
 +        "FAIL" Trace
 +    else
 +        FailMission
 +    endif
 +</code>
  
 === Examples === === Examples ===
 +Fail the mission when the game clock reaches exactly one minute (30 frames times 60 seconds). Custom function used from the example above.
 <code> <code>
-FailMission +GetGameTimeFrames 30 60 mul eq if 
-PauseGame+    @SafeFailMission 
 +    PauseGame 
 +endif
 </code>  </code> 
 +
  
crpl/docs/failmission.1553284796.txt.gz · Last modified: 2025/02/14 14:56 (external edit)