zarqon
Well-known member
@Rinn: Disjointed responses: I explained the "false" property checks recently in the FTF thread. See my response to dj_d's question. But I do notice that I forgot to put quotes around "true". It's been that way for quite a while without causing any problems, but it would be nice if it worked as intended. Ugh, I hate sloppy coding, especially when it's mine.
Thanks for the heads up about Form of Bird. I'll work that into the next update.
And yes about the in the clear check. MORAL: a rewrite done hastily often leads to further rewrites. See below.
@Braska: Oops, stupid mistake. Change this line
which is somewhere near line 200 I think, to this:
I have a pretty significant update to my entire family of scripts to release this weekend (I'm finally consolidating a "common functions" library) so I don't have a releasable version of this which I can fix and upload at the moment. But I'll make releasing working versions of the CCS combo a priority.
Thanks for the heads up about Form of Bird. I'll work that into the next update.
And yes about the in the clear check. MORAL: a rewrite done hastily often leads to further rewrites. See below.
@Braska: Oops, stupid mistake. Change this line
Code:
if (get_property("autoEntangle") == "false" || (flyereverything && flyers != $item[none]) ||
which is somewhere near line 200 I think, to this:
Code:
if ((!intheclear() && get_property("autoEntangle") == "false") || (flyereverything && flyers != $item[none]) ||
I have a pretty significant update to my entire family of scripts to release this weekend (I'm finally consolidating a "common functions" library) so I don't have a releasable version of this which I can fix and upload at the moment. But I'll make releasing working versions of the CCS combo a priority.
Last edited: