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!

Important Crafting Tags

Any chance we can get CraftAction in commonbehaviors?
No, not like there is a regular action equivalent anyway.

Code:
            await Coroutine.Wait(Timeout.InfiniteTimeSpan, () => !CraftingManager.AnimationLocked);

            if (Actionmanager.CanCast(Action,null))
            {
                Log("Casting {0} ({1})",Action.LocalizedName,ActionId);
                Actionmanager.DoAction(Action, null);
            }
            else
            {
                LogError("Could not cast {0} ({1}), stopping bot!", Action.LocalizedName, ActionId);
                _IsDone = true;
                return true;
            }

            await Coroutine.Wait(10000, () => CraftingManager.AnimationLocked);
            await Coroutine.Wait(Timeout.InfiniteTimeSpan, () => !CraftingManager.AnimationLocked);

            await Coroutine.Sleep(rng.Next(MinDelay,MaxDelay));

That's all craftaction does.
 
i'm having an issue with the eatfood tag. it will eat the food i tell it to if i have a NQ version in my inventory, but will not eat if i only have HQ version, even if i have HqOnly = "True". it just stays at "[EatFood] Waiting until the item is usable." indefinitely. i've attached log and the profile i'm using.

View attachment 165674
View attachment 165675

Thanks. With this I should be able to fix it. I've had reports of it doing that but no one provided enough information.
 
something wrong with the
Spicy Tomato Relish recipe
I check the ID is 30304
but it couldn't change the window rightly.
It'll open the window and stay at the first page Table-Salt but will not change.
I test some others . Others doing fine. (lack of material i didn't test advanced recipes

If i open the window of Spicy Tomato Relish and choose the mat , then press the start. it'll run. not this window, didn't.
i don't get it.
btw i'm a CNversion user. maybe that's the problem??

[20:08:02.289 V] [Poi.Clear] Reason: Current behavior changed to Synthesize: IsDone: False, MinimumCp: 371, RecipeId: 30304, UseCR: False, HQMats: null, HighPriority: False, InCombat: False, QuestId: 0, StepId: 0, PostCombatDelay: 0, QuestName: null, IsDoneCache: False, Behavior: TreeSharp.ActionRunCoroutine, .
[20:08:02.289 D] Removed all hooks from [HighPriorityProfileOrderBehavior_Hook]
[20:08:02.289 D] Replaced hook [ProfileOrderBehavior_Hook] 562cce65-75fd-4716-8c5b-a0ed61b3ead8
[20:08:08.903 N] [Synthesize] We don't know the required recipe.
[20:08:08.903 N] Stopping the bot. Reason:[Synthesize] We don't know the required recipe.
[20:08:08.903 D] CurrentBot.Stop()
[20:08:08.903 N] Connection closed! 23.88.178.194:31214
[20:08:08.903 D] TreeHooks.Instance.ClearAll()
 
something wrong with the
Spicy Tomato Relish recipe
I check the ID is 30304
but it couldn't change the window rightly.
It'll open the window and stay at the first page Table-Salt but will not change.
I test some others . Others doing fine. (lack of material i didn't test advanced recipes

If i open the window of Spicy Tomato Relish and choose the mat , then press the start. it'll run. not this window, didn't.
i don't get it.
btw i'm a CNversion user. maybe that's the problem??

Thanks for the report. For the cn version we have to interact with the window directly which is kinda a pain, looks like there was a bug in selecting the correct list under the special recipes section. Pushing out a fix now.
 
I think im going to create a map between all the basic abilities that are duplicated across the classes.
 
4712 is Blood Currant Tart's Item ID. The Recipe ID is 978.

What an idiot I am, that's what I get for trying to do something after no sleep, thanks muchos!

119817.jpg
 
Back
Top