Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

How to display links in Harlowe.

edited March 2016 in Help! with 2.0
Hello. I was wondering how i would display a link in harlow the one that looks like this: Eat Cookie=>EC So That If Var Is = To 1 Then It Will Display If It Is 0 Then Dont Display This Is My Code:

(if: $key is 0)[(print: "Key Of Souls Required.")]
(if: $key is 1)[(display: Continue->C)]

Back->SYA

Comments

  • Try you following:
    (if: $key is 0)[(print: "Key Of Souls Required.")]
    (else:)[ [[Continue->C]]]
    
    [[Back->SYA]]
    
    ... you only use a (display:) macro if you want to display the contents of one passage within another.
Sign In or Register to comment.