What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Gathering Red Scrips?

celther

New Member
Joined
Apr 5, 2013
Messages
15
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.
 
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.
 
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.

You could leave your comp overnight at a red scrip fish spot with a timed profile
 
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);
            }
        }
    }
 
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);
            }
        }
    }
Can this be used in a code chunk, or better yet, be provided as a OrderBotTag?
 
Back
Top