• Visit Rebornbuddy
  • [Plugin] Ultimate PvP Suite

    Discussion in 'Archives' started by Phelon, Apr 25, 2012.

    1. Phelon

      Phelon Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,591
      Likes Received:
      140
      Trophy Points:
      63
      Yes it should try to maintain a distance and strafe.. not just spin on people (which looks terrible imo).
       
    2. Phelon

      Phelon Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,591
      Likes Received:
      140
      Trophy Points:
      63
      I have some logic working for it.. but it isn't as good as I would like. The gui is getting completed right now.. then I am working on fixes mentioned by Apoc and the community. It is some ways off (week or so).

      With that said.. Thank you for the donation!
       
    3. tsatsa

      tsatsa Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      596
      Likes Received:
      5
      Trophy Points:
      18
      i have atm 4 accounts running in BGs... give a shout if you need to test it
       
    4. Idzuna

      Idzuna New Member

      Joined:
      Apr 7, 2012
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      Can we have settings to turn off individual modules? I love this but mine has a targeting crisis every time and I just end up standing out of stealth targeting different people :|

      Or maybe it picks the best target once, then doesn't switch for 10sec or target dead

      [BGBuddy PVP Suite] Lowest Overall Health Spotted!. Switching to Paladin!
      [SwInY - PvPRogue] Casting Premeditation on [Taskie]
      [BGBuddy PVP Suite] Healer Spotted!. Switching to Priest!
      [SwInY - PvPRogue] Casting Redirect on [Conqueress]
      [BGBuddy PVP Suite] Healer Spotted!. Switching to Priest!
      [SwInY - PvPRogue] Casting Recuperate
      [BGBuddy PVP Suite] Lowest Overall Health Spotted!. Switching to Shaman!
       
    5. tsatsa

      tsatsa Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      596
      Likes Received:
      5
      Trophy Points:
      18
      i have the same problem in AV where there are large grps of ppl (eg the bridge). I think the best option will be to switch to the best target and focus on it until it's death (or the own's one)
       
    6. Idzuna

      Idzuna New Member

      Joined:
      Apr 7, 2012
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      I really hate to be one of those 'backseat coders' but I thought I might code up a quick snippet of how I imagine the targeting to behave.
      Will make real changes after I actually read how to code a plugin (been working on java too long :( )

      In "BgBuddy - PvP Suite.cs"
      Other code omitted for space
      Code:
             //setup stuff
              public static bool FlagExists = false;
              public static WoWUnit CurrentTarget = null;
              public Date lastTargetChange = new Date();
              public long targetSwitchThreshold = 10000; // 10 seconds
              public bool stayOnTargetTillDead = false;
      
      
              public override void Initialize()
              // yada yada yada
              //
              public void setCurrentTarget(WoWUnit target)
              {
                  if (CurrentTarget != null)
                  {
                      if (stayOnTargetTillDead)
                          if (CurrentTarget.isAlive())
                              return;
                      if (lastTargetChange > (new Date() - targetSwitchThreshold))
                          return;
                  }
                  CurrentTarget = target;
                  lastTargetChange = new Date();
              }
      
       
    7. borgi

      borgi New Member

      Joined:
      Apr 15, 2012
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      0
      When I have PvP Suite enabled while Gathering in Druid Flight Form it stops like 3 yards above herb, gets out of the form and then harvests.
      Just reporting :)


      BTW. Any other way to donate than paypal? I ask because I've got ALMOST 18 euro cents there and I feel like 18 cents isn't enough ;>
       
      Last edited: May 1, 2012
    8. ratrider

      ratrider Member

      Joined:
      Jan 1, 2012
      Messages:
      223
      Likes Received:
      2
      Trophy Points:
      18

      Why would you want to use an PvP plugin for Gathering??
       
    9. tsatsa

      tsatsa Community Developer

      Joined:
      Jan 15, 2010
      Messages:
      596
      Likes Received:
      5
      Trophy Points:
      18
      mixed mode GB2 + BGbuddy
       
    10. borgi

      borgi New Member

      Joined:
      Apr 15, 2012
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      0
      It's not that I use it, it's just that I don't want to disable and enable it every time I want to do BGs or farm herbs.
      2nd thing is mixed mode with gathering and BGs.
       
    11. ratrider

      ratrider Member

      Joined:
      Jan 1, 2012
      Messages:
      223
      Likes Received:
      2
      Trophy Points:
      18
      Smart-ass.
       
    12. Phelon

      Phelon Well-Known Member Buddy Store Developer

      Joined:
      Jan 15, 2010
      Messages:
      2,591
      Likes Received:
      140
      Trophy Points:
      63
      I will be looking into this a bit more. I did a a quick fix... but not one I want to hold on to. I am going to make a few global variables to check priority. Just needed to get that fricken gui done and make the plugin more configurable for everyone.



      P.s. 1.07 is released. Donators check your SVN, everyone else check the downloads.
       
    13. amputations

      amputations Active Member

      Joined:
      Jan 6, 2011
      Messages:
      2,262
      Likes Received:
      11
      Trophy Points:
      38
      Disable the plugin while gathering; problem solved.
       
    14. borgi

      borgi New Member

      Joined:
      Apr 15, 2012
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      0
      And while Im running mixed = bgs + harvesting, should I disable and enable it every 1-2 minutes between BGs, when bot is gathering? BTW, my first post was not about "oh, what can I do to solve this?" but just to report it.
       
      Last edited: May 1, 2012
    15. EntaroAdun88

      EntaroAdun88 New Member

      Joined:
      May 30, 2010
      Messages:
      110
      Likes Received:
      1
      Trophy Points:
      0
      How come I can't get this to work? I placed it into the plugins folder, and nothing shows up, not even in the plugins gui.
       
    16. borgi

      borgi New Member

      Joined:
      Apr 15, 2012
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      0
      Did you create folder BGBuddy or whatever in plugins folder?
       
    17. ratrider

      ratrider Member

      Joined:
      Jan 1, 2012
      Messages:
      223
      Likes Received:
      2
      Trophy Points:
      18
      Did you make an new folder to place all the files from the .rar? In the plugins folder.

      For example;
      c:\hb\plugins\bgsuite <-- New folder.
       
    18. EntaroAdun88

      EntaroAdun88 New Member

      Joined:
      May 30, 2010
      Messages:
      110
      Likes Received:
      1
      Trophy Points:
      0
      Yeah defo. It says i can use any folder, so i named it anything.
      so its hb>plugins>pvpsuite
      and all the cs files are directly inside the pvpsuite folder.
      yet theres no sign of pvpsuite jn my list of plugins.
       
    19. borgi

      borgi New Member

      Joined:
      Apr 15, 2012
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      0
      I just updated my BGBuddy and there is one file less than in previous version (BGBuddy- PvP Suite.cs) .
      Download previous one, unpack it in your pvpsuite folder, then again unpack the latest one.
      Hope it will work.
       
      Last edited: May 1, 2012
    20. FunnymAN

      FunnymAN Member

      Joined:
      Jul 28, 2011
      Messages:
      126
      Likes Received:
      0
      Trophy Points:
      16
      I cannot get into the settings.

      I am in my plugins list and i see * Ultimate PVP Suite * and i see the button at the bottom BGBuddy - Ultimate PvP Suite but it isn't clickable.

      What is going on here? I am running version 1.7.
       
      Last edited: May 1, 2012

    Share This Page