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!

[Plugin] Ultimate PvP Suite

didn't miss that at all, Phelon. the point is if there is a config GUI then it should work, no matter what.. End-users shouldn't be forced to modify the script files, for something to work as they want.
and i apologize for saying it doesn't work, the plugin in fact works great, its just the Configuration GUI that doesn't show up, although i did install the whole thing correctly.
and i am sorry for being such a bitch, i am not trying to flame your hard work or anything its just my humble opinion.

By any chance you know anything besides editing the script which makes the GUI popup like it should? ill provide any info necessary just tell me what you need to know.

You would have to have the files to even see the gui. Nothing you can edit to get to that point with out the files off the SVN. You can on the other hand edit all of the variables listed below in the Ultimate PvP Suite.cs. It doesn't take much work to edit these and there are no hidden things you can do with the gui that you can't with the variables. Everything you can do in the gui can be done by editing these variables:

Code:
            #region General Settings


            #region Targeting Options
            EnabledPriorityTargeting = true;
            EnabledForceCombat = false;
            EnableTargetingLoSLogic = false;
            TargetCheckFrequency = 10;
            #endregion


            #region PVP and Racials
            EnablePvPTrinket = true;
            EnableRacialTraits = true;
            #endregion


            #region Banners and Flags
            EnableBannerCap = false;
            EnableReturnFlag = false;
            #endregion


            #region Refreshments and Soul Wells
            EnableUseRefreshments = false;
            EnableCreateRefreshments = false;
            EnableUseSoulwell = false;
            EnableCreateSoulwell = false;
            #endregion


            #region Interrupts


            #region INTERRUPT SPELL ADD AREA
            InterruptSpells.Add("Heal");
            InterruptSpells.Add("Flash Heal");
            #endregion


            EnableInterrupts = false;
            EnableInterruptEveryone = false;
            EnableFirstInterrupt = false;
            FirstInterruptSpell = "";
            FirstSpellRange = "";
            EnableSecondInterrupt = false;
            SecondInterruptSpell = "";
            SecondSpellRange = "";
            EnableThirdInterrupt = false;
            ThirdInterruptSpell = "";
            ThirdSpellRange = "";
            #endregion


            #region Consumables
            EnableUseHealthStone = true;
            EnableUseHealthPotions = true;
            EnableUsePvPHealthPotions = true;
            EnableUsePvPBanner = true;
            EnableUseHealthTrinket = true;
            UseConsumablePercent = "40";
            #endregion


            #region Loot Insignia's
            EnableLootInsignia = false;
            LootInsigniaRange = "7";
            #endregion


            #region Get BG Power Ups
            EnableGetBGPowerUps = false;
            GetBGPowerUpsRange = "7";
            #endregion


            #region Pulse Frequency
            HonorbuddyTPS = 25;
            #endregion


            #endregion


            #region Targeting


            #region Demolishers
            EnableTargetDemolishers = false;
            TargetDemolishersRange = 15;
            TargetDemolishersPriority = "80";
            #endregion


            #region Flag Carriers
            EnableTargetFlagCarriers = true;
            TargetFlagCarriersRange = 45;
            TargetFlagCarriersPriority = "80";
            #endregion


            #region Healers
            EnableTargetHealers = true;
            TargetHealersRange = 45;
            TargetHealersPriority = "100";
            #endregion


            #region Low Health
            EnableTargetLowHealth = true;
            TargetLowHealthRange = 45;
            TargetLowHealthPriority = "60";
            #endregion


            #region Undergeared
            EnableTargetUndergeared = true;
            TargetUndergearedRange = 45;
            TargetUndergearedPriority = "40";
            #endregion


            #region Totems
            EnableTargetTotems = true;
            TargetTotemsRange = 45;
            TargetTotemsPriority = "100";
            #endregion


            #endregion
Thank you works and looks more like an actual person is playing!

Awesome! I am stoked to hear you enjoy it and it is working well!
 
Last edited:
alright then, im fine with editing the variables, but im still suprised by the fact my config UI doesnt work, and would i have to restart my bot everytime i make a change or recompile the plugin?
 
Thank you works and looks more like an actual person is playing!
alright then, im fine with editing the variables, but im still suprised by the fact my config UI doesnt work, and would i have to restart my bot everytime i make a change or recompile the plugin?

