in the help section it says to use
character[EGO].Say("&10 Hi! How are you?");
when i change it to
character[timmy].Say("&1 Hi! How are you?");
i get an undentified error in timmy
Those character script names have to be capitalized:
character[TIMMY].Say("&1 Hi! How are you?");
But you can also use them directly:
cTimmy.Say("&1 Hi! How are you?");