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!

Pure SWTor

I've tried both my 39 Sorc and 55 Operative

Okay, I'm going to assume that neither is a hybrid build. Try a fresh install of both Pure and BW. If you get the same problem after re-launching, try clearing out your compiled assemblies folder and re-launching again.
 
Hi Alltrueist..just started levelling a jedi knight ( Sentinel ) and routine is having problems on that class i think..it keeps stopping and says An AoE count error, even if there's only one mob it does a few abilities then stops.its not using masters strike(rep version of marauders ravage ability) as i'm low level (15) i haven't had chance to test it out properly as i've had to do it manually because of routine stopping.not sure if you've started to look into Rep classes yet so hopefully you get to knight soon..routine is awsome for some classes so keep it up Boss :)

with regards to my UI problems is there supposed to be a GUI for dps classes or not,,if not are you going to implement one in the future so retards like me dont have to go into the coding to change settings like aoe mob count
 
Hey all,
So I finally built my new machine, and I've got SWTOR and BW and Visual Studio re-downloaded and working. I've been away for 2 months+ now and it looks like Joe came back and got his routine updated, and Walter is about to release his updated routine any week now.

That's great, glad to hear it.

From what I can tell, it looks like Ama is no longer with us, and it doesn't look like Aquintus is updating either.

That sucks, hope they are just taking a short break.

I'd like to keep Pure going because I feel like it fits a great niche (lightweight, low-memory-usage, end-game, at-the-keyboard routine), but there's no way I have enough 1. coding knowledge and 2. class/spec experience to do it alone.

What I'd like is if people could let me know which routines aren't working well or at all anymore. When you do so, please let me know what needs to change. I only have 4 main classes and a few mid-level alts to test with, and I never remember ability names among the specs.

So, please let me know what profiles need updating, and what, specifically, you need them to do. Thanks!

My skills aren't much, but they are at the communities disposal. I'm going to open the C# books back up and watch some vids. So I can be a little more helpful in the future...hopefully.
 
Hi Alltrueist..just started levelling a jedi knight ( Sentinel ) and routine is having problems on that class i think..it keeps stopping and says An AoE count error, even if there's only one mob it does a few abilities then stops.its not using masters strike(rep version of marauders ravage ability) as i'm low level (15) i haven't had chance to test it out properly as i've had to do it manually because of routine stopping.not sure if you've started to look into Rep classes yet so hopefully you get to knight soon..routine is awsome for some classes so keep it up Boss :)

with regards to my UI problems is there supposed to be a GUI for dps classes or not,,if not are you going to implement one in the future so retards like me dont have to go into the coding to change settings like aoe mob count

Hey ManFriday,
Could you post a log next time you get that error? I'd like to look at it and see if it's something I can fix.

I will, however, suggest that you use Joe's routine for leveling-- it's much better at earlier levels. Pure is designed around end-game characters, so it frequently neglects low-level abilities and is structured around top-level talents and abilities.
 
First I would like to say I love this routine on the classes I have used so far. I was wondering if it would be possible for me to get some input on how to make my Arsenal Merc toss some heals on my companion when its health gets extremely low. It doesnt happen all that often but a heal or two and low health would be enough buffer for the companion to get itself back to health. I have been messing around with some of the code but I dont really have a clue what I am doing:)
 
First I would like to say I love this routine on the classes I have used so far. I was wondering if it would be possible for me to get some input on how to make my Arsenal Merc toss some heals on my companion when its health gets extremely low. It doesnt happen all that often but a heal or two and low health would be enough buffer for the companion to get itself back to health. I have been messing around with some of the code but I dont really have a clue what I am doing:)

I found this in Mercenary/Bodyguard.cs

Code:
Spell.CastOnGround("Kolto Missile", on => HealTarget.Position, ret => HealTarget.HealthPercent < 60 && !HealTarget.HasBuff("Kolto Residue"))),

Try this (haven't tested though)

Code:
Spell.Buff("Healing Scan", ret => HealTarget.HealthPercent <= 50),

< 60 (less than 60%)
<= 50 (less or equal to 50%)

If it works, modify the numbers to your needs ;)
 
Pindleskin's suggestions should work. If not, post here because I know why they wouldn't work.
 
Not able to get this to work. Not really sure where I should be putting it in, so I just put it in each location and tested. get " Object reference not set to an instance of an object." everytime i put in in somewhere
 

I found this in Mercenary/Bodyguard.cs

Code:
Spell.CastOnGround("Kolto Missile", on => HealTarget.Position, ret => HealTarget.HealthPercent < 60 && !HealTarget.HasBuff("Kolto Residue"))),

Try this (haven't tested though)

Code:
Spell.Buff("Healing Scan", ret => HealTarget.HealthPercent <= 50),

< 60 (less than 60%)
<= 50 (less or equal to 50%)

If it works, modify the numbers to your needs ;)

How would this be done using Unoure and Sage?
 
Not able to get this to work. Not really sure where I should be putting it in, so I just put it in each location and tested. get " Object reference not set to an instance of an object." everytime i put in in somewhere

Read Walter's guide for help on how to install a combat routine. It's very handy and has pictures and links.
 
I wasnt referring to the routine itself, but the healing code I was trying to add
Sorry about that, it's hard to keep up with everyone's requests. Post your code here and I'll tell you where it goes and how to place it.
 
Telekinetics, and I want it to heal my companion when it's around 30% of total health.

Put this near the top of your HandleSingleTarget section:

Spell.Heal("The name of your healing spell", on => Me.Companion, 30, ret => Me.Companion != null),
 
Thanks, I'm still learning, but I don't see any "HandleSingleTarget" in that file.
 
Back
Top