Once those are saved to be the way you want and after the bot is started.. You can actually edit the settings file in the settings folder by locating UltimatePvPSuite_yourCharactersName . Hope this helps.

Which will look alot like:

Code:
<?xml version="1.0" encoding="utf-8"?>
<Settings>
  <!--Enable Priority Targeting.-->
  <EnabledPriorityTargeting>True</EnabledPriorityTargeting>
  <!--Enable Force Combat.-->
  <EnabledForceCombat>True</EnabledForceCombat>
  <!--Locates a new target if current target is LoS.-->
  <EnableTargetingLoSLogic>True</EnableTargetingLoSLogic>
  <!--Sets the interval to check for a new target.-->
  <TargetCheckFrequency>5</TargetCheckFrequency>
  <!--Enables PVP Trinket Usage.-->
  <EnablePvPTrinket>True</EnablePvPTrinket>
  <!--Uses Human / Dwarf / Undead / Gnome Racials.-->
  <EnableRacialTraits>True</EnableRacialTraits>
  <!--Enable to Cap Banners.-->
  <EnableBannerCap>True</EnableBannerCap>
  <!--Enable to try to return flags.-->
  <EnableReturnFlag>True</EnableReturnFlag>
  <!--Enable to try to use Refreshment Table.-->
  <EnableUseRefreshments>True</EnableUseRefreshments>
  <!--Enable to try to create a Refreshment Table.-->
  <EnableCreateRefreshments>False</EnableCreateRefreshments>
  <!--Enable to try to get Health Stone.-->
  <EnableUseSoulwell>True</EnableUseSoulwell>
  <!--Enable to try to create a Soul Well.-->
  <EnableCreateSoulwell>False</EnableCreateSoulwell>
  <!--Enable Use of Interrupts.-->
  <EnableInterrupts>True</EnableInterrupts>
  <!--Enable Use of Interrupts on other Targets.-->
  <EnableInterruptEveryone>True</EnableInterruptEveryone>
  <!--Enables First Interrupt Spell.-->
  <EnableFirstInterrupt>True</EnableFirstInterrupt>
  <!--First Interrupt Spell Name.-->
  <FirstInterruptSpell>Mind Freeze</FirstInterruptSpell>
  <!--First Interrupt Spell Distance.-->
  <FirstSpellRange>7</FirstSpellRange>
  <!--Enables Second Interrupt Spell.-->
  <EnableSecondInterrupt>True</EnableSecondInterrupt>
  <!--Second Interrupt Spell Name.-->
  <SecondInterruptSpell>Strangulate</SecondInterruptSpell>
  <!--Second Interrupt Spell Distance.-->
  <SecondSpellRange>30</SecondSpellRange>
  <!--Enables Third Interrupt Spell.-->
  <EnableThirdInterrupt>True</EnableThirdInterrupt>
  <!--Third Interrupt Spell Name.-->
  <ThirdInterruptSpell>Deathgrip</ThirdInterruptSpell>
  <!--Third Interrupt Spell Distance.-->
  <ThirdSpellRange>25</ThirdSpellRange>
  <!--Enable to try to use HealthStone.-->
  <EnableUseHealthStone>True</EnableUseHealthStone>
  <!--Enable to try to use Health Potions.-->
  <EnableUseHealthPotions>True</EnableUseHealthPotions>
  <!--Enable to try to use PVP Health Potions.-->
  <EnableUsePvPHealthPotions>True</EnableUsePvPHealthPotions>
  <!--Enable to try to use PvP Banner.-->
  <EnableUsePvPBanner>True</EnableUsePvPBanner>
  <!--Enable to try to use Health Stone.-->
  <EnableUseHealthTrinket>True</EnableUseHealthTrinket>
  <!--Sets the Consumable HP Threshold.-->
  <UseConsumablePercent>40</UseConsumablePercent>
  <!--Enable Looting of Insignia.-->
  <EnableLootInsignia>True</EnableLootInsignia>
  <!--Range to try to Loot Insignia.-->
  <LootInsigniaRange>7</LootInsigniaRange>
  <!--Enable BG Power Ups.-->
  <EnableGetBGPowerUps>True</EnableGetBGPowerUps>
  <!--Range to try to Get BG Power Ups.-->
  <GetBGPowerUpsRange>20</GetBGPowerUpsRange>
  <!--How often to pulse Honorbuddy [ Changes Honorbuddy - Ticks per second ]-->
  <HonorbuddyTPS>20</HonorbuddyTPS>
  <!--Enable to try to Target Demolishers.-->
  <EnableTargetDemolishers>True</EnableTargetDemolishers>
  <!--Sets the max range on looking for Demolishers.-->
  <TargetDemolishersRange>45</TargetDemolishersRange>
  <!--Sets the priority on targeting Demolishers.-->
  <TargetDemolishersPriority>1</TargetDemolishersPriority>
  <!--Enable to try to target Flag Carriers.-->
  <EnableTargetFlagCarriers>True</EnableTargetFlagCarriers>
  <!--Sets the max range on looking for Flag Carriers.-->
  <TargetFlagCarriersRange>45</TargetFlagCarriersRange>
  <!--Sets the priority on targeting Flag Carriers.-->
  <TargetFlagCarriersPriority>2</TargetFlagCarriersPriority>
  <!--Enable to try to target Healers.-->
  <EnableTargetHealers>True</EnableTargetHealers>
  <!--Sets the max range on looking for Healers.-->
  <TargetHealersRange>45</TargetHealersRange>
  <!--Sets the priority on targeting FHealers.-->
  <TargetHealersPriority>3</TargetHealersPriority>
  <!--Enable to try to target Low Health Player.-->
  <EnableTargetLowHealth>True</EnableTargetLowHealth>
  <!--Sets the max range on looking for Low Health Player.-->
  <TargetLowHealthRange>45</TargetLowHealthRange>
  <!--Sets the priority on targeting Low Health Player.-->
  <TargetLowHealthPriority>4</TargetLowHealthPriority>
  <!--Enable to try to target Undergeared.-->
  <EnableTargetUndergeared>True</EnableTargetUndergeared>
  <!--Sets the max range on looking for Undergeared.-->
  <TargetUndergearedRange>45</TargetUndergearedRange>
  <!--Sets the priority on targeting Undergeared.-->
  <TargetUndergearedPriority>5</TargetUndergearedPriority>
  <!--Enable to try to target Totems.-->
  <EnableTargetTotems>True</EnableTargetTotems>
  <!--Sets the max range on looking for Totems.-->
  <TargetTotemsRange>45</TargetTotemsRange>
  <!--Sets the priority on targeting Totems.-->
  <TargetTotemsPriority>6</TargetTotemsPriority>
