I trying to make some advanced scripts in my little game and got some problems.
1) Is there a way to write ELSE dialogue?
{if {eq {item-count fly} 0}}
You can't fly! Poor thing!
I give You wings!
{inc-item-count fly 1}
{transform-avatar fly}
{else} // else isn't working
You got wings! Just fly away!
{/if}
2) Or maybe is there a way to use a "Stop" script function?
{if {eq {item-count fly} 0}}
You can't fly! Poor thing!
I give You wings!
{inc-item-count fly 1}
{transform-avatar fly}
{stop} // stop function to prevent showing last words in first time
{/if}
You got wings! Just fly away!
3) Or maybe there's other way to prevent showing last words for first time of dialogue?!
PS I'm sorry for my Bad English!