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!

MrUnreal

Member
Joined
Oct 27, 2013
Messages
66
Heya all,

I have started to develop plugins that aid people when leveling by grinding. While the plugins are pretty basic, i find that they do what i found tedious and therefore I decided to share.

QuickGrind
A simple plugin that allows the user to quickly create a grinding profile with a single hotspot.
1. Get to the area you want to grind
2. In your bot settings allows the QuickGrind plugin and click the "Create" button it provides
3. Save the profile to your preffered path
4. ???
5. Profit

RegenBreak
Pretty much a worse-off copy of Recovery plugin. Its way simplier and just stays in spot when on low health, allowing for regen of the toon (I used this one just to poke around plugin dev)

Salvage
WARNING: This WILL salvage your items
Please be careful when using this plugin. What it will do is salvage any salvagable item in your inventory that you CANT equip. I use this to amke sure I dont run out of space

RepairMe
Plugin that will look for vendors nearby if your equipment is damaged. Currently, it is a bit buggy as i cant use Navigator or CommonBehaviours to navigate to the vendor, so it runs in a straight line instead (yup... quite sub optimal)

Last but not least, please bear in mind that these plugins are work in progress. I am happy if people report bugs but dont expect me to implement tiny, very custom features.

It is worth to note that all plugins require Common.cs to work.
View attachment RepairMe.cs
View attachment Salvage.cs
View attachment Common.cs
View attachment QuickGrind.cs
View attachment RegenBreak.cs
 
Does Salvage plugin also salvage items that aren't pieces of gear ? like decors
 
RepairMe
Plugin that will look for vendors nearby if your equipment is damaged. Currently, it is a bit buggy as i cant use Navigator or CommonBehaviours to navigate to the vendor, so it runs in a straight line instead (yup... quite sub optimal)

Anything special I have to do to get this to work? I know you said it was sub optimal, but I've had characters res a few feet from a vendor while having broken gear and they won't even attempt to interact with them
 
Anything special I have to do to get this to work? I know you said it was sub optimal, but I've had characters res a few feet from a vendor while having broken gear and they won't even attempt to interact with them
When making the plugin I didnt realize WB has support for repair and sell :P Its a tag in the profile :) Check DDs post !
 
When making the plugin I didnt realize WB has support for repair and sell :P Its a tag in the profile :) Check DDs post !
I see that now, guess I'm going to have a bunch of profiles to edit. Any way of incorporating vendors into the QuickGrind plugin so that it automatically becomes part of a profile? Also, when using QuickGrind, I've noticed that it will target and kill "critters" in the area you're in as well. Do you know if there's a way to set a minimum level of creatures that it goes after?
 
I am planning to rework the plugins very soon (probably at the end of the week) so they actually become useful :) Stay tuned
 
QuickGrind
A simple plugin that allows the user to quickly create a grinding profile with a single hotspot.
1. Get to the area you want to grind
2. In your bot settings allows the QuickGrind plugin and click the "Create" button it provides
3. Save the profile to your preffered path
4. ???
5. Profit

I cant see any 'Create' buttom :S where is it located? I have marked the addon to load!
 
You need to select the name of the addon, not just the check box. If you click on the the QuickGrind name, the Create button should appear.

Thanks mate... I right clicked and it worked!

EDIT:
I gewt this error when I run the profile I crated:

Code:
An error occured while loading the profile. Are you sure the profile contains no XML errors?
XML Error: System.FormatException: Input string was not in a correct format.
   at System.Number.ParseSingle(String value, NumberStyles options, NumberFormatInfo numfmt)
   at System.Xml.XmlConvert.ToSingle(String s)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderGrind.Read14_Hotspot(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderGrind.Read15_AreaContainer(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderGrind.Read16_Grind(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderGrind.Read17_Grind()
Unknown profile element: <Grind>
  <GrindArea>
    <Hotspot X="814,4471" Y="-858,4177" Z="2285,073" Timeout="1" Range="150" />
  </GrindArea>
</Grind> at line 2
 
Last edited:
Thanks mate... I right clicked and it worked!

EDIT:
I gewt this error when I run the profile I crated:

Code:
An error occured while loading the profile. Are you sure the profile contains no XML errors?
XML Error: System.FormatException: Input string was not in a correct format.
   at System.Number.ParseSingle(String value, NumberStyles options, NumberFormatInfo numfmt)
   at System.Xml.XmlConvert.ToSingle(String s)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderGrind.Read14_Hotspot(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderGrind.Read15_AreaContainer(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderGrind.Read16_Grind(Boolean isNullable, Boolean checkType)
   at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderGrind.Read17_Grind()
Unknown profile element: <Grind>
  <GrindArea>
    <Hotspot X="814,4471" Y="-858,4177" Z="2285,073" Timeout="1" Range="150" />
  </GrindArea>
</Grind> at line 2

Looks like something to do with your language settings and it putting ","'s in place of "."'s in the profile. Try replacing those and see how it works?
 
Hey guys, I only get the Profile Helper and Auto Equip boxes, when going into Settings.

Though I put all the .CS files in the Plugins folder. :(
 
Hey guys, I only get the Profile Helper and Auto Equip boxes, when going into Settings.

Though I put all the .CS files in the Plugins folder. :(
Place each .cs in their own folder under "Plugins".
 
So
Plugins/Commons/Commons.cs, for instance?

EDIT : Worked, thanks. <3
 
Last edited:
Back
Top