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!

LazyRaider/Combatbot

Just wondering if someone can help me out, I read through the whole thread and I am still stuck on what to do for the profile issue, a couple pages back someone said to use combat.xml. I don't have that profile nor can I find it anywhere, so once I get past the whole finding out what profile to use, I should be golden, thanks for any help.

Create a new file with notepad or whatever editor you like. Type "<profile/>" without the "" of course...and save it as "Combat Bot.xml". That's all. Load this and go :)

So, it will look like this when you open your Combat Bot.xml file:

<profile/>
 
Added Power Tech Shield Tech and Vanguard Shield Specialist.

Pretty cool, this is the first time I've seen my Shield Tech do much of anything. :)
 
no, I just did it and it worked

btw anyone know how the syntax to use items (medpacks;etc) or relics ?
 
i would love to know this so i can add it to Joe's 2.0

for joe's it's this:

if (HP <= 30) UseMedPackInInventory();

private static DateTime datLMPU = DateTime.Now; // Last Medpack Used - 2-minute restriction
public static void UseMedPackInInventory()
{
if (DateTime.Now.Subtract(datLMPU).TotalSeconds < 120) return;

foreach (var o in BuddyTor.Me.InventoryEquipment)
{
if (o.Name.Contains("Medpac"))
//if (o.IsUsable)
{ o.Use(); o.Interact(); datLMPU = DateTime.Now; return; }
}
}
 
for joe's it's this:

Added support for this. Haven't tested yet.

Created new class called "IManItem". Went ahead and put an instance of it in RotationBase called "Medpack". To use it in your rotation, just put "Medpack.UseItem()" in your rotation.

An example of how to put other items in.

Code:
//Name: Medpac
//Cooldown: 120
public static IManItem MedPack = new IManItem("Medpac", 120);
 
Last edited:
it already is in Joes' ...



i am playing around abit to figure out how to implement it in PureSWTor

just added it. Updated too, you can now put conditions in, so...

Medpack.UseItem(ret => Me.HealthPercent <= 30)
 
k have to check out what you did now ;-)
still learning *g*

thanks anyways mate!

Testing it out myself. Not working at the moment. :P

Sorta working, but the timer is a little slow..... NM, my medpac only has a 1.5 minute cd. Are they all like that?

EDIT: ok.. Medpac is fixed! Spent an hr banging my head on keyboard b/c I thought it was a 2 min cd. Other Items should work too!
 
Last edited:
They changed the CD on medpacks it seems
and can be used only once per fight
 
Last edited:
has this been added to all specs? working? and also do i need to change anything to get it to use a specific medpack over another? example use warzone medpack instead?

EDIT1: on a side not this is working fantastic. and goes through the rotation flawlessly on lightning spec.
 
thanks made ;-)

it seems it's going to the inventory from top left to right, top to bottom and uses the first item with "medpac" in it.

tried it with several now by simply switching it's positions in the inventory.
 
Hey I've been using the Seer Spec CR which I believe you made Ama, I was wondering if I'm doing something wrong or can it not heal while not having engage a target? I've noticed it only heals if I target an enemy. not sure if this is a BW thing since I'm new to all this. This is in War Zones BTW, I haven't tried Flash Points.
 
Back
Top