((Longitude > (-79))&(Latitude > (-79)))&((Longitude < 621)&(Latitude < 621))
Should output 1 if between those coordinates?
FIXED / (Help) A line of funky trees, and I’m not sure why it’s broken
19.3k Axartar
2.6 years ago
OK turns out I’m a dumbass and had my coordinates all wrong so it wasn’t working, tysm regardless, it was much neater than what I’d written.@DeveloperKorzalerke I’d left my latitude thing in seconds so it was just wrong coordinates
Ooohh, ok thank you, I’ll have a try @DeveloperKorzalerke
Try this:
(Latitude > -79 & Longitude > -79 & Latitude < 621 & Longitude < 621)
It should output
True
if all conditions are met andFalse
if not.@Axartar
ah.
I guess I could try with = instead of AND. @ZeroWithSlashedO
Basically. It’s checking if the current latitude and longitude are greater than (-79) and less than (621)@ZeroWithSlashedO
Honestly, I don't understand even in the slightest about this code. And I thought I had a basic understanding of FT.
What are you trying to achieve with this code?
Any help would be great, I’m pretty unfamiliar with any funky trees past basic level