Welcome to QUEST!
I'd say your problem is likely to be this:
You have this symbol in your description ;
You cannot have this symbol as it confuses QUEST.This is because the ; symbol is a key part of ASL code (which you dont have to worry about if your using QDK).This for example will confuse quest:
define room <test>
look <you see a symbol.....;blah blah blah>
end define
This will not show anything after the ; symbol.
In ASL the symbol is used to separate things, eg:
$rand(1; 3)$
that is a function that genorates a number between 1 and 3, and is separated by the ; symbol.
You see.
Allyou have to do is take the ; out and it will work fine.