Hey all, jsut a quick question, as I haven't been able to find any; are there any profiles around that'll gather red scrips and/or do Favors? Thanks in advance!
There are no bot/min red scrip profiles, since the bot can't do the collectibles window yet. Fishing for red scrips is much less effective than fishing for blue scrips, since the only red fish that isn't timelocked is Stupendemys and that one's a pain to catch. You're certainly free to try, although I didn't have much success. No one's posted a favor profile, and between lack of flying and mob aggro, it just seems like a terrible usage of red scrips.
I'm botting favors (Still gathering concealed nodes manually), but it's terribly inefficient. I get 8-10 favor items per 5 favors, instead of 12-15 i get while doing it manually.
here's what I've been using to interact with the collect window: Code: public static class CollectWindow { public static bool IsOpen { get { return RaptureAtkUnitManager.GetWindowByName("GatheringMasterpiece") != null; } } public static void Collect() { if (IsOpen) { RaptureAtkUnitManager.GetWindowByName("GatheringMasterpiece").SendAction(1, 1, 0); } } }