diff options
Diffstat (limited to 'Tips-and-tricks.md')
-rw-r--r-- | Tips-and-tricks.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tips-and-tricks.md b/Tips-and-tricks.md index 01736ec..fb3ad2e 100644 --- a/Tips-and-tricks.md +++ b/Tips-and-tricks.md @@ -110,7 +110,7 @@ In your cutscene script, to show the placeholder and make the player invisible: checkflag ENGINE_PLAYER_IS_FEMALE iftrue .ShowGirlPlaceholder appear YOURMAP_CHRIS_PLACEHOLDER - jump .HidePlayer + sjump .HidePlayer .ShowGirlPlaceholder appear YOURMAP_KRIS_PLACEHOLDER .HidePlayer @@ -124,7 +124,7 @@ And to make the player visible again and disappear the placeholder: checkflag ENGINE_PLAYER_IS_FEMALE iftrue .HideGirlPlaceholder disappear YOURMAP_CHRIS_PLACEHOLDER - jump .HidPlaceholder + sjump .HidPlaceholder .HideGirlPlaceholder disappear YOURMAP_KRIS_PLACEHOLDER .HidPlaceholder |