• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [PLUGIN] Pokebuddy - Gotto kill em all!

    Discussion in 'Uncataloged' started by maybe, Oct 26, 2012.

    1. maybe

      maybe Community Developer

      Joined:
      May 15, 2010
      Messages:
      488
      Likes Received:
      18
      Trophy Points:
      0
      Disable framelock :)
       
    2. collector89

      collector89 New Member

      Joined:
      Nov 5, 2012
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      1
      tyvm, working now.
      Did i miss it at the FAQ?
       
    3. maybe

      maybe Community Developer

      Joined:
      May 15, 2010
      Messages:
      488
      Likes Received:
      18
      Trophy Points:
      0
      No, framelock is newer than the FAQ ;)
       
    4. dvadam63

      dvadam63 New Member

      Joined:
      Feb 4, 2013
      Messages:
      54
      Likes Received:
      0
      Trophy Points:
      0
      Hi there, I use(d) your plugin often and with over 200 Blue pets I can say it works great. here are some problems I have found...
      1. the UI - you need to make this a responsive design that scales, in IE10 or IE11 (windows 7/8) it is messed up. basically some of us with crappy vision scale our browsers (firefox/IE) to 125% and well your UI does not scale.

      2. Can't seem to get the UI to let me keep my levelling pet in spot 1. - not sure why. but current HB and GB builds with your plugin will not let me keep L20 in slot #1.

      3. exceptional amount of blacklisting in MoP - not sure why
       
    5. dvadam63

      dvadam63 New Member

      Joined:
      Feb 4, 2013
      Messages:
      54
      Likes Received:
      0
      Trophy Points:
      0
      ok I figured out that framelock messes things up so unchecking it lets you do pet battles again :)

      is it possible to use pet sets? I want to do the daily pet battles and would like to swap in certain pets in an order for each pet or pet battle master.
      this with a fly plan would be really great add on!
       
    6. menand

      menand New Member

      Joined:
      Mar 24, 2013
      Messages:
      154
      Likes Received:
      0
      Trophy Points:
      0
      [PB] Checking slot 1 level
      [PB] Pulsing BPS
      [PB] Checking slot 1 level
      [PB] Pulsing BPS
      [PB] Checking slot 1 level
      [PB] Pulsing BPS
      [PB] Checking slot 1 level
      [PB] Pulsing BPS
      [PB] Checking slot 1 level
      [PB] Pulsing BPS
      [PB] Checking slot 1 level
      [PB] Pulsing BPS
      [PB] Checking slot 1 level
      [PB] Pulsing BPS
      [PB] Checking slot 1 level
      [PB] Pulsing BPS
      [PB] Checking slot 1 level
      [PB] Pulsing BPS
      [PB] Checking slot 1 level
      [PB] Pulsing BPS
      [PB] Checking slot 1 level
       
    7. maybe

      maybe Community Developer

      Joined:
      May 15, 2010
      Messages:
      488
      Likes Received:
      18
      Trophy Points:
      0
      Ill keep it in mind when making the next update
      Disable pre-combat swapping.
      Disable framelocking :)
      Will keep this in mind as well.

      Disable BPS, its broken (and its not mine, its a freakin nightmare to fix)
       
    8. Kaigno

      Kaigno New Member

      Joined:
      Nov 1, 2012
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      Just a quick hopeful question, is there something for the safari achievements? I know one was made a long time ago by Andy West but that does not work. Thanks for a great plugin!
       
    9. maybe

      maybe Community Developer

      Joined:
      May 15, 2010
      Messages:
      488
      Likes Received:
      18
      Trophy Points:
      0
      If that one doesnt work anymore, no. Not at this moment.
      It's all stuff i'd love to do but i simply cant for now...
       
    10. maybe

      maybe Community Developer

      Joined:
      May 15, 2010
      Messages:
      488
      Likes Received:
      18
      Trophy Points:
      0
      Btw, if anyone with some coding experience wants to fix this for framelocking, its something with line 531 in Pokehbuddy.cs
      (something like 527 or 530 has to be done but im all drugged up for a while and i simply cant code for now :( )
       
    11. 15outland

      15outland New Member

      Joined:
      Mar 27, 2011
      Messages:
      1,056
      Likes Received:
      0
      Trophy Points:
      0
      I am confused, what exactly does this plugin do? Just attacks once in battle, or does it also automatically find battles, etc?
       
    12. TreeK

      TreeK New Member

      Joined:
      Jul 10, 2012
      Messages:
      170
      Likes Received:
      1
      Trophy Points:
      0
      I'm running BPS with no problem after making a simple change to Pulse() in Plugin.cs. Just replace the existing function with what I have below and it should be fine.

      Code:
              public override void Pulse()
              {
                  try
                  {
      				if (_petLua.IsInBattle())
      				{
      					if (_WasInBattle)
      					{
      						// Do Nothing
      					}
      					else
      					{
      						_WasInBattle = true;
      						PulseWhenInBattle();
      					}
      				}
      				else
      				{
      					if (_WasInBattle)
      					{
      						_WasInBattle = false;
      						PulseWhenNotInBattle();
      					}
      					else
      					{
      						// Do Nothing
      					}
      				}
                      /*if (_lastPulse + 1000 < Environment.TickCount)
                      {
                          _lastPulse = Environment.TickCount;
      
                          if (!_petLua.IsInBattle())
                          {
                              PulseWhenNotInBattle();
                          }
                          else
                          {
                              PulseWhenInBattle();
                          }
                      }*/
                  }
                  catch (Exception ex)
                  {
                      _logger.Write(ex.Message);
                  }
              }
      And you will need to declare the new _WasInBattle variable at the top of the file along with the other declarations:

      Code:
      private bool _WasInBattle = true;
       
    13. bindie23

      bindie23 New Member

      Joined:
      Jul 14, 2013
      Messages:
      22
      Likes Received:
      0
      Trophy Points:
      0
    14. Slite62

      Slite62 Member

      Joined:
      Oct 16, 2013
      Messages:
      494
      Likes Received:
      2
      Trophy Points:
      18
    15. bindie23

      bindie23 New Member

      Joined:
      Jul 14, 2013
      Messages:
      22
      Likes Received:
      0
      Trophy Points:
      0
      nope framelock off
       
    16. bindie23

      bindie23 New Member

      Joined:
      Jul 14, 2013
      Messages:
      22
      Likes Received:
      0
      Trophy Points:
      0
      Sorted it, after lookin again whilst fully awake it was a diff plugin:)
       
    17. 8ball

      8ball New Member

      Joined:
      Apr 10, 2013
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      Hi,

      i need your help. i want that pet 1 & 2 attack only 1 time and then pet 3 finish all enemy pets.

      someone could help me with the settings ? the plugin switch with pet 1 & 2 the lowest pets and they still die.
      i set in the setting they must be swap if they get lower then 70% hp, but still swap with the low pets and dont with the high one
       
    18. soverine

      soverine Guest

      What is the purpose to farming Lucky Yi?
       
    19. toliman

      toliman Member

      Joined:
      Jun 20, 2012
      Messages:
      625
      Likes Received:
      10
      Trophy Points:
      18
      In PB ? Player XP.

      Iirc, it uses the whitelist feature to only target a certain pet. (It may at a later point, bring up a matching "yi" team you designate, but its down the road.) an in game addon called rematch can do this for you.

      When Patch 5.2 added fable pets, lucky yi happened to be In a very safe area, phased and no nearby hostile mobs, and you could effectively farm XP from the one repeatable "boss", and gain level 88 kill XP. Even if you were level 70 (warlock summon), sic.

      So an effective exploit to gain XP on alts at 85-89

      They then modified the XP boost to lower levels from the fable pets, to intentionally break this feature, to around 11k/17k, instead of 117k or 280k XP.

      You did need pets of the right kind to do this, which could be purchased from the AH, which ended up killing yi within 5-6 rounds.

      Patch 5.3, they revamped the fable pet series, and gave them a damage reduction of 50%, to make the fight infinitely harder. so while the principle is still there, you need specific non purchase-able pets, and a fair amount of luck.
       
    20. soverine

      soverine Guest

      Ah alright, was making sure there wasn't an awesome powerleveling strat I didn't know about. All my pets are level 20+, but I have around 300 left to hit 25. Right now just using ringerx2 with the hat bonus and just hanging out in Vale leveling there. Any other set ups that might speed this process up? I'd love to have all of them at 25 before WoD hits.
       

    Share This Page