</Settings>
 
Thanks just figured that out on myself, but if i edit them in the files, are they edited in realtime or do i need to restart the bot?
 
Alright, thanks for the fast replys man, im gonna play around with your plugin now, its an awesome plugin thats for sure :)
 
give the man some time,I dont think he is sitting at home waiting for us to donate before doing something.
Ppl have jobs,lives etc...
It took a few days near to a week after i donated so no worries :)
 
Just made a donation! If you could add me to the SVN so I could have access to the GUI I'd really appreciate it. Thanks!
 
awh i was hoping to get the gui today <3 av weekend but ill wait I did send you a pm though =p
 
awh i was hoping to get the gui today <3 av weekend but ill wait I did send you a pm though =p

Considering it is AV weekend, I used my lunch at work to add everyone to the SVN.
 
Last edited:
Work has begun on re writing the original BGBot. Just an FYI for anyone caring.
 
Work has begun on re writing the original BGBot. Just an FYI for anyone caring.
Hey, I know this is a not a big deal. But is there any way you can get rogues to apply poison to our weapons?

And that is great news. I wish you the best of luck. Dont rush anything because people complain. Your amazing.
 
Hey, I know this is a not a big deal. But is there any way you can get rogues to apply poison to our weapons?

And that is great news. I wish you the best of luck. Dont rush anything because people complain. Your amazing.

The re write I think will take at least a month. Although we shall see. People won't be pressuring me till I add it to the SVN. Till then it is in essence.. Vaporware =).

As for Rogues.. that is a custom class thing my friend =(.
 
i just got the plugin and "installed" it in plugin/Ultimate PvP Suite but it's doesn't work :(
 
Back
Top