Code:
/* Called when client is sending command. */
forward client_command(id);
use that forward to catch all client commands, then if they are not in all lowercase you could convert them and resend them from the same client.
Or an even more accurate way would be to get a full list of commands into an array, and then match against the array using equali and then sedn the exact right command.
__________________