• Visit Rebornbuddy
  • Pure SWTor

    Discussion in 'Archives' started by Ama, May 9, 2013.

    1. tataros

      tataros New Member

      Joined:
      Dec 6, 2011
      Messages:
      268
      Likes Received:
      0
      Trophy Points:
      0
      Thanks for the syntax help. Discharge is not single target for Darkness spec because we are using "Dark Charge" for tanking. When Dark Charge is active (It is a stance like warrior shi form etc, so is always active) Discharge is aoe. For the DPS specs of assassin when using surging charge or lighting charge, Discharge is single target.
       
    2. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      Ah, okay. Instead of Me.InCombat, you could use something like:
      Code:
      Spell.Cast("Discharge", ret => ShouldAoe),
       
    3. tataros

      tataros New Member

      Joined:
      Dec 6, 2011
      Messages:
      268
      Likes Received:
      0
      Trophy Points:
      0
      Does this mean that it will only cast when aoe situation happens? Because Discharge is also vital for single target fight cause it is apply a valuable debuff on target. Also Lacerate is aoe :) http://i.imgur.com/v11jX7v.png
       
      Last edited: Jun 13, 2014
    4. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      Oh jeez, that makes working with this rotation way more complicated. The best I can do for you is !Me.CurrentTarget.IsCrowdControlled. It'll still use AoE inappropriately at some points, but won't break a CC'd target. There's no other way I can think of to work this rotation, since the AoE spells are all needed during Single Target.
       
    5. tataros

      tataros New Member

      Joined:
      Dec 6, 2011
      Messages:
      268
      Likes Received:
      0
      Trophy Points:
      0
      I see :) yea its a mess... anyway, I ll leave it as is now that I am leveling and I will start worry when max level and start group content hehe.
       
    6. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      Don't forget, F9 is a quick and easy solution in many cases. Pause/UnPause very quickly and from in-game.
       
    7. tataros

      tataros New Member

      Joined:
      Dec 6, 2011
      Messages:
      268
      Likes Received:
      0
      Trophy Points:
      0
      Hehe I need to get used to this shortcuts :) F10 disable/enable movement. Now I wanna give some feedback on Smuggler (Sharptrooper). You need to add in the Buff section the "Burst Volley" (top talent in Sharpotrooper) and then in rotation section you need to add to "Sabotage Charge" the parameter to only cast when Burst Volley is active. Actually we have 2 fillers, Charged Burst and Sabotage Charge, you use Charged Burst always over Sabotage charge except if you are under the effect of Burst Volley, then Sabotage Charge is better than Charged Burst. So basically you need to add

      Spell.Buff("Burst Volley")

      and then in rotation

      Spell.Cast("Sabotage Charge", ret => Me.HasBuff("Burst Volley")),
       
    8. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      Update from SVN and let me know how it works. Should I add a modifier to Burst Volley? Something like
      Code:
      Me.CurrentTarget.StrongorGreater()
      ?
       
    9. tataros

      tataros New Member

      Joined:
      Dec 6, 2011
      Messages:
      268
      Likes Received:
      0
      Trophy Points:
      0
      Yeap is working :) As far as Me.CurrentTarget.StrongorGreater() is up to you :) I use this to many abilities to avoid waste them on weak mobs, but I use the cc for leveling anyway and doing only the daily/weekly flashpoints. Abilities that adds a debuff for example, cause weak mobs are dead in 1-2 shots and is a waste of resource to cast a dot. For example in Smuggler I have added the Me.CurrentTarget.StrongorGreater() to

      Spell.Cast("Flourish Shot", ret => !Me.CurrentTarget.HasDebuff("Armor Reduced") && Me.CurrentTarget.StrongOrGreater())
      Spell.DoT("Vital Shot", "", 15000, ret => Me.CurrentTarget.StrongOrGreater())

      and to the buffs

      Spell.Buff("Burst Volley", ret => Me.CurrentTarget.StrongOrGreater())
      Spell.Buff("Smuggler's Luck", ret => Me.CurrentTarget.StrongOrGreater())
      Spell.Buff("Illegal Mods", ret => Me.CurrentTarget.StrongOrGreater())

      But in Flashpoints and Operations there are always strong or greater mobs, so I don't think it will make a difference there for buffs, but in leveling it is a difference. Although the dots, even in Flashpoints, might be a waste of resources, especially for classes like Smuggler/Agent who need to stay above a certain % on their resource...

      On the Saboteur spec is better use Quick Shot only when you have the Hot Pursuit buff (T4 talent) or else better use Flurry of Bolts (the free ability). So basically the last 2 lines should be

      Spell.Cast("Quick Shot", ret => !Me.IsInCover() && Me.HasBuff("Hot Pursuit")),
      Spell.Cast("Flurry of Bolts")
       
      Last edited: Jun 14, 2014
    10. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      I already have this on the Sniper side, I must have forgotten to port it over to the Gunslinger side.
       
    11. tataros

      tataros New Member

      Joined:
      Dec 6, 2011
      Messages:
      268
      Likes Received:
      0
      Trophy Points:
      0
      Hehe :) I have not checked sniper..I play operative on Empire and Gunslinger on Republic.
       
    12. TaeTae

      TaeTae Member

      Joined:
      Oct 9, 2012
      Messages:
      177
      Likes Received:
      0
      Trophy Points:
      16
      Hey guys BW isn't starting for me says I need to load a profile :( fix?
       
    13. tataros

      tataros New Member

      Joined:
      Dec 6, 2011
      Messages:
      268
      Likes Received:
      0
      Trophy Points:
      0
      Inside the PureSwtor folder there is a profile called "Combat Bot". Load this profile and you are ready :).
       
    14. Mon0ncle

      Mon0ncle New Member

      Joined:
      Mar 22, 2013
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
      Is the sawbones Scoundrel really a Scoundrel because mine is thinking he is a gunslinger ?
       
    15. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
    16. Mon0ncle

      Mon0ncle New Member

      Joined:
      Mar 22, 2013
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
      Hes casting only ranged skills in crouch (gunslinger style) but none melee attacks.
       
    17. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      What should he be doing? Are you solo? What level are you? Attach a log file
       
    18. Mon0ncle

      Mon0ncle New Member

      Joined:
      Mar 22, 2013
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
    19. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      1. Delete Lockboxes and Autoequip plugins from your folder. You can delete Buddymonitor as well if you're not using it.
      2. Pure works best at level 55, but as long as you have Slow-release Medpac you should be okay.
      3. All Scoundrel routines work from melee. That's the entire class structure for Scoundrel. It only has 2-3 ranged attacks.
       
    20. Mon0ncle

      Mon0ncle New Member

      Joined:
      Mar 22, 2013
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
      i try to delete them. I use Unpure, makes it a different?
       

    Share This Page