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

Search results

  1. WhereIsMyMind

    Curse on hit. How to setup that on bot???

    Set your example routine up as follows Single Target Ranged = Puncture AOE Target Ranged = Split Arrow Melee AOE = Tornado shot Melee Single Target = Tornado shot or puncture (suggest tornado) then play around with your distance settings, e.g. set your Melee range to something like 35...
  2. WhereIsMyMind

    [OnStartup] Errors -- Plugins List Won't Show

    Oh and as pointed out by kevel, game was patched so the bot may need to patch as well (I have not checked yet *yawn*) wimm
  3. WhereIsMyMind

    [OnStartup] Errors -- Plugins List Won't Show

    >Process must have frozen or gotten out of sync: Injection Finished Event was never fired I see this when PoE is not running when starting the bot or PoE is minimized when starting the bot. Have you had the bot run before? Have you installed the prerequisites...
  4. WhereIsMyMind

    HOW TO RENAME Exilebuddy's routine name that shows up in GUI?

    you need to edit the routine(s), the line: /// <summary>The name of the routine.</summary> public string Name { get { return "ExampleRoutine"; } } note that this can break plugins, like the quest plugin, as that one searches for the Example...
  5. WhereIsMyMind

    Saying the bot wait to fill up your ES first and then continue grinding possible?

    well, looking like a mess. The error '"[Logic] UseAt returned InvalidSlot."' is because you have nothing selected for the 'Fallback skill slot", so when your character runs out of mana, there is no default 'fallback' default attack, and thus the error. Suggest setting that slot number to your...
  6. WhereIsMyMind

    Saying the bot wait to fill up your ES first and then continue grinding possible?

    "[Logic] UseAt returned InvalidSlot." means your routine is trying to use a slot that does not contain a gem. Check your example routine settings, you may have set the wrong slot number for an attack. Ok, let me test the code after lunch :) wimm
  7. WhereIsMyMind

    Lifetime-key Issue!

    Not much in that log! Have you had the bot run before? If not then I suggest you run this: https://www.thebuddyforum.com/releases/68254-install-buddy-product-try-buddy-dependency-wizard.html Else we will need a log to work with. Typically the solution is turning off your firewall, then...
  8. WhereIsMyMind

    Bot wont auto pick my charector when relogged to get to town!

    Yeah.. catches me from time to time, the font PoE uses is so awful that I often miss a capital letter. WIMM
  9. WhereIsMyMind

    Saying the bot wait to fill up your ES first and then continue grinding possible?

    Yes, in your combat end section of the example routine, add the following; I looked into the chicken plugin to find the bits of code needed find this code region: // No monsters, we can execute non-critical combat logic, like buffs, auras, etc... // For this...
  10. WhereIsMyMind

    Picking up alot of white items.

    This ^ wimm
  11. WhereIsMyMind

    Vacation Time - I have some time to spend for development but no clue of EB API

    pushedx would also strongly recommend that you read all the guides. It is a good read, English is clear/concise, and the guides don't overlap too much. https://www.thebuddyforum.com/exilebuddy-forum/exilebuddy-guides/ I would suggest starting with a combat routine for a build you like. Check...
  12. WhereIsMyMind

    Exile Buddy wont pick u items

    The first rule of EB is to reinstall EB from a fresh download and into a fresh directory (don't forget to delete your old shorts ;) The next rule of EB is to post your logs, we like logs. https://www.thebuddyforum.com/honorbuddy-forum/honorbuddy-guides/35945-guide-attach-log-kick.html...
  13. WhereIsMyMind

    If your bot keeps dying try this

    I like Vaal Cold Snap, it is cheap and helps when surrounded. Although I like the looks of Vaal Summon Skeletons plenty.. but I recall trying it and found it does not work will a range based build (skeleies stood around, slack bastards) Time of the year to feel Merry and Jump for Joy...
  14. WhereIsMyMind

    skip certain mobs - plugin?

    https://www.thebuddyforum.com/exilebuddy-forum/152440-instance-encountering-difficult-mobs-seeing-eye-rima-etc.html ^^^ last post from pushedx wimm
  15. WhereIsMyMind

    skip certain mobs - plugin?

    ok, so you are putting this code in your onweight calculation? It should be in the private bool CombatTargetingOnInclusionCalcuation(NetworkObject entity) { try { var m = entity as Monster; if (m == null)...
  16. WhereIsMyMind

    skip certain mobs - plugin?

    compile errors please. wimm
  17. WhereIsMyMind

    skip certain mobs - plugin?

    ^yes. But that requires a little investigation for yourself, objectexplorer I think it is, and there is likely a thread with that information being built as the league matures. wimm
  18. WhereIsMyMind

    skip certain mobs - plugin?

    Sorry no plugin that I know of. There is a recent thread on how to 'simply' code such in a CR. https://www.thebuddyforum.com/exilebuddy-forum/152440-instance-encountering-difficult-mobs-seeing-eye-rima-etc-6.html wimm
  19. WhereIsMyMind

    Beta

    Merry Christmas pushedx, Yeah, the monster is dead by the time the rarity is attempted cached. I presume it is possible to happen on the other 'cachings' but rarity is the only one I noted. I solved it with: var cachedRarity = Rarity.Normal; try { cachedRarity = bestTarget.Rarity; }...
  20. WhereIsMyMind

    Beta

    Beta Exilebuddy 0.1.2889.79 get rarity Hi, I am receiving grief from Loki.Game.Objects.Monster.get_Rarity(). Was it changed since 1.2.n? If not then it is all me pushing things too hard [bestTarget.Rarity]System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative...
Back
Top