Hi, just a quick not to say that the script:
code:
if (name.length > 17)
{
name = name.substr(17) + '...';
}
cut off everything from character 0 to 16. After a bit of playing around with it I worked out that it should have been:
code:
if (name.length > 17)
{
name = name.substr(0,17) + '...';
}
Just thought I'd mention it in case any other scripters look at this thread looking for a similar thing
later
~~Scutterman~~