there's a thread on here, about room descriptions with code in it, but if I remember right, it requires use of JS (javascript) to do it.
--------
when you use the GUI~editor, you must set it to: [EXPRESSION], if you want to have any sort of code (like the attributes) in it.
the [MESSAGE] is for when you just want to write in prose (with NO code), a message of yours.
in Code mode, there's no difference of [MESSAGE] and [EXPRESSION], there's only msg ("???") which can either do just prose or prose+code.
---------
to create quotes as prose, you do this:
\"
as the quatation mark is actually code itself, so to tell quest that you want the quatation mark as itself (prose), you need to put it as shown above.
however, when using "codes", you can't have the \" inside of the "code" ( " + code + " )
"code" = player.class
---------
" + player.class + " = works
\" " + player.class + " \" = works
' " + player.class + " ' = works
" + player.class + " " + player.race + " " + player.gender + " = works
--------
" " + player.class + " " = (when not next to another "code") = does NOT work
" \" + player.class + \" " = does NOT work
" ' + player.class + ' " = does NOT work
----------
see this thread, for more detail of correct syntax:
viewtopic.php?f=10&t=3460