Well, this is a new one. Basically, it won't let me have a string longer than 255 chars long, because it is, for some reason, constant.
[pascal]
type
TRoom = Class
public
n,s,e,w: string;
objects: array[0..10] of integer;
objectloc: array[0..10] of string;
title: string;
rdesc: string;
end;
[/pascal]
Why would it be considered a constant? And is there any way to change that? Any other code you think would be necessary to see?

(I seem to manage fairly well in learning new languages until these little nuances come up )