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
Has Vigilance Jedi Guardian been updated according to this -> http://dulfy.net/2014/12/11/swtor-3-0-vigilance-guardian-dps-guide-by-rydarus/#The_Rotation ?
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
it shouldnt ask for user and pass. just copy the link directly from your browser, go to svn checkout and it should work. check help here: Checking Out A Working Copy
Hey Alltrueist, can you please update sentinel to this guide? http://dulfy.net/2014/12/20/swtor-3-0-combat-sentinel-guide-by-vukk/
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
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.
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
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.