Forum
Stranded II General Sign Board Help?Sign Board Help?
3 replies 1
text container info
place a text container info on the map and put the diary text in the script field of this text container info. remember the ID of this info.
1
diary "title",ID;
textbuffer (text directly defined in your script)
add all lines for the entry line by line with add. you then have to omit the second parameter for diary!
1
2
3
4
5
2
3
4
5
clear; add "line 1"; add "line 2"; add "line 3"; diary "title";
external text file
1
diary "title","mytext.txt";
the path would then be something like "mymap/mytext.txt"
1