woops. i need two equals signs. is the rest right?
well if you want to get technical, no, because "System" is a class and needs a capital letter
also is OP an object? does it have a value "ishandicapped"? why is it not encapsulated? you should be using a get method for that.
also you can just say (OP.gethandicapped()) because that is already a statement. it would be calling a boolean method.
if you want to do it your way it would be (OP.ishandicapped) you don't even need the == true because it just wants to know if OP is handicapped. if you wanted to check if OP was not handicapped, (!OP.ishandicapped)
edit: also you can call a single line of code directly after an if statement if you want to.
so you can just say,
if(OP.gethandicapped()) System.out.println("LOL");