Hi everyone,
I read the documentation on logical operators which explains that & only works when comparing numbers (and instead concatenates strings).
So is there a way to compare strings with a logical AND?
Thanks
Develop games in your browser. Powerful, performant & highly capable.
You can use comparing strings, but you can't use only strings.
For example you have 2 variables s1="foo" and s2="bar" you can use s1="foo" & s2="bar but you can't use "1" & 0
Thanks Asmodean,
I'll see if I can work out how to incorporate that into my events.