If you guys are wondering, here is my example script
//Grammar national socialist!
package grammar
{
function clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg)
{
parent::clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg);
if (!name $= "Johnny Blockhead")
{
switch$(%msg) //let's add the switch now
{
case "lel":
commandToServer('messagesent',"JSys²: Don't ya mean lol?");
case "jsut":
commandToServer('messagesent',"JSys²: Don't ya mean just?");
}
}
}
};