• Visit Rebornbuddy
  • Deception Assassin

    Discussion in 'Combat Routines' started by Satanail, Apr 13, 2016.

    1. wired203

      wired203 Community Developer

      Joined:
      Jan 22, 2015
      Messages:
      391
      Likes Received:
      1
      Trophy Points:
      18
      Is there any way we could get this to work for leveling? Some level checks for the spells that aren't the best at 65 etc? A lot of routines lately are getting geared twords 65 and then we have new users show up trying to level their chars and getting frustrated. Would be nice if it was max dps + okish for leveling.
       
    2. Satanail

      Satanail Member

      Joined:
      Aug 5, 2015
      Messages:
      30
      Likes Received:
      0
      Trophy Points:
      6
      Yeah thats true...but this routine costs lots of nerves for Cass and me. And i dont realy know C# at all so must google every step) This routine has to many checks for procs...dont realy know if we can add more spells in it would it still be stable:)
      Current default routine is good enough for leveling. But later new user must change this routine by hands...well may be Cass can help us and add some leveling params to it...
       
    3. Cass

      Cass New Member

      Joined:
      Jan 24, 2014
      Messages:
      98
      Likes Received:
      2
      Trophy Points:
      0
      I can make it. When i get back from a weekend trip im gona look into it
       
    4. alltrueist

      alltrueist Active Member

      Joined:
      Dec 10, 2012
      Messages:
      1,424
      Likes Received:
      16
      Trophy Points:
      38
      Should be a real simple way to do this:

      in the rotationselector, just create a new rotation with a level lock. This is in the DefaultCombat.cs:
      Code:
      _combat = new Decorator(ret => !CombatHotkeys.PauseRotation,
      				new PrioritySelector(
      					Spell.WaitForCast(),
      					MedPack.UseItem(ret => BuddyTor.Me.HealthPercent <= 30),
      					Targeting.ScanTargets,
                          b.Cooldowns,
      					new Decorator(ret => CombatHotkeys.EnableAoe, b.AreaOfEffect),
      					b.SingleTarget));
      Just add a new Decorator(ret => Me.Level < 65, b.levelingSingleTarget));
       
    5. Cass

      Cass New Member

      Joined:
      Jan 24, 2014
      Messages:
      98
      Likes Received:
      2
      Trophy Points:
      0
      Thats it!
      I made a fresh toon and lvled him to 40 to check the rotation.
      This baby have now level checks for skills and buffs so it will still follow priorities as you level and it wont mess with lv65 rotation, but its all together.
      Only messy part its between 26 and 40 that when you have maul but dont have duplicity yet, but for frontal fights it doesnt matter anyway so the other skills works just fine.

      Enjoy.
       

      Attached Files:

    6. Satanail

      Satanail Member

      Joined:
      Aug 5, 2015
      Messages:
      30
      Likes Received:
      0
      Trophy Points:
      6
      Cass great work indeed!!
       
      Last edited: Apr 19, 2016
    7. Ff_fire

      Ff_fire New Member

      Joined:
      Mar 24, 2012
      Messages:
      20
      Likes Received:
      0
      Trophy Points:
      0
      Hi, im playing Republic shadow version of deception. Wondering if u could change spells name so i could try this routine, Would really love to try it out.
      Ty
       
    8. Cass

      Cass New Member

      Joined:
      Jan 24, 2014
      Messages:
      98
      Likes Received:
      2
      Trophy Points:
      0
      Shadow Infiltration

      Hello folks

      There it goes republic translation

      Cheers!
       

      Attached Files:

    Share This Page