Water plant help

White_Lady:
here is the code so far.

Please do autoformat your code (ctrl-T in the IDE) and use code tags when posting.

This doesn't make sense:

  } else {

    (humidityReal > 50); {

You probably meant:

  } 
  else if (humidityReal > 50) {

(note how that ; has also gone)