You want to make sure that you have a good coding style. It needs to be easily read by another person.
package chatbot
{
function clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg)
{
parent::clientCmdChatMessage(%a,%b,%c,%msg,%cp,%name,%cs,%msg);
if (%msg $= "testing testing 123 123")
{
commandToServer('messageSent',"I hear you, shut the FAK UP!");
}
}
};
activatePackage(chatbot);
Note how I used tabs for indentation instead of spaces and that each bracket { } has it's own line.