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.
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.
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);
}
}
}
Can this be used in a code chunk, or better yet, be provided as a OrderBotTag?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); } } }