So basically, I’m allowing players to adopt a dog [and to give it a custom name, by extension]
However, I’d like for their to be custom text if the player names it something specific, [eg: If they name the dog after a RO or something similar, I’d like the RO to have a custom response]
Here’s the gist of what I got:
*input_text dogname
*if (dogname=“Ranger”)
[Insert custom response from RO here]
*if (dogname != “Ranger”)
[insert generic response here]
Now all that works fine and well, but what do i do in case the player names the dog ‘ranger’ (with a lower case ‘r’ instead of an upper case one)
Is there any neat way around this? Trying to factor in for the capitals is confusing me here