if and no else ?
if(getClient().getUsername().equalsIgnoreCase("Char")){
log("Welcome"+ getClient().getUsername().toString() + "!" + "You are authorized");
}
else {
log("Welcome" + getClient().getUsername().toString() + "!" + "You're not authorized to use this script!");
stop();
}