• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [A2 Inferno] Keywarden Hunt

    Discussion in 'Archives' started by Magi, Oct 19, 2012.

    1. Magi

      Magi New Member

      Joined:
      Oct 12, 2012
      Messages:
      1,242
      Likes Received:
      7
      Trophy Points:
      0
      post a log so I can see what it's doing. I ran it before I left this morning for 2 hours with Trinity 1.7.1.12, new DB and KeyRun 1.4 and had no issues. LMK, thx.
       
    2. timerally

      timerally New Member

      Joined:
      Aug 29, 2012
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      anyone else not having bot restart after killing keywarden? have tried it on act 1/2/3 keywardens. have latetest demon buddy and keyrun 1.4

      so far everything runs smooth, gets 5 stacks, hunts keywarden, kills him but then keeps going through the map killing other mobs instead of porting back and resetting.
       
      Last edited: Nov 28, 2012
    3. Magi

      Magi New Member

      Joined:
      Oct 12, 2012
      Messages:
      1,242
      Likes Received:
      7
      Trophy Points:
      0
      you have latest trinity as well I assume? Requires that.
       
    4. timerally

      timerally New Member

      Joined:
      Aug 29, 2012
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      yeah just figgured that out :( running 1.7 so hopefully will work again. thanks for reply!


      testing: working great!
       
      Last edited: Nov 28, 2012
    5. Magi

      Magi New Member

      Joined:
      Oct 12, 2012
      Messages:
      1,242
      Likes Received:
      7
      Trophy Points:
      0
      excellent, glad to hear!
       
    6. zille

      zille New Member

      Joined:
      Oct 14, 2011
      Messages:
      66
      Likes Received:
      1
      Trophy Points:
      0
      Magi i have the latest trinity but my monk still wont use sweeping winds any thoughts ?
       
    7. Magi

      Magi New Member

      Joined:
      Oct 12, 2012
      Messages:
      1,242
      Likes Received:
      7
      Trophy Points:
      0
      I'm sure it has to do with the weapon swapping feature (which works great if you have a weapon to swap and a set of Inna's). I'm guessing you don't have either or maybe just the swap.

      There is a new Unified Thread here:
      http://www.thebuddyforum.com/demonb...d-trinity-community-edition-3.html#post903636

      They literally are releasing updates every 5 minutes it seems lol. They just released another version while I started writing this. Not sure if this will fix your issue (likely break a few more haha) so BACKUP!

      If it's still not working for you, post in that thread. I do believe they are aware of the issue though. If you can afford some inna's and a skorn, do it. It works great for my monk.
       
    8. Magi

      Magi New Member

      Joined:
      Oct 12, 2012
      Messages:
      1,242
      Likes Received:
      7
      Trophy Points:
      0
      I took a quick look at the sweeping wind code in the latest trinity v1.7.1 or whatever. I think they are missing code for users who don't take advantage of the weapon swap. Try replacing your sweeping wind code in the Monk.cs file in the Abilities folder. I'd try myself but don't have access to DB (on a mac laptop)

      Replace this whole function with this:
      Code:
      // Sweeping wind
                  //intell -- inna
                  if (!bOOCBuff && hashPowerHotbarAbilities.Contains(SNOPower.Monk_SweepingWind) && !GilesHasBuff(SNOPower.Monk_SweepingWind) &&
                      (iElitesWithinRange[RANGE_25] > 0 || iAnythingWithinRange[RANGE_20] >= 3 || (iAnythingWithinRange[RANGE_20] >= 1 && Settings.Combat.Monk.HasInnaSet) || (CurrentTarget.IsBossOrEliteRareUnique && CurrentTarget.RadiusDistance <= 25f)) &&
                      // Check if either we don't have blinding flash, or we do and it's been cast in the last 6000ms
                      //DateTime.Now.Subtract(dictAbilityLastUse[SNOPower.Monk_BlindingFlash]).TotalMilliseconds <= 6000)) &&
                      CheckAbilityAndBuff(SNOPower.Monk_BlindingFlash) &&
                      // Check our mantras, if we have them, are up first
                      CheckAbilityAndBuff(SNOPower.Monk_MantraOfConviction) &&
                      CheckAbilityAndBuff(SNOPower.Monk_MantraOfEvasion) &&
                      CheckAbilityAndBuff(SNOPower.Monk_MantraOfRetribution) &&
                      // Check the re-use timer and energy costs
                      (playerStatus.CurrentEnergy >= 75 || (Settings.Combat.Monk.HasInnaSet && playerStatus.CurrentEnergy >= 5)))
                  {
                      if (!weaponSwap.DpsGearOn() && Settings.Combat.Monk.SweepingWindWeaponSwap)
                      {
                          weaponSwap.SwapGear();
                          WeaponSwapTime = DateTime.Now;
                      }
                      if (!(weaponSwap.DpsGearOn() && Settings.Combat.Monk.SweepingWindWeaponSwap && DateTime.Now.Subtract(WeaponSwapTime).TotalMilliseconds <= 200))
                      {
                          SweepWindSpam = DateTime.Now;
                          return new GilesPower(SNOPower.Monk_SweepingWind, 0f, vNullLocation, iCurrentWorldID, -1, 0, 1, USE_SLOWLY); //intell -- 2,2
                      }
      				if (!Settings.Combat.Monk.SweepingWindWeaponSwap)
                      {
                          SweepWindSpam = DateTime.Now;
                          return new GilesPower(SNOPower.Monk_SweepingWind, 0f, vNullLocation, iCurrentWorldID, -1, 0, 1, USE_SLOWLY); //intell -- 2,2
                      }
                  }
      
      Give it a whirl if you dare haha.
       
    9. rrrix

      rrrix DEVELOPER Buddy Core Dev

      Joined:
      Jul 11, 2010
      Messages:
      3,449
      Likes Received:
      61
      Trophy Points:
      0
      All we need is this :)

      Code:
      if (!(weaponSwap.DpsGearOn() && Settings.Combat.Monk.SweepingWindWeaponSwap && DateTime.Now.Subtract(WeaponSwapTime).TotalMilliseconds <= 200) [U][B]|| !Settings.Combat.Monk.SweepingWindWeaponSwap[/B][/U])
                      {
                          SweepWindSpam = DateTime.Now;
                          return new GilesPower(SNOPower.Monk_SweepingWind, 0f, vNullLocation, iCurrentWorldID, -1, 0, 1, USE_SLOWLY); //intell -- 2,2
                      }
      
       
    10. Shaolin111

      Shaolin111 New Member

      Joined:
      Sep 6, 2012
      Messages:
      22
      Likes Received:
      0
      Trophy Points:
      0
      Hi bro, may i ask which act 2 quest do I need to run this? Thanks
       
    11. Magi

      Magi New Member

      Joined:
      Oct 12, 2012
      Messages:
      1,242
      Likes Received:
      7
      Trophy Points:
      0
      There ya go, I was going to put the or in afterwards but it was late and figured I'd miss a parenthesis lol. Was trying to read the condition with the negate at the beginning and was like f it, I need sleep. Nice work, hope it fixes!
       
    12. zille

      zille New Member

      Joined:
      Oct 14, 2011
      Messages:
      66
      Likes Received:
      1
      Trophy Points:
      0

      and where am i suppost to put this again ?

      i figured it out and tried both of them and it dosent work wont cast my sweeping wind.

      do i have to have a 2handed weapon and innas for it to work or something ?

      am i suppost to take a special combat rotine ? ( i have to to sellect from when i start the bot, )
       
      Last edited: Nov 29, 2012
    13. HighAndFly

      HighAndFly New Member

      Joined:
      Nov 12, 2012
      Messages:
      90
      Likes Received:
      0
      Trophy Points:
      0
      Here you go. 3 hours of stuck. It ran perfect for several hours but suddently it got stuck up in right corner in bazar ( the log at the bottom)

      Edit: Now he is stuck down at the orange portal in caledum bazar. I dont know wtf is happening. Some hours ago he teleport and go to wp but now we run up instead

      I got this right before he left the game before

      [20:23:56.173 N] Player died
      [20:23:56.173 N] [Trinity] I'm sorry, but I seem to have let you die :( Now restarting the current profile.
      [20:23:56.605 N] Loaded profile [A2 - Inferno] Keyhunting - Dahlgur Oasis
      [20:23:58.606 N] ProfileOrderManager.OnPlayerDied, Resetting caches.
      [20:23:58.608 N] Clicked revive button
      [20:23:58.651 N] [RadsAtom] - Released at: 29-11-2012 20:23:58
      [20:23:58.651 N] [RadsAtom] - Deathcount at: 10
      [20:23:58.651 N] [RadsAtom] - Resetting the deathcounter.
      [20:23:58.651 N] [RadsAtom] - Leave game, died too much.
      [20:23:59.362 N] Failed to load profile: Path to profile element is not valid; file not found
      [20:24:00.363 N] Stopping the bot.
      [20:24:00.369 N] Bot Thread Ended. Was this requested?
      [20:24:07.862 N] Loaded profile [A2 - Inferno] Keyhunting - Dahlgur Oasis
      [20:24:07.886 N] [Trinity] Note: Maintaining item stats from previous run. To reset stats fully, please restart DB.
      [20:24:07.962 N] [Trinity] Max deaths set by profile. Trinity now handling deaths, and will restart the game after 15
      [20:24:08.029 N] [KeyRun] KeyWarden Assumed Death HP set to 350000
      [20:24:08.145 N] ToggleTargeting, new values: Looting:True LootRadius:80 Combat:True KillRadius:35
      [20:24:21.659 N] Creating new game, Params: <Act:A2 Difficulty:Inferno Quest:57339 QuestStep:-1 ResumeFromSave:False IsPrivate:True Handicap:3>
      [20:24:26.515 N] GameChanged. Clearing actors
      [20:24:26.626 N] [KeyRun] New Game Started, Reset Variables
      [20:24:26.785 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #1 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [20:24:28.561 N] Path with 8 hops received (partial: True)

      [18:10:23.854 N] Path with 1 hops received (partial: True)[18:10:28.128 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #7 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:10:29.798 N] Path with 3 hops received (partial: True)
      [18:10:36.548 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=12 RActorGUID=2021195787
      [18:10:38.456 N] Path with 2 hops received (partial: True)
      [18:10:39.525 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #8 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:10:41.201 N] Path with 2 hops received (partial: True)
      [18:10:54.509 N] Path with 2 hops received (partial: True)
      [18:10:55.896 N] Path with 2 hops received (partial: True)
      [18:11:00.898 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #9 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:11:02.557 N] Path with 2 hops received (partial: True)
      [18:11:18.843 N] Path with 3 hops received (partial: True)
      [18:11:20.340 N] Path with 2 hops received (partial: True)
      [18:11:25.265 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #10 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:11:26.924 N] Path with 2 hops received (partial: True)
      [18:11:41.213 N] Path with 3 hops received (partial: True)
      [18:11:44.063 N] Path with 2 hops received (partial: True)
      [18:11:49.840 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #11 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:11:51.493 N] Path with 2 hops received (partial: True)
      [18:12:05.752 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=9 RActorGUID=2021195787
      [18:12:08.404 N] Path with 1 hops received (partial: True)
      [18:12:11.761 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #12 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:12:13.474 N] Path with 2 hops received (partial: True)
      [18:12:34.581 N] Path with 3 hops received (partial: True)
      [18:12:36.515 N] Path with 1 hops received (partial: True)
      [18:12:42.108 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #13 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:12:43.800 N] Path with 2 hops received (partial: True)
      [18:13:08.042 N] Path with 3 hops received (partial: True)
      [18:13:12.082 N] Path with 1 hops received (partial: True)
      [18:13:15.469 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #14 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:13:17.137 N] Path with 2 hops received (partial: True)
      [18:13:35.833 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=12 RActorGUID=2021195787
      [18:13:38.108 N] Path with 1 hops received (partial: True)
      [18:13:41.926 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #15 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:13:43.578 N] Path with 2 hops received (partial: True)
      [18:14:03.936 N] Path with 2 hops received (partial: True)
      [18:14:06.433 N] Path with 1 hops received (partial: True)
      [18:14:09.550 N] [Trinity] Anti-stuck measures now attempting to kickstart DB's path-finder into action.
      [18:14:11.159 N] Path with 1 hops received (partial: True)
      [18:14:12.591 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #1 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:14:14.248 N] Path with 2 hops received (partial: True)
      [18:14:17.837 N] Path with 3 hops received (partial: True)
      [18:14:21.347 N] Path with 1 hops received (partial: True)
      [18:14:24.738 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #2 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:14:26.396 N] Path with 2 hops received (partial: True)
      [18:14:31.621 N] Path with 3 hops received (partial: True)
      [18:14:33.670 N] Path with 2 hops received (partial: True)
      [18:14:36.944 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #3 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:14:38.927 N] Path with 2 hops received (partial: True)
      [18:14:45.250 N] Path with 3 hops received (partial: True)
      [18:14:48.392 N] Path with 1 hops received (partial: True)
      [18:14:52.049 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #4 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:14:53.715 N] Path with 2 hops received (partial: True)
      [18:15:05.979 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=9 RActorGUID=2021195787
      [18:15:08.052 N] Path with 2 hops received (partial: True)
      [18:15:12.068 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #5 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:15:13.714 N] Path with 2 hops received (partial: True)
      [18:15:23.138 N] Path with 2 hops received (partial: True)
      [18:15:25.352 N] Path with 2 hops received (partial: True)
      [18:15:30.297 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #6 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:15:31.966 N] Path with 2 hops received (partial: True)
      [18:15:43.449 N] Path with 3 hops received (partial: True)
      [18:15:45.992 N] Path with 1 hops received (partial: True)
      [18:15:51.643 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #7 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:15:53.307 N] Path with 2 hops received (partial: True)
      [18:16:07.940 N] Path with 2 hops received (partial: True)
      [18:16:09.781 N] Path with 2 hops received (partial: True)
      [18:16:15.914 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #8 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:16:17.565 N] Path with 2 hops received (partial: True)
      [18:16:35.953 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=10 RActorGUID=2021195787
      [18:16:37.829 N] Path with 2 hops received (partial: True)
      [18:16:41.992 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #9 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:16:43.649 N] Path with 2 hops received (partial: True)
      [18:16:58.480 N] Path with 3 hops received (partial: True)
      [18:17:00.808 N] Path with 2 hops received (partial: True)
      [18:17:06.462 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #10 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:17:08.172 N] Path with 2 hops received (partial: True)
      [18:17:24.552 N] Path with 2 hops received (partial: True)
      [18:17:27.468 N] Path with 1 hops received (partial: True)
      [18:17:30.911 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #11 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:17:32.569 N] Path with 2 hops received (partial: True)
      [18:17:56.671 N] Path with 3 hops received (partial: True)
      [18:17:58.076 N] Path with 2 hops received (partial: True)
      [18:18:04.247 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #12 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:18:05.922 N] Path with 2 hops received (partial: True)
      [18:18:12.297 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=11 RActorGUID=2021195787
      [18:18:14.112 N] Path with 1 hops received (partial: True)
      [18:18:15.349 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #13 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:18:17.013 N] Path with 2 hops received (partial: True)
      [18:18:41.708 N] Path with 2 hops received (partial: True)
      [18:18:42.784 N] Path with 1 hops received (partial: True)
      [18:18:48.822 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #14 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:18:50.476 N] Path with 2 hops received (partial: True)
      [18:19:08.524 N] Path with 3 hops received (partial: True)
      [18:19:10.506 N] Path with 2 hops received (partial: True)
      [18:19:15.965 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #15 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:19:17.947 N] Path with 3 hops received (partial: True)
      [18:19:36.676 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=11 RActorGUID=2021195787
      [18:19:39.303 N] Path with 1 hops received (partial: True)
      [18:19:42.693 N] [Trinity] Anti-stuck measures now attempting to kickstart DB's path-finder into action.
      [18:19:44.300 N] Path with 1 hops received (partial: True)
      [18:19:45.715 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #1 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:19:47.405 N] Path with 2 hops received (partial: True)
      [18:19:56.385 N] Path with 3 hops received (partial: True)
      [18:19:58.023 N] Path with 1 hops received (partial: True)
      [18:20:03.823 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #2 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:20:05.528 N] Path with 2 hops received (partial: True)
      [18:20:10.253 N] Path with 2 hops received (partial: True)
      [18:20:11.315 N] Path with 1 hops received (partial: True)
      [18:20:15.938 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #3 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:20:17.600 N] Path with 2 hops received (partial: True)
      [18:20:23.795 N] Path with 2 hops received (partial: True)
      [18:20:26.961 N] Path with 2 hops received (partial: True)
      [18:20:31.106 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #4 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:20:32.768 N] Path with 2 hops received (partial: True)
      [18:20:42.717 N] Path with 3 hops received (partial: True)
      [18:20:45.976 N] Path with 1 hops received (partial: True)
      [18:20:49.417 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #5 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:20:51.080 N] Path with 2 hops received (partial: True)
      [18:21:06.050 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=10 RActorGUID=2021195787
      [18:21:07.991 N] Path with 2 hops received (partial: True)
      [18:21:12.086 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #6 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:21:13.746 N] Path with 2 hops received (partial: True)
      [18:21:24.976 N] Path with 3 hops received (partial: True)
      [18:21:28.143 N] Path with 1 hops received (partial: True)
      [18:21:33.274 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #7 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:21:34.914 N] Path with 2 hops received (partial: True)
      [18:21:40.998 N] Path with 2 hops received (partial: True)
      [18:21:42.075 N] Path with 2 hops received (partial: True)
      [18:21:45.451 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #8 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:21:47.113 N] Path with 2 hops received (partial: True)
      [18:22:00.279 N] Path with 2 hops received (partial: True)
      [18:22:03.305 N] Path with 2 hops received (partial: True)
      [18:22:06.675 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #9 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:22:08.345 N] Path with 2 hops received (partial: True)
      [18:22:21.931 N] Path with 3 hops received (partial: True)
      [18:22:24.662 N] Path with 1 hops received (partial: True)
      [18:22:27.923 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #10 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:22:29.592 N] Path with 2 hops received (partial: True)
      [18:22:36.311 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=13 RActorGUID=2021195787
      [18:22:38.172 N] Path with 2 hops received (partial: True)
      [18:22:39.293 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #11 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:22:40.953 N] Path with 2 hops received (partial: True)
      [18:22:59.216 N] Path with 2 hops received (partial: True)
      [18:23:00.216 N] Path with 1 hops received (partial: True)
      [18:23:03.518 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #12 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:23:05.160 N] Path with 2 hops received (partial: True)
      [18:23:17.312 N] Path with 2 hops received (partial: True)
      [18:23:19.168 N] Path with 2 hops received (partial: True)
      [18:23:20.213 N] Path with 1 hops received (partial: True)
      [18:23:24.837 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #13 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:23:26.500 N] Path with 2 hops received (partial: True)
      [18:23:35.532 N] Path with 2 hops received (partial: True)
      [18:23:36.578 N] Path with 1 hops received (partial: True)
      [18:23:39.988 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #14 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:23:41.631 N] Path with 2 hops received (partial: True)
      [18:23:59.821 N] Path with 3 hops received (partial: True)
      [18:24:06.069 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=13 RActorGUID=2021195787
      [18:24:08.045 N] Path with 2 hops received (partial: True)
      [18:24:12.086 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #15 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:24:13.753 N] Path with 2 hops received (partial: True)
      [18:24:36.358 N] Path with 3 hops received (partial: True)
      [18:24:39.975 N] Path with 2 hops received (partial: True)
      [18:24:45.527 N] [Trinity] Anti-stuck measures now attempting to kickstart DB's path-finder into action.
      [18:24:47.105 N] Path with 1 hops received (partial: True)
      [18:24:48.549 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #1 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:24:50.210 N] Path with 2 hops received (partial: True)
      [18:24:53.423 N] Path with 3 hops received (partial: True)
      [18:24:56.293 N] Path with 2 hops received (partial: True)
      [18:25:00.616 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #2 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:25:02.283 N] Path with 2 hops received (partial: True)
      [18:25:07.384 N] Path with 3 hops received (partial: True)
      [18:25:08.960 N] Path with 2 hops received (partial: True)
      [18:25:12.782 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #3 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:25:14.438 N] Path with 2 hops received (partial: True)
      [18:25:20.660 N] Path with 3 hops received (partial: True)
      [18:25:23.031 N] Path with 1 hops received (partial: True)
      [18:25:27.853 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #4 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:25:29.505 N] Path with 2 hops received (partial: True)
      [18:25:36.133 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=11 RActorGUID=2021195787
      [18:25:38.023 N] Path with 1 hops received (partial: True)
      [18:25:39.124 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #5 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:25:40.768 N] Path with 2 hops received (partial: True)
      [18:25:48.848 N] Path with 3 hops received (partial: True)
      [18:25:51.563 N] Path with 1 hops received (partial: True)
      [18:25:57.267 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #6 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:25:58.974 N] Path with 2 hops received (partial: True)
      [18:26:06.338 N] Path with 4 hops received (partial: True)
      [18:26:09.549 N] Path with 2 hops received (partial: True)
      [18:26:15.498 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #7 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:26:17.147 N] Path with 2 hops received (partial: True)
      [18:26:29.440 N] Path with 3 hops received (partial: True)
      [18:26:31.003 N] Path with 2 hops received (partial: True)
      [18:26:36.822 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #8 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:26:38.534 N] Path with 2 hops received (partial: True)
      [18:26:55.273 N] Path with 3 hops received (partial: True)
      [18:26:58.486 N] Path with 1 hops received (partial: True)
      [18:27:04.328 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #9 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:27:05.991 N] Path with 2 hops received (partial: True)
      [18:27:12.367 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=11 RActorGUID=2021195787
      [18:27:14.164 N] Path with 1 hops received (partial: True)
      [18:27:15.357 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #10 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:27:17.021 N] Path with 2 hops received (partial: True)
      [18:27:33.929 N] Path with 3 hops received (partial: True)
      [18:27:36.520 N] Path with 1 hops received (partial: True)
      [18:27:42.564 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #11 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:27:44.226 N] Path with 2 hops received (partial: True)
      [18:28:01.401 N] Path with 3 hops received (partial: True)
      [18:28:05.208 N] Path with 2 hops received (partial: True)
      [18:28:09.969 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #12 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:28:11.619 N] Path with 2 hops received (partial: True)
      [18:28:36.937 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=11 RActorGUID=2021195787
      [18:28:39.168 N] Path with 1 hops received (partial: True)
      [18:28:43.011 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #13 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:28:44.690 N] Path with 2 hops received (partial: True)
      [18:29:02.209 N] Path with 2 hops received (partial: True)
      [18:29:04.738 N] Path with 2 hops received (partial: True)
      [18:29:10.460 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #14 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:29:12.100 N] Path with 2 hops received (partial: True)
      [18:29:24.174 N] Path with 3 hops received (partial: True)
      [18:29:26.576 N] Path with 1 hops received (partial: True)
      [18:29:31.656 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #15 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:29:33.315 N] Path with 2 hops received (partial: True)
      [18:29:58.399 N] Path with 3 hops received (partial: True)
      [18:30:01.161 N] Path with 2 hops received (partial: True)
      [18:30:05.057 N] [Trinity] Anti-stuck measures now attempting to kickstart DB's path-finder into action.
      [18:30:06.648 N] Path with 1 hops received (partial: True)
      [18:30:08.084 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #1 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:30:09.726 N] Path with 2 hops received (partial: True)
      [18:30:16.427 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=12 RActorGUID=2021195787
      [18:30:18.337 N] Path with 1 hops received (partial: True)
      [18:30:19.430 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #2 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:30:21.114 N] Path with 2 hops received (partial: True)
      [18:30:33.078 N] Path with 3 hops received (partial: True)
      [18:30:35.168 N] Path with 2 hops received (partial: True)
      [18:30:40.665 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #3 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:30:42.314 N] Path with 2 hops received (partial: True)
      [18:30:48.715 N] Path with 3 hops received (partial: True)
      [18:30:51.377 N] Path with 1 hops received (partial: True)
      [18:30:55.860 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #4 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:30:57.508 N] Path with 2 hops received (partial: True)
      [18:31:05.027 N] Path with 2 hops received (partial: True)
      [18:31:06.120 N] Path with 2 hops received (partial: True)
      [18:31:07.118 N] Path with 1 hops received (partial: True)
      [18:31:11.159 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #5 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:31:12.797 N] Path with 2 hops received (partial: True)
      [18:31:21.282 N] Path with 2 hops received (partial: True)
      [18:31:23.763 N] Path with 2 hops received (partial: True)
      [18:31:29.392 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #6 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:31:31.051 N] Path with 2 hops received (partial: True)
      [18:31:37.605 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=12 RActorGUID=2021195787
      [18:31:39.534 N] Path with 1 hops received (partial: True)
      [18:31:40.673 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #7 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:31:42.343 N] Path with 2 hops received (partial: True)
      [18:31:54.182 N] Path with 3 hops received (partial: True)
      [18:31:56.351 N] Path with 2 hops received (partial: True)
      [18:32:02.059 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #8 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:32:03.717 N] Path with 2 hops received (partial: True)
      [18:32:16.287 N] Path with 2 hops received (partial: True)
      [18:32:17.863 N] Path with 2 hops received (partial: True)
      [18:32:23.295 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #9 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:32:24.946 N] Path with 2 hops received (partial: True)
      [18:32:42.418 N] Path with 3 hops received (partial: True)
      [18:32:43.775 N] Path with 2 hops received (partial: True)
      [18:32:47.548 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #10 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:32:49.187 N] Path with 2 hops received (partial: True)
      [18:32:55.179 N] Path with 2 hops received (partial: True)
      [18:32:56.300 N] Path with 2 hops received (partial: True)
      [18:32:59.799 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #11 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:33:01.558 N] Path with 2 hops received (partial: True)
      [18:33:08.084 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=10 RActorGUID=2021195787
      [18:33:10.076 N] Path with 2 hops received (partial: True)
      [18:33:11.090 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #12 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:33:12.743 N] Path with 2 hops received (partial: True)
      [18:33:34.162 N] Path with 3 hops received (partial: True)
      [18:33:35.863 N] Path with 1 hops received (partial: True)
      [18:33:41.708 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #13 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:33:43.351 N] Path with 2 hops received (partial: True)
      [18:33:49.318 N] Path with 2 hops received (partial: True)
      [18:33:50.737 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #14 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:33:52.493 N] Path with 2 hops received (partial: True)
      [18:33:53.818 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #15 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:33:55.538 N] Path with 2 hops received (partial: True)
      [18:33:56.882 N] [Trinity] Anti-stuck measures now attempting to kickstart DB's path-finder into action.
      [18:33:58.483 N] Path with 2 hops received (partial: True)
      [18:33:59.918 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #1 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:01.602 N] Path with 2 hops received (partial: True)
      [18:34:02.920 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #2 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:04.613 N] Path with 2 hops received (partial: True)
      [18:34:05.960 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #3 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:07.670 N] Path with 2 hops received (partial: True)
      [18:34:08.960 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #4 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:10.667 N] Path with 2 hops received (partial: True)
      [18:34:12.014 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #5 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:13.693 N] Path with 2 hops received (partial: True)
      [18:34:15.087 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #6 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:16.782 N] Path with 2 hops received (partial: True)
      [18:34:18.096 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #7 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:19.776 N] Path with 2 hops received (partial: True)
      [18:34:21.126 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #8 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:22.818 N] Path with 2 hops received (partial: True)
      [18:34:24.156 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #9 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:25.870 N] Path with 2 hops received (partial: True)
      [18:34:27.176 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #10 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:28.872 N] Path with 2 hops received (partial: True)
      [18:34:30.214 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #11 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:37.903 N] [Trinity] Blacklisting an object because of possible stuck issues. Object=cald_merchant_cart {197939}. Range=29 RActorGUID=2021195787
      [18:34:37.997 N] Path with 2 hops received (partial: True)
      [18:34:40.926 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #12 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:42.614 N] Path with 2 hops received (partial: True)
      [18:34:44.003 N] [Trinity] Your bot got stuck! Trying to unstuck (attempt #13 of 15 attempts) Act="A2" questId="57339" stepId="10" worldId="70885"
      [18:34:45.704 N] Path with 2 hops received (partial: True)
       
      Last edited: Nov 29, 2012
    14. HighAndFly

      HighAndFly New Member

      Joined:
      Nov 12, 2012
      Messages:
      90
      Likes Received:
      0
      Trophy Points:
      0
      I get stuck here all the time to. How do i shot it so i can pass it? It just go back and forward at the carvan untill i manually destroy it

      Stuck.jpg
       
    15. Magi

      Magi New Member

      Joined:
      Oct 12, 2012
      Messages:
      1,242
      Likes Received:
      7
      Trophy Points:
      0
      on your first issue, disable RadsAtom. It is likely conflicting with the trinity death handling and everyone who seems to have issues similar to that were fixed by disabling it. I don't use RadsAtom at all. Might try their new plugin Atom which replaces that. I don't use either.

      As for the stuck, I'll have to investigate. I usually have Monk WW up so it destroys everything in it's path (plus I wear firewalkers which help with this too). That's the quick fix for now until I can dig deeper.
       
    16. itsmariobr

      itsmariobr New Member

      Joined:
      Nov 30, 2012
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      i got this problem :

      [02:54:19.223 N] Compiler Error: c:\Users\Noel\Desktop\Demonbuddy\Plugins\KeyRun\Ke yRun.cs(254,131) : error CS0117: 'GilesTrinity.GilesTrinity' does not contain a definition for 'bGilesForcedVendoring'
      [02:54:19.223 N] Compiler Error: c:\Users\Noel\Desktop\Demonbuddy\Plugins\KeyRun\Ke yRun.cs(283,132) : error CS0117: 'GilesTrinity.GilesTrinity' does not contain a definition for 'bGilesForcedVendoring'
      [02:54:19.223 N] Compiler Error: c:\Users\Noel\Desktop\Demonbuddy\Plugins\KeyRun\Ke yRun.cs(338,131) : error CS0117: 'GilesTrinity.GilesTrinity' does not contain a definition for 'bGilesForcedVendoring'
      [02:54:19.223 N] Compiler Error: c:\Users\Noel\Desktop\Demonbuddy\Plugins\KeyRun\Ke yRun.cs(611,19) : warning CS0472: The result of the expression is always 'true' since a value of type 'float' is never equal to 'null' of type 'float?'
       
    17. Lilly

      Lilly New Member

      Joined:
      Jul 19, 2012
      Messages:
      80
      Likes Received:
      0
      Trophy Points:
      0
      Magi I have tried this profile a lot because I love your work, but it gets stuck in a lot of places, notably the necromancer quest NPC.
       
    18. Magi

      Magi New Member

      Joined:
      Oct 12, 2012
      Messages:
      1,242
      Likes Received:
      7
      Trophy Points:
      0
      Thanks Lilly, not familiar with the necromancer quest off the top of me head? Post a log so I can see what's your bot is doing. Most stuck issues have to do with monster chasing at this point (at least in my case, I try to limit monster chasing and trinity always gets me unstuck 95% of the time)

      I'm pretty much using the standard ciggarc moveto points, I added a few/tweaked a few. Most of my work has been on the detection of the warden and arrangement of map profiles for the most part.

      Let me know and I can see if there is something I can refine to improve.

      Official release of KeyRun 1.4 will be posted this evening hopefully, been out of town. You can find preliminary 1.4 on my signature though which will fix people's compile errors with KeyRun 1.3 and the new trinity.
       
    19. Lilly

      Lilly New Member

      Joined:
      Jul 19, 2012
      Messages:
      80
      Likes Received:
      0
      Trophy Points:
      0
      Thank you Magi you have a good personality for taking criticism like that, I am learning from you. I just noticed my guy immediately cast town portal to warp after nephalem x5 without picking up the legendary drop from the 5th elite pack. Is there something we can edit so loot is done first before town portal?
       
    20. Magi

      Magi New Member

      Joined:
      Oct 12, 2012
      Messages:
      1,242
      Likes Received:
      7
      Trophy Points:
      0
      Thanks!

      We would probably have to either modify trinity or make the NV5 check a part of my plugin (right now it's a simple profile tag). I'll see what I can do after I get back up and running here. I think Trinity CE broke a few more things in KeyRun 1.4 as of today :p

      They are changing old trinity stuff so it's breaking a few things I had setup.

      Personally, I think this should be part a part of Trinity where anytime you try to teleport, it first makes sure it picks up any nearby loot (AND MONSTERS!). I'll talk to rrrix about it and see what can be done as opposed to writing into my plugin as I think other profiles would benefit from this if they attempt to do any specific teleports
       

    Share This Page