What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Requests] I need something to work on, request routine fixes or new routines.

qvazmir

Member
Joined
Jun 19, 2014
Messages
195
Reaction score
15
As the title says, I need something to work on so just request anything routine-based that you'd like fixed/done and I'll see if I can do it!:D
 
this is my job, hah, a lot of people pay this for me.My new Wizard routine can done gr 90 in 6 mins and T13 nr only 2-3 mins.Now Im trying to write more routine.
So many peaples used my routines works well, i told them to buy genuine db, because some peaples buy the piratical db.

For example a good BlackHole cast like this:
Code:
            if (Skills.Wizard.BlackHole.CanCast() && Core.Player.PrimaryResourcePct > 0.25f)
            {
                // we need keep blackhole buff, because Spellsteal or Absolute Zero rune often be used.
                if (Skills.Wizard.BlackHole.CurrentRune == Runes.Wizard.Spellsteal || Skills.Wizard.BlackHole.CurrentRune == Runes.Wizard.AbsoluteZero)
                {
                    if (TargetUtil.NumMobsInRangeOfPosition(target.Position, 15) > Skills.Wizard.BlackHole.BuffStacks)
                    {
                        lastBlackHolePosition = target.Position;
                        return routine.BlackHole(target);
                    }
                }

                // in rift, a new cluster position need control
                if (target.Position.Distance2D(lastBlackHolePosition) > 10)
                {
                    lastBlackHolePosition = target.Position;
                    return routine.BlackHole(target);
                }

                // the same cluster position, every 2s we need control them again
                if (Skills.Wizard.BlackHole.TimeSinceUse > 2000)
                {
                    lastBlackHolePosition = target.Position;
                    return routine.BlackHole(target);
                }
            }

I think if you want to write great routines, you need a good avoidance strategy. In fact, lots of routine works unsatisfactory because it.
why not use git? I hate svn.
 
Last edited:
I surely can write good routines, and I love testing stuff. The thing is that I don't know what to actually work on since Trinity almost got everthing. (Sure, paralysis archon can always get better)
 
I surely can write good routines, and I love testing stuff. The thing is that I don't know what to actually work on since Trinity almost got everthing. (Sure, paralysis archon can always get better)
You really can, and i think your team will become better and better.
 
Is there a chance to have a vyrasha-manald-archon build with energy twister and black hole? Thanks in advance guys :)
 
Is there a chance to have a vyrasha-manald-archon build with energy twister and black hole? Thanks in advance guys :)
Maybe you will died likes a dog.....I tried this build, and i dont think it is a good choice.
Because if bot not has Archon buff, it often die......
 
Oh i see, just saw its the first in Leaderboards at GR103 and i thought what the hell! :) Anyway thanks for the info o/
 
Oh i see, just saw its the first in Leaderboards at GR103 and i thought what the hell! :) Anyway thanks for the info o/
When i used db, i choose DiamondSkin.This will increase the survival ability for the robot.
 
Btw qvazmir you use teleport in your build, what about black hole? Night Breeze i will test it , thanks.
 
I use the bracers , galvanizing ward will take place from?
 
Btw qvazmir you use teleport in your build, what about black hole? Night Breeze i will test it , thanks.

As the build says, it's a speedfarm build and uses ingeom. It's made for t13 and ~~grift 75 max. If you want to go into higher GRIFTS use NightBreeze's routine instead :) It got better avoidance and uses black hole.
 
passive skill

Yes i know , i mean which one do you propose to take place!
As the build says, it's a speedfarm build and uses ingeom. It's made for t13 and ~~grift 75 max. If you want to go into higher GRIFTS use NightBreeze's routine instead :) It got better avoidance and uses black hole.

With the use of pig sticker i cleared GR81 at 9mins with your build.

Btw with nightbreeze build the player seems to lag more in movement and in action , maybe the avoidance routine i dont know, feels that it runs smoother than Night's. Plus Nightbreeze's routine doesnt attack with "1" while in archon form :)
 
Last edited:
Yes i know , i mean which one do you propose to take place!


With the use of pig sticker i cleared GR81 at 9mins with your build.

Btw with nightbreeze build the player seems to lag more in movement and in action , maybe the avoidance routine i dont know, feels that it runs smoother than Night's. Plus Nightbreeze's routine doesnt attack with "1" while in archon form :)

I'm still undecided about using the "1" attack since some say that it cancels out the manald heal effect when it procs. And nightbreezes build dodges more and often better, mine just uses the trinity avoidance.
 
Back
Top