Hi I have a question about responding to text inputs. What I want to have done is depending on the text inputted it will update a certain variable. Thanks
-Joshua


1 2 3 4 | if (enTxt = "Have a nice day" ) { xp = xp + 10 } |
1 | if (enTxt == "Have a nice day" ) |
1 | if ( "Have a nice day" .equals(enTxt)) |