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

loaded a new BW, put in pure, selected unpure, then my profile, still no movement, seriously, what do i have to do?

Well i can only tell you what works for me. I made a clean install of BW, deleted the plugins, put Pure into the Routines folder but making a seperate folder called Pure(leave the Default Folder as it is dont change anything). Put the profile pack you want into the profile folder (btw what profile are you trying to use?).
Log into Character move to the area where i want to grind/do quests, put SWTOR in windowed mode, set it to high priority in the Task Manager. Then start up BW wait for it to fully load the default Routine and Settings, switch to UnPure Routine (wait for it to fully load). After that select your Profile (i'd test it with a character over Level 10 and a Grind Profile) and start the bot.
It should move and Attack. If it's not looting you need to change the Character Settings in you BW folder (BW has to be closed for this). There's a line called <LootNpcs>true</LootNpcs>. If this is set to "false" you need to change and save it and then start up BW and do the aforementioned things.
Hope this helps. Cheers
 
is ther a full download file with all in it , if i click on the "download" it epears only a list off all like this:
pureswtor - Revision 489: /trunk/PureSwtor

..
App.config
Classes/
Combat Bot.xml
Core/
Helpers/
Managers/
Pure.cs
PureSWTor.csproj
PureSWTor.sln
PureSWTor.suo
PureSWTor.v11.suo
PureSWTor.v12.suo
Settings/
Unpure.cs


how can i download all files at all, like a zip or something, i tried to downlad them single with right click an save target .... but it doesnt work
 
is ther a full download file with all in it , if i click on the "download" it epears only a list off all like this:
pureswtor - Revision 489: /trunk/PureSwtor

..
App.config
Classes/
Combat Bot.xml
Core/
Helpers/
Managers/
Pure.cs
PureSWTor.csproj
PureSWTor.sln
PureSWTor.suo
PureSWTor.v11.suo
PureSWTor.v12.suo
Settings/
Unpure.cs


how can i download all files at all, like a zip or something, i tried to downlad them single with right click an save target .... but it doesnt work

Go to tortoisesvn.net, download and install.
Go to Routines folder and create folder PureSWTOR
Copy link of the SVN (https://subversion.assembla.com/svn/pureswtor/trunk/PureSwtor/)
right click on the folder PureSWTOR, select SVN checkout.
Then its if im right press ok and stuff is downloaded.
Load buddywing and your able to select (Un)Pure
 
Fix Mercenary Pyro and mod for basic new pyro rotation. Must be tuned for guide,ill try but is hard task for me. http://dulfy.net/2014/12/22/swtor-3-0-mercenary-dps-guide-by-marisi-and-fascinate/

File: https://drive.google.com/folderview?id=0B7hSATzVG5HPb1kyYmtCNTNqbUU&usp=drive_web


Class info:

Self-buffs from Missile blast: Power Surge, Primary Surge, Advanced Targeting
Proc for Mag Shot: Innovative Particle Accelerator - from Unload, Power Shot and Sweeping Blasters
Proc for Power Shot and Serrated Shot: Speed to Burn from Mag Shot
 
Last edited:
Any chance you could add an interrupt bot to this rotation?

It would be a fantastic addition.

Also, I have been trying to use this in pvp and it works flawlessly, however sometimes it bugs out when changing targets. Not sure what would be causing that.
 
UnPute has interrupting, but we warn you against using it in PvP or groups. Instant interrupts are a way to get reported.

Target switching? This is the first I've heard of that.
 
Any1 can help?

How i can detect in script states: In group or not in group, me.target's aggro on me or not on me, skillname on CD or not CD. And how work DoT. Old solution use Spell.DoT with time in ms. Ill have trouble coz if i use hard timer, i lose dps. Example. Bleed apply to target for 15000, but in combat i have procs - auto-renew duration or additional +10000 duration. How to built that mechanics? And Any solution for build in rotation concept of: pre-combat, first rotation pack, general rotation pack, burst rotation pack.
 
Last edited:
Any1 can help?



How i can detect in script states: In group or not in group, me.target's aggro on me or not on me. And how work DoT. Old solution use Spell.DoT with time in ms. Ill have trouble coz if i use hard timer, i lose dps. Example. Bleed apply to target for 15000, but in combat i have procs - auto-renew duration or additional +10000 duration. How to built that mechanics? And Any solution for build in rotation concept of: pre-combat, first rotation pack, general rotation pack, burst rotation pack.


Me.IsInGroup (I think)
No method for aggro, sadly (would be nice for threat drops)
Spell.DoT("spell name", "debuff name", dot duration)
You can skip debuff names by just using a plain "" (this is what we had to do pre-3.0 since debuffs had similar names); you can skip duration entirely by just excluding it. This will cause it to only cast when the debuff doesn't exist.
I don't know what you mean about procs and renewing, use a specific example.
You could certainly add in a burst rotation, just look what I did with low energy or stealth sections in Shadow routines.

Sorry for short answers, I'm on vacation and doing this on my phone.
 
Procs example:

Supercharged Gas (SCG): Requires and consumes 10 stacks of Supercharged and increases all dot damage for 10 seconds and applies an additional 5 second dot.

So. Base Dot duration - 15000, u strike, dot on target left 3 sec, use SCG now dot renew duration and + 5000. New effect of target - DoT 20000 left.
 
Why aggro is problem? SWTOR client show us in UI target's target. So, if my target target me = aggro.

Lol. If Me.Traget.Target == Me
 
Why aggro is problem? SWTOR client show us in UI target's target. So, if my target target me = aggro.

Lol. If Me.Traget.Target == Me
Target is not aggro, those are vastly different things. Sometimes you can have lowest aggro and still be the target, in which case a threat dump won't work. If you only want to know the target, your method should work.
 
Back
Top