I've been fiddling around with the Script Editor trying to create a map system in which empty spaces are filled in as you visit new areas. To experiment I set up the following:
BEGIN
$PAGETEXT := "MAP TIME"
IF
%BLACKSMITH = 1
THEN
$PAGETEXT := $PAGETEXT + " PARTY ON!"
IF
%COTTAGE = 1
THEN
$PAGETEXT := $PAGETEXT + "<BR>" + " HECK YEAH!!"
END
Once both COTTAGE and BLACKSMITH were set to 1 the page would read:
MAP TIME PARTY ON!
HECK YEAH!!
...instead of what I was hoping it would read,
MAP TIME PARTY ON!
HECK YEAH!!
I've tried various things such as putting " " + " " + " " + " " ...etc., but so far nothing has worked. Does anybody know how to set this up? Examples would be much appreciated.
Thanks for your time and help,
Retro64