How to format your code so it can be seen on the forum.
Paste code into window.
Highlight all of the code.
Click the preformatted text button. (It looks like </> and is next to the quote one and on the same bar as the other formatting and smilies choice.)
Click reply.
I suggest reading the wiki if you haven’t. In particular
Concatenating Current Variables
To concatenate values within variables you follow the same syntax as before, but do not enclose your arguments in quotation marks, for example:
*set firstname “Roger”
*set lastname “Davis”
*set fullname (firstname&" ")&lastname
Note: the seperate space string, this is because in a firstname/lastname variable we wouldn’t have a space and cannot add it like we could with raw strings.