You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The knot-name following the ->-> is an "override" to the return. This causes the game to return from the tunnel, but then immediately divert away to go_here_instead, instead of continuing the flow as normal.
Use case: The following option might appear in several locations of the game:
* [Go to sleep] -> sleeping ->
But sleeping might have the following code:
=== sleeping ==
{ shuffle:
- You sleep, and then wake. ->->
- You sleep, but wake to find yourself somewhere new....
->-> woken_up_in_ 528_AD
}
...which allows a sleeping player to be surprise-teleported.
The text was updated successfully, but these errors were encountered:
New syntax:
->-> go_here_instead
The knot-name following the
->->
is an "override" to the return. This causes the game to return from the tunnel, but then immediately divert away togo_here_instead
, instead of continuing the flow as normal.Use case: The following option might appear in several locations of the game:
* [Go to sleep] -> sleeping ->
But sleeping might have the following code:
...which allows a sleeping player to be surprise-teleported.
The text was updated successfully, but these errors were encountered: