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!

Need help please on PCoC build

fabcard

Member
Joined
Nov 7, 2013
Messages
131
Hello everyone.
As in title, tell me please there's a way to make EB uses a PCoC setup to generate power charges.
So, my build is CoC barrage as main attack and I have a second barrage setup with PCoC on it. What I'm looking for is to make EB uses PCoC barrage until it gets max charges and use again when the power charges are close to end or right after they end and keep using the main barrage to kill mobs while have max power charges possible.
I spent all my currency for that build gear and haven't noticed that the bot don't have a routine for it, unfortunately. I hope someone here can help me with this problem pretty please.
Thanks in advance.
 
skyforths-they're like $15 , power charges solved.
Hi. I wish I had the money to buy those but, unfortunately, I don't :(
It would be much appreciated if someone can help me with the code that will make possible the bot do that.
I'm not a coder/programmer - that's why I"m asking for help - but I guess we can use some lines from the endurance charges (enduring cry) that is already in the default routine and maybe some lines from this made by Tormiasz. I just need some help to put those together, please.
I wish they can make this part of the default routine someday. Like if the bot "sees" skills linked with PCoC, it will use those to keep max charges possible. Same goes for the frenzy charges. I'm sure many users will enjoy it as well.
Thanks.
 
Hello everyone.
As in title, tell me please there's a way to make EB uses a PCoC setup to generate power charges.
So, my build is CoC barrage as main attack and I have a second barrage setup with PCoC on it. What I'm looking for is to make EB uses PCoC barrage until it gets max charges and use again when the power charges are close to end or right after they end and keep using the main barrage to kill mobs while have max power charges possible.
I spent all my currency for that build gear and haven't noticed that the bot don't have a routine for it, unfortunately. I hope someone here can help me with this problem pretty please.
Thanks in advance.

My old totemizer routine had a piece of code that would use Ice Spear to generate Power Charges, feel free to take a look at it and see how it can be done.
 
Well, after over 8 hours collecting codes from many posts and from the tozededao routine I somehow made it!!! I can't believe it. :)
So it works for skills that you have to point the mouse over enemies before use it. Skills like lightning arrow, bladefall, blast rain, freezing pulse, kinetic blast, etc... I don't think it will work for skills like blade vortex.
Also it looks for the skill linked with PCoC from your skillbar automatically. Just make sure it's visible on your skillbar.
This routine is a fresh copy from the latest EB beta. All I did was adding some lines on it to make possible the bot keep the power charges up and at max charges possible all the time while normally attacking with your skills.
As I said, I'm not a coder/programmer, that's why I'm surprised that I did it. Feel free to use it if you want. Any ideas on changes for it will be very appreciated. I really hope they can add some similar on the EB permanently.
Enjoy it :)

View attachment OldRoutine.cs
 
Well, after over 8 hours collecting codes from many posts and from the tozededao routine I somehow made it!!! I can't believe it. :)
So it works for skills that you have to point the mouse over enemies before use it. Skills like lightning arrow, bladefall, blast rain, freezing pulse, kinetic blast, etc... I don't think it will work for skills like blade vortex.
Also it looks for the skill linked with PCoC from your skillbar automatically. Just make sure it's visible on your skillbar.
This routine is a fresh copy from the latest EB beta. All I did was adding some lines on it to make possible the bot keep the power charges up and at max charges possible all the time while normally attacking with your skills.
As I said, I'm not a coder/programmer, that's why I'm surprised that I did it. Feel free to use it if you want. Any ideas on changes for it will be very appreciated. I really hope they can add some similar on the EB permanently.
Enjoy it :)

View attachment 204537

Hey - I posted this in a Blade vortex routine, but this sets your bot to cast every X milliseconds. I use it to cast my secondary BV which generates Pcharges and curses on hit.

Add an INI, setting the number to whichever your PCoC generator is (i use bladevortex):
private int _bladevortexSlot = 3;

Add a stopwatch:
private readonly Stopwatch _bladevortexStopwatch = Stopwatch.StartNew();

then way down in the logic section, add the logic:

// Blade Vortex CoH & PCoC
if (_bladevortexSlot == 3 && _bladevortexStopwatch.ElapsedMilliseconds > 4000)
{
var skill = LokiPoe.InGameState.SkillBarHud.Slot(_bladevortexSlot);
if (skill.CanUse() && NumberOfMobsNear(LokiPoe.Me, 15) >= 1)
{
await DisableAlwaysHiglight();
await Coroutines.FinishCurrentAction();

var err1 = LokiPoe.InGameState.SkillBarHud.Use(skill.Slot, true);
if (err1 == LokiPoe.InGameState.UseResult.None)
{
await Coroutines.FinishCurrentAction(false);
_bladevortexStopwatch.Restart();
return true;

}

_bladevortexStopwatch.Restart();
}
}
 
Back
Top